29 protected \ILIAS\BookingManager\InternalRepoService
$repo;
37 $this->
lng = $DIC->language();
40 $this->repo = $DIC->bookingManager()
47 return "book_notification";
55 return $lng->
txt(
"book_notification");
63 return $lng->
txt(
"book_notification_info");
68 return JobScheduleType::DAILY;
88 $status = JobResult::STATUS_NO_ACTION;
93 $status = JobResult::STATUS_OK;
97 $result->setStatus($status);
106 $access = $DIC->bookingManager()->internal()->domain()->access();
110 $log->debug(
"start");
121 $next_day_ts = mktime(0, 0, 0, date(
'n'), (
int) date(
'j') + 1);
122 $log->debug(
"next day ts: " . $next_day_ts);
123 $last_reminder_to_ts = $p[
"last_remind_ts"];
126 $log->debug(
"last_reminder ts: " . $last_reminder_to_ts);
127 $from_ts = max($next_day_ts, $last_reminder_to_ts);
128 $log->debug(
"from ts: " . $from_ts);
129 $to_ts = mktime(0, 0, 0, date(
'n'), (
int) date(
'j') + $p[
"reminder_day"] + 1);
138 $log->debug(
"pool id: " 139 . $p[
"booking_pool_id"]
142 . date(
"Y-m-d, H:i:s", $from_ts)
143 .
" to " . date(
"Y-m-d, H:i:s", $to_ts));
146 if ($to_ts > $from_ts) {
147 $repo = $this->repo->reservation();
148 $res = $repo->getListByDate(
true,
null, [
151 ], [$p[
"booking_pool_id"]]);
154 $log->debug(
"reservations: " . count(
$res));
160 $log->debug(
"users: " . count($user_ids));
165 $log->debug(
"check notification of user id: " . $r[
"user_id"]);
166 if (in_array($r[
"user_id"], $user_ids)) {
167 if ($access->canRetrieveNotificationsForOwnReservationsByObjId(
168 (
int) $p[
"booking_pool_id"],
171 $log->debug(
"got read");
172 $notifications[$r[
"user_id"]][
"personal"][$r[
"pool_id"]][] =
$r;
177 foreach ($user_ids as $uid) {
178 $log->debug(
"check write for user id: " . $uid .
", pool: " . $p[
"booking_pool_id"]);
180 if ($access->canRetrieveNotificationsForAllReservationsByObjId(
181 (
int) $p[
"booking_pool_id"],
184 $log->debug(
"got write");
185 $notifications[$uid][
"admin"][$r[
"pool_id"]][] =
$r;
195 return count($notifications);
201 foreach ($notifications as $uid => $n) {
207 if (is_array($n[
"personal"] ??
null)) {
208 $txt .=
"\n" . $lng->
txt(
"book_your_reservations") .
"\n";
209 $txt .=
"-----------------------------------------\n";
210 foreach ($n[
"personal"] as $obj_id => $reservs) {
212 foreach ($reservs as
$r) {
213 $txt .=
"- " . $r[
"title"] .
" (" . $r[
"counter"] .
"), " .
220 if (is_array($n[
"admin"] ?? null)) {
221 $txt .=
"\n" . $lng->
txt(
"book_reservation_overview") .
"\n";
222 $txt .=
"-----------------------------------------\n";
223 foreach ($n[
"admin"] as $obj_id => $reservs) {
225 foreach ($reservs as
$r) {
226 $txt .=
"- " . $r[
"title"] .
" (" . $r[
"counter"] .
"), " . $r[
"user_name"] .
", " .
229 if ($r[
"message"] !=
"") {
230 $txt .=
" " . $lng->
txt(
"book_message") .
231 ": " . $r[
"message"];
236 $ntf->setLangModules(array(
"book"));
237 $ntf->setSubjectLangId(
"book_booking_reminders");
238 $ntf->setIntroductionLangId(
"book_rem_intro");
239 $ntf->addAdditionalInfo(
"",
$txt);
240 $ntf->setReasonLangId(
"book_rem_reason");
241 $this->book_log->debug(
"send Mail: " . $uid);
242 $ntf->sendMailAndReturnRecipients([$uid]);
static getLogger(string $a_component_id)
Get component logger.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getUserLanguage()
Return language of user.
loadLanguageModule(string $a_module)
Load language module.
static getPoolsWithReminders()
Get pools with reminders.
static getNotificationsForObject(int $type, int $id, ?int $page_id=null, bool $ignore_threshold=false)
Get all users/recipients for given object.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static writeLastReminderTimestamp(int $a_obj_id, int $a_ts)
getDefaultScheduleValue()
static _lookupTitle(int $obj_id)
Cron for booking manager notification.
ILIAS BookingManager InternalRepoService $repo
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
sendMails(array $notifications)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...