40 $ilDB = $DIC->database();
41 $tree = $DIC->repositoryTree();
43 $notification =
false;
45 include_once(
"./Services/Notification/classes/class.ilObjNotificationSettings.php");
50 $grp_ref_id = $tree->checkForParentType($ref_id,
'grp');
51 if ($grp_ref_id > 0) {
52 include_once(
"./Modules/Group/classes/class.ilGroupParticipants.php");
57 $crs_ref_id = $tree->checkForParentType($ref_id,
'crs');
58 if ($crs_ref_id > 0) {
59 include_once(
"./Modules/Course/classes/class.ilCourseParticipants.php");
67 $set =
$ilDB->query(
"SELECT user_id FROM notification" .
68 " WHERE type = " .
$ilDB->quote(
$type,
"integer") .
69 " AND user_id = " .
$ilDB->quote($user_id,
"integer") .
70 " AND id = " .
$ilDB->quote($id,
"integer") .
71 " AND activated = " .
$ilDB->quote(0,
"integer"));
72 $rec =
$ilDB->fetchAssoc($set);
74 if ($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);
103 include_once(
"./Services/Notification/classes/class.ilObjNotificationSettings.php");
124 $ilDB = $DIC->database();
125 $tree = $DIC->repositoryTree();
127 include_once(
"./Services/Notification/classes/class.ilObjNotificationSettings.php");
130 $log->debug(
"Get notifications for type " .
$type .
", id " . $id .
", page_id " . $page_id .
131 ", ignore threshold " . $ignore_threshold);
134 $recipients = array();
138 $grp_ref_id = $tree->checkForParentType($ref_id,
'grp');
139 if ($grp_ref_id > 0) {
140 include_once(
"./Modules/Group/classes/class.ilGroupParticipants.php");
142 foreach ($p->getMembers() as $user_id) {
143 if (!in_array($user_id, $recipients)) {
144 $recipients[$user_id] = $user_id;
148 $crs_ref_id = $tree->checkForParentType($ref_id,
'crs');
149 if ($crs_ref_id > 0) {
150 include_once(
"./Modules/Course/classes/class.ilCourseParticipants.php");
152 foreach ($p->getMembers() as $user_id) {
153 if (!in_array($user_id, $recipients)) {
154 $recipients[$user_id] = $user_id;
161 $log->debug(
"Step 1 recipients: " . print_r($recipients,
true));
166 $sql =
"SELECT user_id FROM notification" .
167 " WHERE type = " .
$ilDB->quote(
$type,
"integer") .
168 " AND id = " .
$ilDB->quote($id,
"integer") .
169 " AND activated = " .
$ilDB->quote(0,
"integer") .
170 " AND " .
$ilDB->in(
"user_id", $recipients,
false,
"integer");
171 $set =
$ilDB->query($sql);
172 while ($rec =
$ilDB->fetchAssoc($set)) {
173 unset($recipients[$rec[
"user_id"]]);
174 $log->debug(
"Remove due to deactivation: " . $rec[
"user_id"]);
181 if (!$ignore_threshold) {
182 $sql =
"SELECT user_id FROM notification" .
183 " WHERE type = " .
$ilDB->quote(
$type,
"integer") .
184 " AND id = " .
$ilDB->quote($id,
"integer") .
185 " AND " .
$ilDB->in(
"user_id", $recipients,
false,
"integer");
186 $sql .=
" AND (last_mail > " .
$ilDB->quote(date(
188 strtotime(
"-" . self::THRESHOLD .
"minutes")
191 $sql .=
" AND page_id = " .
$ilDB->quote($page_id,
"integer");
194 $set =
$ilDB->query($sql);
195 while ($rec =
$ilDB->fetchAssoc($set)) {
196 unset($recipients[$rec[
"user_id"]]);
197 $log->debug(
"Remove due to got mail: " . $rec[
"user_id"]);
203 $sql =
"SELECT user_id FROM notification" .
204 " WHERE type = " .
$ilDB->quote(
$type,
"integer") .
205 " AND id = " .
$ilDB->quote($id,
"integer") .
206 " AND activated = " .
$ilDB->quote(1,
"integer");
207 if (!$ignore_threshold) {
208 $sql .=
" AND (last_mail < " .
$ilDB->quote(date(
210 strtotime(
"-" . self::THRESHOLD .
"minutes")
212 " OR last_mail IS NULL";
214 $sql .=
" OR page_id <> " .
$ilDB->quote($page_id,
"integer");
218 $set =
$ilDB->query($sql);
219 while ($row =
$ilDB->fetchAssoc($set)) {
220 $recipients[$row[
"user_id"]] = $row[
"user_id"];
221 $log->debug(
"Adding single subscription: " . $row[
"user_id"]);
240 $ilDB = $DIC->database();
243 "type" => array(
"integer",
$type),
244 "user_id" => array(
"integer", $user_id),
245 "id" => array(
"integer", $id)
247 $ilDB->replace(
"notification", $fields, array(
"activated" => array(
"integer", (
int) $status)));
262 $ilDB = $DIC->database();
266 if (in_array(
$type, [self::TYPE_WIKI, self::TYPE_BLOG])) {
267 $set =
$ilDB->queryF(
268 "SELECT user_id FROM notification " .
269 " WHERE type = %s AND id = %s AND " .
270 $ilDB->in(
"user_id", $user_ids,
false,
"integer"),
271 [
"integer",
"integer"],
275 while ($rec =
$ilDB->fetchAssoc($set)) {
276 $noti_users[] = $rec[
"user_id"];
278 foreach ($user_ids as $user_id) {
279 if (!in_array($user_id, $noti_users)) {
280 $ilDB->insert(
"notification", [
281 "type" => [
"integer",
$type],
282 "id" => [
"integer", $id],
283 "user_id" => [
"integer", $user_id],
284 "page_id" => [
"integer", (
int) $page_id],
285 "activated" => [
"integer", 1]
291 $sql =
"UPDATE notification" .
292 " SET last_mail = " .
$ilDB->quote(date(
"Y-m-d H:i:s"),
"timestamp");
295 $sql .=
", page_id = " .
$ilDB->quote($page_id,
"integer");
298 $sql .=
" WHERE type = " .
$ilDB->quote(
$type,
"integer") .
299 " AND id = " .
$ilDB->quote($id,
"integer") .
300 " AND " .
$ilDB->in(
"user_id", $user_ids,
false,
"integer");
314 $ilDB = $DIC->database();
316 $ilDB->query(
"DELETE FROM notification" .
317 " WHERE type = " .
$ilDB->quote(
$type,
"integer") .
318 " AND id = " .
$ilDB->quote($id,
"integer"));
330 $ilDB = $DIC->database();
332 $ilDB->query(
"DELETE FROM notification" .
333 " WHERE user_id = " .
$ilDB->quote($user_id,
"integer"));
347 $db = $DIC->database();
350 "SELECT id FROM notification " .
351 " WHERE type = %s " .
352 " AND user_id = %s " .
353 " AND activated = %s ",
354 array(
"integer",
"integer",
"integer"),
355 array($type, $user_id, 1)
358 while ($rec = $db->fetchAssoc($set)) {
static _isParticipant($a_ref_id, $a_usr_id)
Static function to check if a user is a participant of the container object.
static hasNotification($type, $user_id, $id)
Check notification status for object and user.
static _isParticipant($a_ref_id, $a_usr_id)
Static function to check if a user is a participant of the container object.
static removeForObject($type, $id)
Remove all notifications for given object.
const TYPE_LM_BLOCKED_USERS
Handles general object notification settings, see e.g.
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
static hasOptOut($obj_id)
Is opt out (disable notification) allowed?
static updateNotificationTime($type, $id, array $user_ids, $page_id=false)
Update the last mail timestamp for given object and users.
const MODE_DEF_ON_OPT_OUT
static _getAllReferences($a_id)
get all reference ids of object
static getNotificationsForObject($type, $id, $page_id=null, $ignore_threshold=false)
Get all users for given object.
static _lookupObjectId($a_ref_id)
lookup object id
static getActivatedNotifications(int $type, int $user_id)
Get activated notifications of give type for user.
const TYPE_DATA_COLLECTION
static removeForUser($user_id)
Remove all notifications for given user.
static setNotification($type, $user_id, $id, $status=true)
Set notification status for object and user.
const MODE_DEF_OFF_USER_ACTIVATION
const TYPE_EXERCISE_SUBMISSION
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
static getLogger($a_component_id)
Get component logger.
const MODE_DEF_ON_NO_OPT_OUT