29 protected int $id = 0;
33 protected int $to = 0;
39 protected \ILIAS\BookingManager\Reservations\ReservationDBRepository
$repo;
46 $this->db =
$DIC->database();
47 $this->
id = (
int) $a_id;
49 $this->repo =
$DIC->bookingManager()
63 $this->object_id = $a_object_id;
73 $this->user_id = $a_user_id;
96 $this->assigner_id = $a_assigner_id;
109 $this->
from = $a_from;
120 public function setTo(
int $a_to): void
135 if ($a_status ===
null) {
138 if (self::isValidStatus((
int) $a_status)) {
139 $this->status = (
int) $a_status;
153 return in_array($a_status, array(self::STATUS_IN_USE, self::STATUS_CANCELLED));
158 $this->group_id = $a_group_id;
171 $this->context_obj_id = $a_val;
182 protected function read(): void
184 if ($this->
id && $row = $this->repo->getForId($this->id)) {
188 $this->
setFrom($row[
'date_from']);
189 $this->
setTo($row[
'date_to']);
203 $this->
id = $this->repo->create(
214 return ($this->
id > 0);
238 public function delete():
void
240 $this->repo->delete($this->
id);
251 bool $a_return_single =
true,
252 bool $a_return_counter =
false
258 $repo =
$DIC->bookingManager()->internal()->repo()->reservation();
261 foreach (
$repo->getNumberOfReservations($a_ids, $a_from, $a_to) as $row) {
262 if ($row[
'cnt'] >= $nr_map[$row[
'object_id']]) {
263 $blocked[] = $row[
'object_id'];
264 } elseif ($a_return_counter) {
265 $counter[$row[
'object_id']] = $nr_map[$row[
'object_id']] - (
int) $row[
'cnt'];
270 foreach ($a_ids as $obj_id) {
272 if ($bobj->getScheduleId()) {
275 $av_from = ($schedule->getAvailabilityFrom() && !$schedule->getAvailabilityFrom()->isNull())
276 ? $schedule->getAvailabilityFrom()->get(
IL_CAL_UNIX)
278 $av_to = ($schedule->getAvailabilityTo() && !$schedule->getAvailabilityTo()->isNull())
282 if (($av_from && $a_from < $av_from) ||
283 ($av_to && $a_to > $av_to)) {
284 $blocked[] = $obj_id;
290 $available = array_diff($a_ids, $blocked);
291 if (count($available)) {
292 if ($a_return_counter) {
293 foreach ($a_ids as
$id) {
300 if ($a_return_single) {
301 return array_shift($available);
320 $a_to = strtotime(
"+1year", $a_from);
323 if ($a_from > $a_to) {
328 $repo =
$DIC->bookingManager()->internal()->repo()->reservation();
329 $res = $repo->getNumberOfReservations([$a_obj_id], $a_from, $a_to,
true);
330 $booked_in_period = (
int) (
$res[$a_obj_id][
"cnt"] ?? 0);
333 $per_slot = $per_slot[$a_obj_id];
336 $schedule_slots = array();
338 $map = array_flip(array(
"su",
"mo",
"tu",
"we",
"th",
"fr",
"sa"));
339 foreach ($definition as $day => $day_slots) {
340 $schedule_slots[$map[$day]] = $day_slots;
351 $available_in_period = 0;
353 while ($a_from < $a_to &&
356 $day_slots = $schedule_slots[date(
"w", $a_from)] ??
false;
358 foreach ($day_slots as $slot) {
360 $slot = explode(
"-", $slot);
361 $slot_from = strtotime(date(
"Y-m-d", $a_from) .
" " . $slot[0]);
362 $slot_to = strtotime(date(
"Y-m-d", $a_from) .
" " . $slot[1]);
364 if ($slot_from >= $av_from &&
365 ($slot_to <= $av_to || is_null($av_to)) &&
367 $available_in_period += $per_slot;
372 $a_from += (60 * 60 * 24);
374 return $available_in_period - $booked_in_period > 0;
384 $object_manager =
$DIC->bookingManager()->internal()->domain()
385 ->objects($a_pool_id);
387 $booking_pool_objects = $object_manager->getObjectIds();
389 $query =
"SELECT count(user_id) total" .
390 " FROM booking_reservation" .
391 " WHERE " .
$ilDB->in(
'object_id', $booking_pool_objects,
false,
'integer') .
392 " AND user_id = " . $a_user_id .
393 " AND (status IS NULL OR status <> " . self::STATUS_CANCELLED .
')';
397 return (
int) $row[
'total'];
412 $query =
'SELECT DISTINCT bm.user_id user_id' .
413 ' FROM booking_member bm' .
414 ' WHERE bm.booking_pool_id = ' .
$ilDB->quote($pool_id,
'integer') .
415 ' AND bm.user_id NOT IN (' .
417 ' FROM booking_reservation' .
418 ' WHERE object_id = ' .
$ilDB->quote($a_object_id,
'integer') .
419 ' AND (status IS NULL OR status <> ' . self::STATUS_CANCELLED .
'))';
421 $set =
$ilDB->query($query);
423 while ($row =
$ilDB->fetchAssoc($set)) {
424 $res[] = (
int) $row[
'user_id'];
432 $available = self::getNumAvailablesNoSchedule($a_obj_id);
433 return (
bool) $available;
438 return self::getNumAvailablesNoSchedule($a_obj_id);
448 $all = $all[$a_obj_id];
450 $set =
$ilDB->query(
'SELECT COUNT(*) cnt' .
451 ' FROM booking_reservation r' .
452 ' JOIN booking_object o ON (o.booking_object_id = r.object_id)' .
453 ' WHERE (status IS NULL OR status <> ' .
$ilDB->quote(self::STATUS_CANCELLED,
'integer') .
')' .
454 ' AND r.object_id = ' .
$ilDB->quote($a_obj_id,
'integer'));
455 $cnt =
$ilDB->fetchAssoc($set);
456 $cnt = (
int) $cnt[
'cnt'];
471 $now =
$ilDB->quote(time(),
'integer');
474 $set =
$ilDB->query(
'SELECT user_id, status, date_from, date_to' .
475 ' FROM booking_reservation' .
476 ' WHERE ((date_from <= ' . $now .
' AND date_to >= ' . $now .
')' .
477 ' OR date_from > ' . $now .
')' .
478 ' AND (status <> ' .
$ilDB->quote(self::STATUS_CANCELLED,
'integer') .
479 ' OR STATUS IS NULL) AND object_id = ' .
$ilDB->quote($a_object_id,
'integer') .
480 ' ORDER BY date_from');
481 return $ilDB->fetchAssoc($set);
495 $set =
$ilDB->query(
'SELECT booking_reservation_id FROM booking_reservation' .
496 ' WHERE user_id = ' .
$ilDB->quote($a_user_id,
'integer') .
497 ' AND object_id = ' .
$ilDB->quote($a_object_id,
'integer') .
498 ' AND (status <> ' .
$ilDB->quote(self::STATUS_CANCELLED,
'integer') .
499 ' OR STATUS IS NULL)');
501 while ($row =
$ilDB->fetchAssoc($set)) {
502 $res[] = (
int) $row[
'booking_reservation_id'];
521 $sql =
'SELECT r.*,o.title' .
522 ' FROM booking_reservation r' .
523 ' JOIN booking_object o ON (o.booking_object_id = r.object_id)';
525 $count_sql =
'SELECT COUNT(*) AS counter' .
526 ' FROM booking_reservation r' .
527 ' JOIN booking_object o ON (o.booking_object_id = r.object_id)';
529 $where = array(
$ilDB->in(
'r.object_id', $a_object_ids,
'',
'integer'));
530 if (isset($filter[
'status'])) {
531 if ($filter[
'status'] > 0) {
532 $where[] =
'status = ' .
$ilDB->quote($filter[
'status'],
'integer');
534 $where[] =
'(status != ' .
$ilDB->quote(-$filter[
'status'],
'integer') .
535 ' OR status IS NULL)';
538 if (isset($filter[
'from'])) {
539 $where[] =
'date_from >= ' .
$ilDB->quote($filter[
'from'],
'integer');
541 if (isset($filter[
'to'])) {
542 $where[] =
'date_to <= ' .
$ilDB->quote($filter[
'to'],
'integer');
545 $sql .=
' WHERE ' . implode(
' AND ', $where);
546 $count_sql .=
' WHERE ' . implode(
' AND ', $where);
549 $set =
$ilDB->query($count_sql);
550 $row =
$ilDB->fetchAssoc($set);
553 $sql .=
' ORDER BY date_from DESC, booking_reservation_id DESC';
555 $ilDB->setLimit($a_limit, $a_offset);
556 $set =
$ilDB->query($sql);
558 while ($row =
$ilDB->fetchAssoc($set)) {
581 $sql =
"SELECT ud.usr_id,ud.lastname,ud.firstname,ud.login" .
582 " FROM usr_data ud " .
583 " LEFT JOIN booking_reservation r ON (r.user_id = ud.usr_id)" .
585 " AND " .
$ilDB->in(
"r.object_id", $a_object_ids,
"",
"integer") .
586 " ORDER BY ud.lastname,ud.firstname";
587 $set =
$ilDB->query($sql);
588 while ($row =
$ilDB->fetchAssoc($set)) {
589 $res[$row[
"usr_id"]] = $row[
"lastname"] .
", " . $row[
"firstname"] .
590 " (" . $row[
"login"] .
")";
611 if (self::isValidStatus($a_status)) {
612 return $ilDB->manipulate(
'UPDATE booking_reservation' .
613 ' SET status = ' .
$ilDB->quote($a_status,
'integer') .
614 ' WHERE ' .
$ilDB->in(
'booking_reservation_id', $a_ids,
'',
'integer'));
624 $set =
$ilDB->query(
"SELECT ce.cal_id FROM cal_entries ce" .
625 " JOIN cal_cat_assignments cca ON ce.cal_id = cca.cal_id" .
626 " JOIN cal_categories cc ON cca.cat_id = cc.cat_id" .
627 " JOIN booking_reservation br ON ce.context_id = br.booking_reservation_id" .
628 " WHERE cc.obj_id = " .
$ilDB->quote($this->getUserId(),
'integer') .
629 " AND br.user_id = " .
$ilDB->quote($this->getUserId(),
'integer') .
631 " AND ce.context_id = " .
$ilDB->quote($this->getId(),
'integer'));
632 $row =
$ilDB->fetchAssoc($set);
633 return (
int) ($row[
"cal_id"] ?? 0);
652 $sql =
"SELECT booking_reservation_id" .
653 " FROM booking_reservation" .
654 " WHERE object_id = " .
$ilDB->quote($a_obj_id,
"integer") .
655 " AND user_id = " .
$ilDB->quote($a_user_id,
"integer") .
656 " AND date_from = " .
$ilDB->quote($a_from,
"integer") .
657 " AND date_to = " .
$ilDB->quote($a_to,
"integer") .
658 " AND (status IS NULL" .
659 " OR status <> " .
$ilDB->quote(self::STATUS_CANCELLED,
"integer") .
")";
660 $set =
$ilDB->query($sql);
661 while ($row =
$ilDB->fetchAssoc($set)) {
662 $res[] = (
int) $row[
"booking_reservation_id"];
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getNrOfItemsForObjects(array $a_obj_ids)
Get nr of available items for a set of object ids.
static lookupPoolId(int $object_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getObjectReservationForUser(int $a_object_id, int $a_user_id)
static getCurrentOrUpcomingReservation(int $a_object_id)
Get details about object reservation.
setObjectId(int $a_object_id)
static getCancelDetails(int $a_obj_id, int $a_user_id, int $a_from, int $a_to)
Get reservation ids from aggregated id for cancellation.
static getNumAvailablesNoSchedule(int $a_obj_id)
static isValidStatus(int $a_status)
setGroupId(int $a_group_id)
__construct(?int $a_id=null)
ILIAS BookingManager Reservations ReservationDBRepository $repo
setContextObjId(int $a_val)
setAssignerId(int $a_assigner_id)
Set assigner user id.
getStatus()
Get booking status.
setUserId(int $a_user_id)
static isObjectAvailableNoSchedule(int $a_obj_id)
static changeStatus(array $a_ids, int $a_status)
Batch update reservation status.
static isObjectAvailableInPeriod(int $a_obj_id, ilBookingSchedule $a_schedule, ?int $a_from, ?int $a_to)
static isBookingPoolLimitReachedByUser(int $a_user_id, int $a_pool_id)
static getMembersWithoutReservation(int $a_object_id)
static getList(array $a_object_ids, int $a_limit=10, int $a_offset=0, array $filter=[])
List all reservations.
static numAvailableFromObjectNoSchedule(int $a_obj_id)
static getAvailableObject(array $a_ids, int $a_from, int $a_to, bool $a_return_single=true, bool $a_return_counter=false)
Check if any of given objects are bookable.
static getUserFilter(array $a_object_ids)
Get all users who have reservations for object(s)
setTo(int $a_to)
Set booking to date.
setMessage(string $message)
setStatus(?int $a_status)
Set booking status.
setFrom(int $a_from)
Set booking from date.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
to(\GdImage $image, ?int $quality=null)
Currently this is the only way to make a FileStream from a GD image resource.