3 declare(strict_types=1);
46 if ($database === null) {
48 $database = $DIC->database();
56 $base = $object->baseNotification;
64 $base->getValidForSeconds() ?
$base->getValidForSeconds() + $now : 0,
65 $base->getVisibleForSeconds(),
67 $base->getIdentification()
70 if (in_array($notification->getType(), self::UNIQUE_TYPES)) {
74 $affected = $this->database->insert(
88 return ($affected === 1) ? $notification : null;
95 $row = $this->database->fetchAssoc($result);
96 return ((
int) ($row[
'count'] ?? 0)) === 1;
105 if ($max_age_seconds === 0) {
106 $max_age_seconds = $now;
110 ' WHERE usr_id = %s AND (valid_until = 0 OR valid_until > %s) AND time_added > %s';
113 $values = [$user_id, $now, $now - $max_age_seconds];
116 $query .=
' AND type = %s';
121 $rset = $this->database->queryF(
$query, $types, $values);
124 while ($row = $this->database->fetchAssoc($rset)) {
125 $object = unserialize($row[
'serialized'], [
'allowed_classes' => [ilNotificationObject::class, ilNotificationLink::class]]);
126 if (isset($object->handlerParams[
''], $object->handlerParams[
'osd'])) {
127 $object->handlerParams = [
'general' => $object->handlerParams[
''],
'osd' => $object->handlerParams[
'osd']];
130 (
int) $row[
'notification_osd_id'],
131 (
int) $row[
'usr_id'],
133 (
int) $row[
'time_added'],
134 (
int) $row[
'valid_until'],
135 (
int) $row[
'visible_for'],
140 $notifications[] = $notification;
143 return $notifications;
158 $this->database->manipulateF(
169 $values = [$povider_type, $identification];
171 $query .=
' AND user_id = %s';
173 $values[] = $user_id;
175 return (1 === $this->database->manipulateF(
$query,
$keys, $values));
181 $this->database->manipulateF(
184 [$povider_type, $user_id, $until_timestamp]
deleteOSDNotificationById(int $id)
deleteOSDNotificationByUserAndType(int $user_id, string $type)
__construct(?ilDBInterface $database=null)
deleteStaleOSDNotificationsForUserAndType(string $povider_type, int $user_id, int $until_timestamp)
getOSDNotificationsByUser(int $user_id, int $max_age_seconds=0, string $type='')
ifOSDNotificationExistsById(int $id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteOSDNotificationByIdentification(string $povider_type, string $identification, int $user_id=0)
deleteAllOSDNotifications()
static string $tbl_notification_osd_handler
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
createOSDNotification(int $user_id, ilNotificationObject $object)