19 declare(strict_types=1);
44 $this->db = $DIC->database();
45 $this->
user = $DIC->user();
47 $this->forum_id = $DIC[
'ilObjDataCache']->lookupObjId($ref_id);
52 $this->notification_id = $a_notification_id;
62 $this->user_id = $a_user_id;
72 $this->forum_id = $a_forum_id;
82 $this->thread_id = $a_thread_id;
102 $this->admin_force = $a_admin_force;
112 $this->user_toggle = $a_user_toggle;
122 $this->ref_id = $a_ref_id;
133 $this->user_id_noti = $a_user_id_noti;
144 $res = $this->db->queryF(
146 SELECT admin_force_noti FROM frm_notification 149 AND user_id_noti > %s ',
150 [
'integer',
'integer',
'integer'],
154 if ($row = $this->db->fetchAssoc(
$res)) {
155 return (
bool) $row[
'admin_force_noti'];
163 $res = $this->db->queryF(
165 SELECT user_toggle_noti FROM frm_notification 168 AND user_id_noti > %s',
169 [
'integer',
'integer',
'integer'],
173 if ($row = $this->db->fetchAssoc(
$res)) {
174 return (
bool) $row[
'user_toggle_noti'];
181 $next_id = $this->db->nextId(
'frm_notification');
184 $this->db->manipulateF(
186 INSERT INTO frm_notification 187 (notification_id, user_id, frm_id, admin_force_noti, user_toggle_noti, user_id_noti) 188 VALUES(%s, %s, %s, %s, %s, %s)',
189 [
'integer',
'integer',
'integer',
'integer',
'integer',
'integer'],
203 $this->db->manipulateF(
205 DELETE FROM frm_notification 208 AND admin_force_noti = %s 209 AND user_id_noti > %s',
210 [
'integer',
'integer',
'integer',
'integer'],
217 $this->db->manipulateF(
219 DELETE FROM frm_notification 222 AND admin_force_noti = %s 223 AND user_toggle_noti = %s 224 AND user_id_noti > %s',
225 [
'integer',
'integer',
'integer',
'integer',
'integer'],
232 $this->db->manipulateF(
233 'UPDATE frm_notification SET user_toggle_noti = %s WHERE user_id = %s AND frm_id = %s AND admin_force_noti = %s',
234 [
'integer',
'integer',
'integer',
'integer'],
249 $node_data = self::getCachedNodeData($ref_id);
251 foreach ($node_data as
$data) {
254 if ($user_id !== 0) {
255 $frm_noti->setUserId($user_id);
257 $frm_noti->setUserId(
$ilUser->getId());
261 $frm_noti->setAdminForce($admin_force);
265 $frm_noti->setAdminForce(
true);
268 if ($admin_force || $user_toggle) {
269 $frm_noti->setUserToggle($user_toggle);
270 $frm_noti->setForumId((
int) $data[
'obj_id']);
271 if ($frm_noti->existsNotification() ===
false) {
272 $frm_noti->insertAdminForce();
284 $node_data = self::getCachedNodeData($ref_id);
286 foreach ($node_data as
$data) {
289 $moderator_ids = $objFrmMods->getCurrentModerators();
291 if ($user_id !== 0) {
292 $frm_noti->setUserId($user_id);
294 $frm_noti->setUserId(
$ilUser->getId());
297 $frm_noti->setForumId((
int) $data[
'obj_id']);
298 if (!in_array($frm_noti->getUserId(), $moderator_ids,
true)) {
299 $frm_noti->deleteAdminForce();
308 if (!array_key_exists($ref_id, self::$node_data_cache)) {
309 $node_data = $DIC->repositoryTree()->getSubTree(
310 $DIC->repositoryTree()->getNodeData($ref_id),
314 $node_data = array_filter($node_data,
static function (array $forum_node) use ($DIC, $ref_id):
bool {
316 foreach ($DIC->repositoryTree()->getNodePath((
int) $forum_node[
'child'], $ref_id) as $path_node) {
317 $notRootNode = (
int) $path_node[
'child'] !== (
int)
$ref_id;
318 $isGroup = $path_node[
'type'] ===
'grp';
319 if ($notRootNode && $isGroup) {
326 self::$node_data_cache[
$ref_id] = $node_data;
329 return self::$node_data_cache[
$ref_id];
336 $parent_ref_id = $DIC->repositoryTree()->getParentId($a_ref_id);
339 return $parent_obj->getType() ===
'crs' || $parent_obj->getType() ===
'grp';
345 $ilDB = $DIC->database();
346 $ilObjDataCache = $DIC[
'ilObjDataCache'];
348 if ($move_tree_event[
'tree'] !==
'tree') {
352 $ref_id = (
int) $move_tree_event[
'source_id'];
353 $is_parent = self::_isParentNodeGrpCrs($ref_id);
356 $forum_id = $ilObjDataCache->lookupObjId($ref_id);
359 'DELETE FROM frm_notification WHERE frm_id = %s AND admin_force_noti = %s',
360 [
'integer',
'integer'],
368 $this->db->manipulateF(
369 'UPDATE frm_notification SET admin_force_noti = %s, user_toggle_noti = %s, ' .
370 'interested_events = %s WHERE user_id = %s AND frm_id = %s',
371 [
'integer',
'integer',
'integer',
'integer',
'integer'],
384 $this->db->manipulateF(
385 'DELETE FROM frm_notification WHERE frm_id = %s AND user_id_noti > %s',
386 [
'integer',
'integer'],
398 $res = $this->db->queryF(
'SELECT * FROM frm_notification WHERE frm_id = %s', [
'integer'], [$this->
getForumId()]);
399 while ($row = $this->db->fetchAssoc(
$res)) {
400 $result[(
int) $row[
'user_id']][
'notification_id'] = (
int) $row[
'notification_id'];
401 $result[(
int) $row[
'user_id']][
'user_id'] = (
int) $row[
'user_id'];
402 $result[(
int) $row[
'user_id']][
'frm_id'] = (
int) $row[
'frm_id'];
403 $result[(
int) $row[
'user_id']][
'thread_id'] = (
int) $row[
'thread_id'];
404 $result[(
int) $row[
'user_id']][
'admin_force_noti'] = (
int) $row[
'admin_force_noti'];
405 $result[(
int) $row[
'user_id']][
'user_toggle_noti'] = (
int) $row[
'user_toggle_noti'];
406 $result[(
int) $row[
'user_id']][
'interested_events'] = (
int) $row[
'interested_events'];
407 $result[(
int) $row[
'user_id']][
'user_id_noti'] = (
int) $row[
'user_id_noti'];
417 $ilDB = $DIC->database();
420 'SELECT notification_id, user_id FROM frm_notification WHERE frm_id = %s AND thread_id = %s ORDER BY user_id ASC',
421 [
'integer',
'integer'],
422 [0, $merge_source_thread_id]
425 $res_2 =
$ilDB->queryF(
426 'SELECT DISTINCT user_id FROM frm_notification WHERE frm_id = %s AND thread_id = %s ORDER BY user_id ASC',
427 [
'integer',
'integer'],
428 [0, $merge_target_thread_id]
431 $users_already_notified = [];
432 while ($users_row =
$ilDB->fetchAssoc($res_2)) {
433 $users_already_notified[(
int) $users_row[
'user_id']] = (
int) $users_row[
'user_id'];
437 if (isset($users_already_notified[(
int) $row[
'user_id']])) {
439 'DELETE FROM frm_notification WHERE notification_id = %s',
441 [$row[
'notification_id']]
446 [
'thread_id' => [
'integer', $merge_target_thread_id]],
447 [
'thread_id' => [
'integer', $merge_source_thread_id]]
455 $res = $this->db->queryF(
456 'SELECT user_id FROM frm_notification WHERE user_id = %s AND frm_id = %s AND admin_force_noti = %s',
457 [
'integer',
'integer',
'integer'],
461 return $this->db->numRows(
$res) > 0;
466 $sourceNotificationSettings =
new self($sourceRefId);
467 $records = $sourceNotificationSettings->read();
469 foreach ($records as $usrId => $row) {
482 $this->db->manipulateF(
483 'UPDATE frm_notification SET interested_events = %s WHERE user_id = %s AND frm_id = %s',
484 [
'integer',
'integer',
'integer'],
493 $this->db->setLimit(1);
494 $res = $this->db->queryF(
495 'SELECT interested_events FROM frm_notification WHERE user_id = %s AND frm_id = %s',
496 [
'integer',
'integer'],
500 while ($row = $this->db->fetchAssoc(
$res)) {
501 $interested_events = (
int) $row[
'interested_events'];
512 $res = $this->db->queryF(
513 'SELECT * FROM frm_notification WHERE admin_force_noti = %s AND frm_id = %s',
514 [
'integer',
'integer'],
518 while ($row = $this->db->fetchAssoc(
$res)) {
520 $notificationConfig->setNotificationId((
int) $row[
'notification_id']);
521 $notificationConfig->setUserId((
int) $row[
'user_id']);
522 $notificationConfig->setForumId((
int) $row[
'frm_id']);
523 $notificationConfig->setAdminForce((
bool) $row[
'admin_force_noti']);
524 $notificationConfig->setUserToggle((
bool) $row[
'user_toggle_noti']);
525 $notificationConfig->setInterestedEvents((
int) $row[
'interested_events']);
527 self::$forced_events_cache[(
int) $row[
'user_id']] = $notificationConfig;
530 return self::$forced_events_cache;
535 if (!isset(self::$forced_events_cache[$user_id])) {
539 if (!isset(self::$forced_events_cache[$user_id])) {
543 return self::$forced_events_cache[
$user_id];
549 $new_object->setUserId($user_id);
550 $new_object->setForumId($this->forum_id);
551 $new_object->insertAdminForce();
deleteNotificationAllUsers()
setUserId(?int $a_user_id)
createMissingNotification(int $user_id)
setInterestedEvents($interested_events)
isUserToggleNotification()
static array $node_data_cache
setThreadId(int $a_thread_id)
isAdminForceNotification()
setUserToggle(bool $a_user_toggle)
setForumRefId(int $a_ref_id)
static _isAdminForceNoti(int $a_obj_id)
setNotificationId(int $a_notification_id)
static _clearForcedForumNotifications(array $move_tree_event)
setAdminForce(bool $a_admin_force)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
static _isParentNodeGrpCrs(int $a_ref_id)
cloneFromSource(int $sourceRefId)
static array $forced_events_cache
static getCachedNodeData(int $ref_id)
getForcedEventsObjectByUserId(int $user_id)
setForumId(int $a_forum_id)
static _isUserToggleNoti(int $a_obj_id)
static mergeThreadNotifications($merge_source_thread_id, $merge_target_thread_id)
static checkForumsExistsDelete(int $ref_id, int $user_id)
static checkForumsExistsInsert(int $ref_id, int $user_id)
setUserIdNoti(int $a_user_id_noti)