19 declare(strict_types=1);
49 $this->db = $DIC->database();
50 $this->
user = $DIC->user();
51 $this->forum_id = $DIC[
'ilObjDataCache']->lookupObjId($ref_id);
56 $this->notification_id = $a_notification_id;
66 $this->user_id = $a_user_id;
76 $this->forum_id = $a_forum_id;
86 $this->thread_id = $a_thread_id;
106 $this->admin_force = $a_admin_force;
116 $this->user_toggle = $a_user_toggle;
126 $this->ref_id = $a_ref_id;
137 $this->user_id_noti = $a_user_id_noti;
148 $res = $this->db->queryF(
150 SELECT admin_force_noti FROM frm_notification 153 AND user_id_noti > %s ',
154 [
'integer',
'integer',
'integer'],
158 if ($row = $this->db->fetchAssoc(
$res)) {
159 return (
bool) $row[
'admin_force_noti'];
167 $res = $this->db->queryF(
169 SELECT user_toggle_noti FROM frm_notification 172 AND user_id_noti > %s',
173 [
'integer',
'integer',
'integer'],
177 if ($row = $this->db->fetchAssoc(
$res)) {
178 return (
bool) $row[
'user_toggle_noti'];
185 $next_id = $this->db->nextId(
'frm_notification');
188 $this->db->manipulateF(
190 INSERT INTO frm_notification 191 (notification_id, user_id, frm_id, admin_force_noti, user_toggle_noti, user_id_noti) 192 VALUES(%s, %s, %s, %s, %s, %s)',
193 [
'integer',
'integer',
'integer',
'integer',
'integer',
'integer'],
207 $this->db->manipulateF(
209 DELETE FROM frm_notification 212 AND admin_force_noti = %s 213 AND user_id_noti > %s',
214 [
'integer',
'integer',
'integer',
'integer'],
221 $this->db->manipulateF(
223 DELETE FROM frm_notification 226 AND admin_force_noti = %s 227 AND user_toggle_noti = %s 228 AND user_id_noti > %s',
229 [
'integer',
'integer',
'integer',
'integer',
'integer'],
236 $this->db->manipulateF(
237 'UPDATE frm_notification SET user_toggle_noti = %s WHERE user_id = %s AND frm_id = %s AND admin_force_noti = %s',
238 [
'integer',
'integer',
'integer',
'integer'],
251 $ilUser = $DIC->user();
253 $node_data = self::getCachedNodeData($ref_id);
255 foreach ($node_data as
$data) {
258 if ($user_id !== 0) {
259 $frm_noti->setUserId($user_id);
261 $frm_noti->setUserId($ilUser->getId());
265 $frm_noti->setAdminForce($admin_force);
269 $frm_noti->setAdminForce(
true);
272 if ($admin_force || $user_toggle) {
273 $frm_noti->setUserToggle($user_toggle);
274 $frm_noti->setForumId((
int) $data[
'obj_id']);
275 if (!$frm_noti->existsNotification()) {
276 $frm_noti->insertAdminForce();
286 $ilUser = $DIC->user();
288 $node_data = self::getCachedNodeData($ref_id);
290 foreach ($node_data as
$data) {
293 $moderator_ids = $objFrmMods->getCurrentModerators();
295 if ($user_id !== 0) {
296 $frm_noti->setUserId($user_id);
298 $frm_noti->setUserId($ilUser->getId());
301 $frm_noti->setForumId((
int) $data[
'obj_id']);
302 if (!in_array($frm_noti->getUserId(), $moderator_ids,
true)) {
303 $frm_noti->deleteAdminForce();
312 if (!array_key_exists($ref_id, self::$node_data_cache)) {
313 $container_node = $DIC->repositoryTree()->getNodeData($ref_id);
314 if (!isset($container_node[
'child'])) {
318 $node_data = $DIC->repositoryTree()->getSubTree(
323 $node_data = array_filter($node_data,
static function (array $forum_node) use ($DIC, $ref_id):
bool {
325 foreach ($DIC->repositoryTree()->getNodePath((
int) $forum_node[
'child'], $ref_id) as $path_node) {
326 $notRootNode = (
int) $path_node[
'child'] !== $ref_id;
327 $isGroup = $path_node[
'type'] ===
'grp';
328 if ($notRootNode && $isGroup) {
335 self::$node_data_cache[
$ref_id] = $node_data;
338 return self::$node_data_cache[
$ref_id];
345 $parent_ref_id = $DIC->repositoryTree()->getParentId($a_ref_id);
348 return $parent_obj->getType() ===
'crs' || $parent_obj->getType() ===
'grp';
354 $ilDB = $DIC->database();
355 $ilObjDataCache = $DIC[
'ilObjDataCache'];
357 if ($move_tree_event[
'tree'] !==
'tree') {
361 $ref_id = (
int) $move_tree_event[
'source_id'];
362 $is_parent = self::_isParentNodeGrpCrs(
$ref_id);
365 $forum_id = $ilObjDataCache->lookupObjId(
$ref_id);
368 'DELETE FROM frm_notification WHERE frm_id = %s AND admin_force_noti = %s',
369 [
'integer',
'integer'],
377 $this->db->manipulateF(
378 'UPDATE frm_notification SET admin_force_noti = %s, user_toggle_noti = %s, ' .
379 'interested_events = %s WHERE user_id = %s AND frm_id = %s',
380 [
'integer',
'integer',
'integer',
'integer',
'integer'],
393 $this->db->manipulateF(
394 'DELETE FROM frm_notification WHERE frm_id = %s AND user_id_noti > %s',
395 [
'integer',
'integer'],
407 $res = $this->db->queryF(
'SELECT * FROM frm_notification WHERE frm_id = %s', [
'integer'], [$this->
getForumId()]);
408 while ($row = $this->db->fetchAssoc(
$res)) {
409 $result[(
int) $row[
'user_id']][
'notification_id'] = (
int) $row[
'notification_id'];
410 $result[(
int) $row[
'user_id']][
'user_id'] = (
int) $row[
'user_id'];
411 $result[(
int) $row[
'user_id']][
'frm_id'] = (
int) $row[
'frm_id'];
412 $result[(
int) $row[
'user_id']][
'thread_id'] = (
int) $row[
'thread_id'];
413 $result[(
int) $row[
'user_id']][
'admin_force_noti'] = (
int) $row[
'admin_force_noti'];
414 $result[(
int) $row[
'user_id']][
'user_toggle_noti'] = (
int) $row[
'user_toggle_noti'];
415 $result[(
int) $row[
'user_id']][
'interested_events'] = (
int) $row[
'interested_events'];
416 $result[(
int) $row[
'user_id']][
'user_id_noti'] = (
int) $row[
'user_id_noti'];
426 $ilDB = $DIC->database();
429 'SELECT notification_id, user_id FROM frm_notification WHERE frm_id = %s AND thread_id = %s ORDER BY user_id ASC',
430 [
'integer',
'integer'],
431 [0, $merge_source_thread_id]
434 $res_2 =
$ilDB->queryF(
435 'SELECT DISTINCT user_id FROM frm_notification WHERE frm_id = %s AND thread_id = %s ORDER BY user_id ASC',
436 [
'integer',
'integer'],
437 [0, $merge_target_thread_id]
440 $users_already_notified = [];
441 while ($users_row =
$ilDB->fetchAssoc($res_2)) {
442 $users_already_notified[(
int) $users_row[
'user_id']] = (
int) $users_row[
'user_id'];
446 if (isset($users_already_notified[(
int) $row[
'user_id']])) {
448 'DELETE FROM frm_notification WHERE notification_id = %s',
450 [$row[
'notification_id']]
455 [
'thread_id' => [
'integer', $merge_target_thread_id]],
456 [
'thread_id' => [
'integer', $merge_source_thread_id]]
464 $res = $this->db->queryF(
465 'SELECT user_id FROM frm_notification WHERE user_id = %s AND frm_id = %s AND admin_force_noti = %s',
466 [
'integer',
'integer',
'integer'],
470 return $this->db->numRows(
$res) > 0;
475 $sourceNotificationSettings =
new self($sourceRefId);
476 $records = $sourceNotificationSettings->read();
478 foreach ($records as $usrId => $row) {
491 $this->db->manipulateF(
492 'UPDATE frm_notification SET interested_events = %s WHERE user_id = %s AND frm_id = %s',
493 [
'integer',
'integer',
'integer'],
502 $this->db->setLimit(1);
503 $res = $this->db->queryF(
504 'SELECT interested_events FROM frm_notification WHERE user_id = %s AND frm_id = %s',
505 [
'integer',
'integer'],
509 while ($row = $this->db->fetchAssoc(
$res)) {
510 $interested_events = (
int) $row[
'interested_events'];
521 $res = $this->db->queryF(
522 'SELECT * FROM frm_notification WHERE admin_force_noti = %s AND frm_id = %s',
523 [
'integer',
'integer'],
527 while ($row = $this->db->fetchAssoc(
$res)) {
529 $notificationConfig->setNotificationId((
int) $row[
'notification_id']);
530 $notificationConfig->setUserId((
int) $row[
'user_id']);
531 $notificationConfig->setForumId((
int) $row[
'frm_id']);
532 $notificationConfig->setAdminForce((
bool) $row[
'admin_force_noti']);
533 $notificationConfig->setUserToggle((
bool) $row[
'user_toggle_noti']);
534 $notificationConfig->setInterestedEvents((
int) $row[
'interested_events']);
536 self::$forced_events_cache[(
int) $row[
'user_id']] = $notificationConfig;
539 return self::$forced_events_cache;
544 if (!isset(self::$forced_events_cache[$user_id])) {
548 if (!isset(self::$forced_events_cache[$user_id])) {
552 return self::$forced_events_cache[
$user_id];
558 $new_object->setUserId($user_id);
559 $new_object->setForumId($this->forum_id);
560 $new_object->insertAdminForce();
deleteNotificationAllUsers()
setUserId(?int $a_user_id)
createMissingNotification(int $user_id)
isUserToggleNotification()
static array $node_data_cache
setThreadId(int $a_thread_id)
isAdminForceNotification()
Class ilForumNotification.
setUserToggle(bool $a_user_toggle)
setForumRefId(int $a_ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _isAdminForceNoti(int $a_obj_id)
setNotificationId(int $a_notification_id)
static _clearForcedForumNotifications(array $move_tree_event)
setAdminForce(bool $a_admin_force)
__construct(private int $ref_id)
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)
readonly ilDBInterface $db
setInterestedEvents(int $interested_events)
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)