46 $ilDB = $DIC->database();
47 $tree = $DIC->repositoryTree();
49 $notification =
false;
55 $grp_ref_id = $tree->checkForParentType(
$ref_id,
'grp');
59 $crs_ref_id = $tree->checkForParentType(
$ref_id,
'crs');
66 $set =
$ilDB->query(
"SELECT user_id FROM notification" .
67 " WHERE type = " .
$ilDB->quote($type,
"integer") .
68 " AND user_id = " .
$ilDB->quote($user_id,
"integer") .
69 " AND id = " .
$ilDB->quote($id,
"integer") .
70 " AND activated = " .
$ilDB->quote(0,
"integer"));
71 $rec =
$ilDB->fetchAssoc($set);
73 if (!isset($rec[
"user_id"])) {
77 return isset($rec[
"user_id"]) && ((
int) $rec[
"user_id"] !== $user_id);
86 $set =
$ilDB->query(
"SELECT user_id FROM notification" .
87 " WHERE type = " .
$ilDB->quote($type,
"integer") .
88 " AND user_id = " .
$ilDB->quote($user_id,
"integer") .
89 " AND id = " .
$ilDB->quote($id,
"integer") .
90 " AND activated = " .
$ilDB->quote(1,
"integer"));
92 return (
bool)
$ilDB->numRows($set);
110 ?
int $page_id =
null,
111 bool $ignore_threshold =
false 115 $ilDB = $DIC->database();
116 $tree = $DIC->repositoryTree();
120 $log->debug(
"Get notifications for type " . $type .
", id " . $id .
", page_id " . $page_id .
121 ", ignore threshold " . $ignore_threshold);
124 $recipients = array();
128 $grp_ref_id = $tree->checkForParentType(
$ref_id,
'grp');
129 if ($grp_ref_id > 0) {
131 foreach ($p->getMembers() as
$user_id) {
132 if (!in_array(
$user_id, $recipients)) {
137 $crs_ref_id = $tree->checkForParentType(
$ref_id,
'crs');
138 if ($crs_ref_id > 0) {
140 foreach ($p->getMembers() as
$user_id) {
141 if (!in_array(
$user_id, $recipients)) {
149 $log->debug(
"Step 1 recipients: " . print_r($recipients,
true));
153 $sql =
"SELECT user_id FROM notification" .
154 " WHERE type = " .
$ilDB->quote($type,
"integer") .
155 " AND id = " .
$ilDB->quote($id,
"integer") .
156 " AND activated = " .
$ilDB->quote(0,
"integer") .
157 " AND " .
$ilDB->in(
"user_id", $recipients,
false,
"integer");
158 $set =
$ilDB->query($sql);
159 while ($rec =
$ilDB->fetchAssoc($set)) {
160 unset($recipients[$rec[
"user_id"]]);
161 $log->debug(
"Remove due to deactivation: " . $rec[
"user_id"]);
167 $sql =
"SELECT user_id FROM notification" .
168 " WHERE type = " .
$ilDB->quote($type,
"integer") .
169 " AND id = " .
$ilDB->quote($id,
"integer") .
170 " AND activated = " .
$ilDB->quote(1,
"integer");
171 if (!$ignore_threshold) {
172 $sql .=
" AND (last_mail < " .
$ilDB->quote(date(
174 strtotime(
"-" . self::THRESHOLD .
"minutes")
176 " OR last_mail IS NULL";
178 $sql .=
" OR page_id <> " .
$ilDB->quote($page_id,
"integer");
182 $set =
$ilDB->query($sql);
183 while ($row =
$ilDB->fetchAssoc($set)) {
184 $recipients[$row[
"user_id"]] = $row[
"user_id"];
185 $log->debug(
"Adding single subscription: " . $row[
"user_id"]);
192 if (!$ignore_threshold) {
193 $sql =
"SELECT user_id FROM notification" .
194 " WHERE type = " .
$ilDB->quote($type,
"integer") .
195 " AND id = " .
$ilDB->quote($id,
"integer") .
196 " AND " .
$ilDB->in(
"user_id", $recipients,
false,
"integer");
197 $sql .=
" AND (last_mail > " .
$ilDB->quote(date(
199 strtotime(
"-" . self::THRESHOLD .
"minutes")
202 $sql .=
" AND page_id = " .
$ilDB->quote($page_id,
"integer");
205 $set =
$ilDB->query($sql);
206 while ($rec =
$ilDB->fetchAssoc($set)) {
207 unset($recipients[$rec[
"user_id"]]);
208 $log->debug(
"Remove due to got mail: " . $rec[
"user_id"]);
211 if ($type === self::TYPE_WIKI) {
212 $sql =
"SELECT user_id FROM notification" .
213 " WHERE type = " .
$ilDB->quote(self::TYPE_WIKI_PAGE,
"integer") .
214 " AND id = " .
$ilDB->quote($page_id,
"integer") .
215 " AND " .
$ilDB->in(
"user_id", $recipients,
false,
"integer");
216 $sql .=
" AND (last_mail > " .
$ilDB->quote(date(
218 strtotime(
"-" . self::THRESHOLD .
"minutes")
221 $set =
$ilDB->query($sql);
222 while ($rec =
$ilDB->fetchAssoc($set)) {
223 unset($recipients[$rec[
"user_id"]]);
224 $log->debug(
"Remove due to got mail: " . $rec[
"user_id"]);
244 $ilDB = $DIC->database();
247 "type" => array(
"integer", $type),
248 "user_id" => array(
"integer", $user_id),
249 "id" => array(
"integer", $id)
251 $ilDB->replace(
"notification", $fields, array(
"activated" => array(
"integer", (
int) $status)));
261 ?
int $page_id =
null,
262 bool $activate_new_entries =
true 266 $ilDB = $DIC->database();
270 if (in_array($type, [self::TYPE_WIKI_PAGE, self::TYPE_WIKI, self::TYPE_BLOG])) {
271 $set =
$ilDB->queryF(
272 "SELECT user_id FROM notification " .
273 " WHERE type = %s AND id = %s AND " .
274 $ilDB->in(
"user_id", $user_ids,
false,
"integer"),
275 [
"integer",
"integer"],
279 while ($rec =
$ilDB->fetchAssoc($set)) {
280 $noti_users[] = $rec[
"user_id"];
283 if (!in_array($user_id, $noti_users)) {
284 $ilDB->insert(
"notification", [
285 "type" => [
"integer", $type],
286 "id" => [
"integer", $id],
287 "user_id" => [
"integer", $user_id],
288 "page_id" => [
"integer", (
int) $page_id],
289 "activated" => [
"integer", (
int) $activate_new_entries]
295 $sql =
"UPDATE notification" .
296 " SET last_mail = " .
$ilDB->quote(date(
"Y-m-d H:i:s"),
"timestamp");
299 $sql .=
", page_id = " .
$ilDB->quote($page_id,
"integer");
302 $sql .=
" WHERE type = " .
$ilDB->quote($type,
"integer") .
303 " AND id = " .
$ilDB->quote($id,
"integer") .
304 " AND " .
$ilDB->in(
"user_id", $user_ids,
false,
"integer");
317 $ilDB = $DIC->database();
319 $ilDB->query(
"DELETE FROM notification" .
320 " WHERE type = " .
$ilDB->quote($type,
"integer") .
321 " AND id = " .
$ilDB->quote($id,
"integer"));
332 $ilDB = $DIC->database();
334 $ilDB->query(
"DELETE FROM notification" .
335 " WHERE user_id = " .
$ilDB->quote($user_id,
"integer"));
348 $db = $DIC->database();
351 "SELECT id FROM notification " .
352 " WHERE type = %s " .
353 " AND user_id = %s " .
354 " AND activated = %s ",
355 array(
"integer",
"integer",
"integer"),
356 array($type, $user_id, 1)
359 while ($rec = $db->fetchAssoc($set)) {
static _isParticipant(int $a_ref_id, int $a_usr_id)
Static function to check if a user is a participant of the container object.
static getLogger(string $a_component_id)
Get component logger.
const TYPE_LM_BLOCKED_USERS
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getAllReferences(int $id)
get all reference ids for object ID
static getNotificationsForObject(int $type, int $id, ?int $page_id=null, bool $ignore_threshold=false)
Get all users/recipients for given object.
const MODE_DEF_ON_OPT_OUT
static getActivatedNotifications(int $type, int $user_id)
Get activated notifications of give type for user.
const TYPE_DATA_COLLECTION
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _getInstanceByObjId(int $a_obj_id)
static setNotification(int $type, int $user_id, int $id, bool $status=true)
Set notification status for object and user.
static removeForUser(int $user_id)
Remove all notifications for given user.
static _lookupObjectId(int $ref_id)
const MODE_DEF_OFF_USER_ACTIVATION
const TYPE_EXERCISE_SUBMISSION
static updateNotificationTime(int $type, int $id, array $user_ids, ?int $page_id=null, bool $activate_new_entries=true)
Update the last mail timestamp for given object and users.
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static hasNotification(int $type, int $user_id, int $id)
Check notification status for object and user.
static removeForObject(int $type, int $id)
Remove all notifications for given object.
static _isParticipant(int $a_ref_id, int $a_usr_id)
Static function to check if a user is a participant of the container object.
const MODE_DEF_ON_NO_OPT_OUT
static hasOptOut(int $obj_id)
Is opt out (disable notification) allowed?