19 declare(strict_types=1);
44 $this->db = $DIC->database();
45 $this->
user = $DIC->user();
46 $this->
setId($a_booking_id);
63 $ilDB = $DIC->database();
64 $query =
'SELECT entry_id FROM booking_user ' .
65 'WHERE ' .
$ilDB->in(
'entry_id', $a_app_ids,
false,
'integer') .
' ' .
66 'AND user_id = ' .
$ilDB->quote($a_usr_id,
'integer');
70 $booked_entries = array();
72 $booked_entries[] = (
int) $row->entry_id;
74 return $booked_entries;
77 protected function setId(
int $a_id): void
90 $this->obj_id = $a_id;
100 $this->deadline = $a_hours;
110 $this->num_bookings = $a_num;
123 $this->target_obj_ids = $a_obj_id;
150 $this->
setId($this->db->nextId(
'booking_entry'));
151 $query =
'INSERT INTO booking_entry (booking_id,obj_id,deadline,num_bookings) ' .
153 $this->db->quote($this->
getId(),
'integer') .
', ' .
154 $this->db->quote($this->
getObjId(),
'integer') .
', ' .
158 $this->db->manipulate($query);
160 foreach ((array) $this->target_obj_ids as $obj_id) {
161 $query =
'INSERT INTO booking_obj_assignment (booking_id, target_obj_id) ' .
163 $this->db->quote($this->
getId(),
'integer') .
', ' .
164 $this->db->quote($obj_id,
'integer') .
' ' .
166 $this->db->manipulate($query);
172 if (!$this->
getId()) {
176 $query =
"UPDATE booking_entry SET " .
177 " obj_id = " . $this->db->quote($this->
getObjId(),
'integer') .
", " .
178 " deadline = " . $this->db->quote($this->
getDeadlineHours(),
'integer') .
", " .
180 'WHERE booking_id = ' . $this->db->quote($this->
getId(),
'integer');
181 $this->db->manipulate($query);
184 $query =
'DELETE FROM booking_obj_assignment ' .
185 'WHERE booking_id = ' . $this->db->quote($this->
getId(),
'integer');
186 $this->db->manipulate($query);
188 foreach ((array) $this->target_obj_ids as $obj_id) {
189 $query =
'INSERT INTO booking_obj_assignment (booking_id, target_obj_id) ' .
191 $this->db->quote($this->
getId(),
'integer') .
', ' .
192 $this->db->quote($obj_id,
'integer') .
' ' .
194 $this->db->manipulate($query);
198 public function delete():
void 200 $query =
"DELETE FROM booking_entry " .
201 "WHERE booking_id = " . $this->db->quote($this->
getId(),
'integer');
202 $this->db->manipulate($query);
203 $query =
'DELETE FROM booking_obj_assignment ' .
204 'WHERE booking_id = ' . $this->db->quote($this->
getId(),
'integer');
205 $this->db->manipulate($query);
208 protected function read(): void
210 if (!$this->
getId()) {
214 $query =
"SELECT * FROM booking_entry " .
215 "WHERE booking_id = " . $this->db->quote($this->
getId(),
'integer');
216 $res = $this->db->query($query);
218 $this->
setObjId((
int) $row[
'obj_id']);
223 $query =
'SELECT * FROM booking_obj_assignment ' .
224 'WHERE booking_id = ' . $this->db->quote($this->
getId(),
'integer');
225 $res = $this->db->query($query);
226 $this->target_obj_ids = array();
228 $this->target_obj_ids[] = (
int) $row->target_obj_id;
240 $a_user_id = $this->
user->getId();
242 if ($this->
getObjId() == $a_user_id) {
255 $ilDB = $DIC->database();
256 $set =
$ilDB->query(
'SELECT DISTINCT(context_id) FROM cal_entries e' .
257 ' JOIN cal_cat_assignments a ON (e.cal_id = a.cal_id)' .
258 ' JOIN cal_categories c ON (a.cat_id = c.cat_id) WHERE c.type = ' .
$ilDB->quote(
264 while ($row =
$ilDB->fetchAssoc($set)) {
265 $used[] = $row[
'context_id'];
267 $ilDB->query(
$q =
'DELETE FROM booking_entry WHERE ' .
$ilDB->in(
'booking_id', $used,
true,
'integer'));
268 $ilDB->query(
$q =
'DELETE FROM booking_obj_assignment WHERE ' .
$ilDB->in(
284 $booking_id = $cal_entry->getContextId();
286 return new self($booking_id);
297 public static function isBookable(array $a_obj_ids, ?
int $a_target_obj_id =
null): array
301 $ilDB = $DIC->database();
302 if ($a_target_obj_id) {
303 $query =
'SELECT DISTINCT(obj_id) FROM booking_entry be ' .
304 'JOIN booking_obj_assignment bo ON be.booking_id = bo.booking_id ' .
305 'WHERE ' .
$ilDB->in(
'obj_id', $a_obj_ids,
false,
'integer') .
' ' .
306 'AND bo.target_obj_id = ' .
$ilDB->quote($a_target_obj_id,
'integer');
308 $query =
'SELECT DISTINCT(obj_id) FROM booking_entry be ' .
309 'WHERE ' .
$ilDB->in(
'obj_id', $a_obj_ids,
false,
'integer') .
' ';
315 $all[] = (
int) $row->obj_id;
332 $ilDB = $DIC->database();
333 $query =
'SELECT be.obj_id bobj FROM booking_entry be ' .
334 'JOIN booking_obj_assignment bo ON be.booking_id = bo.booking_id ' .
335 'JOIN cal_entries ce on be.booking_id = ce.context_id ' .
336 'JOIN cal_cat_assignments cca on ce.cal_id = cca.cal_id ' .
337 'JOIN cal_categories cc on cca.cat_id = cc.cat_id ' .
338 'WHERE ' .
$ilDB->in(
'be.obj_id', $a_user_ids,
false,
'integer') .
' ' .
339 'AND ' .
$ilDB->in(
'bo.target_obj_id', $a_obj_id,
false,
'integer') .
' ' .
340 'AND cc.obj_id = be.obj_id ' .
347 if (!in_array($row->bobj, $objs)) {
348 $objs[] = (
int) $row->bobj;
353 $query =
'SELECT be.obj_id bobj FROM booking_entry be ' .
354 'LEFT JOIN booking_obj_assignment bo ON be.booking_id = bo.booking_id ' .
355 'JOIN cal_entries ce on be.booking_id = ce.context_id ' .
356 'JOIN cal_cat_assignments cca on ce.cal_id = cca.cal_id ' .
357 'JOIN cal_categories cc on cca.cat_id = cc.cat_id ' .
358 'WHERE bo.booking_id IS NULL ' .
359 'AND ' .
$ilDB->in(
'be.obj_id', $a_user_ids,
false,
'integer') .
' ' .
360 'AND cc.obj_id = be.obj_id ' .
365 if (!in_array($row->bobj, $objs)) {
366 $objs[] = (
int) $row->bobj;
379 $ilDB = $DIC->database();
381 $user_restriction =
'';
386 $query =
'SELECT be.booking_id FROM booking_entry be ' .
387 'JOIN booking_obj_assignment bo ON be.booking_id = bo.booking_id ' .
388 'WHERE bo.target_obj_id = ' .
$ilDB->quote($a_obj_id,
'integer') .
' ' .
402 $ilDB = $DIC->database();
404 $query =
'SELECT * from booking_user ' .
405 'WHERE entry_id = ' .
$ilDB->quote($a_entry_id,
'integer') .
' ' .
406 'AND user_id = ' .
$ilDB->quote($a_usr_id,
'integer');
409 return (
string) $row->booking_message;
421 $ilDB = $DIC->database();
422 $query =
'UPDATE booking_user SET ' .
423 'booking_message = ' .
$ilDB->quote($a_message,
'text') .
' ' .
424 'WHERE entry_id = ' .
$ilDB->quote($a_entry_id,
'integer') .
' ' .
425 'AND user_id = ' .
$ilDB->quote($a_usr_id,
'integer');
427 $ilDB->manipulate($query);
435 $set = $this->db->query(
'SELECT COUNT(*) AS counter FROM booking_user' .
436 ' WHERE entry_id = ' . $this->db->quote($a_entry_id,
'integer'));
437 $row = $this->db->fetchAssoc($set);
438 if (is_array($row)) {
439 return (
int) $row[
'counter'];
451 $set = $this->db->query(
'SELECT user_id FROM booking_user' .
452 ' WHERE entry_id = ' . $this->db->quote($a_entry_id,
'integer'));
454 while ($row = $this->db->fetchAssoc($set)) {
455 $res[] = (
int) $row[
'user_id'];
469 $ilDB = $DIC->database();
470 $query =
'SELECT user_id FROM booking_user ' .
471 'WHERE entry_id = ' .
$ilDB->quote($a_app_id,
'integer');
474 while ($row =
$ilDB->fetchObject(
$res)) {
475 $users[] = (
int) $row->user_id;
490 $ilDB = $DIC->database();
491 $query =
'SELECT bu.user_id, starta, enda FROM booking_user bu ' .
492 'JOIN cal_entries ca ON entry_id = ca.cal_id ' .
493 'JOIN booking_entry be ON context_id = booking_id ' .
494 'JOIN booking_obj_assignment bo ON be.booking_id = bo.booking_id ' .
495 'WHERE bo.target_obj_id = ' .
$ilDB->quote($a_obj_id,
'integer') .
' ' .
504 $bookings[(
int) $row->user_id][] = [
519 $bookings = self::lookupBookingsForObject($a_obj_id, $a_usr_id);
521 foreach (self::lookupBookingsForObject($a_obj_id, $managed_user_id) as $booked_user => $booking) {
523 foreach ($booking as $booking_entry) {
524 $booking_entry[
'explanation'] =
'(' . $fullname .
')';
525 $bookings[$booked_user][] = $booking_entry;
538 $a_user_id = $this->
user->getId();
541 $query =
'SELECT COUNT(*) AS counter FROM booking_user' .
542 ' WHERE entry_id = ' . $this->db->quote($a_entry_id,
'integer') .
543 ' AND user_id = ' . $this->db->quote($a_user_id,
'integer');
544 $set = $this->db->query($query);
545 $row = $this->db->fetchAssoc($set);
546 if (is_array($row)) {
547 return (
bool) $row[
'counter'];
555 public function isBookedOut(
int $a_entry_id,
bool $a_check_current_user =
false): bool
559 if ($a_check_current_user) {
573 if (time() + ($deadline * 60 * 60) > $entry->getStart()->get(
IL_CAL_UNIX)) {
608 public function book(
int $a_entry_id, ?
int $a_user_id =
null): bool
611 $a_user_id = $this->
user->getId();
614 if (!$this->
hasBooked($a_entry_id, $a_user_id)) {
615 $this->db->manipulate(
'INSERT INTO booking_user (entry_id, user_id, tstamp)' .
616 ' VALUES (' . $this->db->quote($a_entry_id,
'integer') .
',' .
617 $this->db->quote($a_user_id,
'integer') .
',' . $this->db->quote(time(),
'integer') .
')');
628 $a_user_id = $this->
user->getId();
635 if ($this->
hasBooked($a_entry_id, $a_user_id) && !$past) {
637 $mail->setAppointmentId($a_entry_id);
638 $mail->setRecipients(array($a_user_id));
651 $query =
'DELETE FROM booking_user ' .
652 'WHERE entry_id = ' . $this->db->quote($a_entry_id,
'integer') .
' ' .
653 'AND user_id = ' . $this->db->quote($a_user_id,
'integer');
654 $this->db->manipulate($query);
static isBookable(array $a_obj_ids, ?int $a_target_obj_id=null)
Which objects are bookable?
static hasObjectBookingEntries(int $a_obj_id, int $a_usr_id)
Check if object has assigned consultation hour appointments.
getCurrentBookings(int $a_entry_id)
get current bookings
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
static _lookupFullname(int $a_user_id)
static lookupManagedUsers($a_usr_id)
Lookup managed users.
getCurrentNumberOfBookings(int $a_entry_id)
get current number of bookings
isAppointmentBookableForUser(int $a_app_id, int $a_user_id)
Check if a calendar appointment is bookable for a specific user.
Distributes calendar mail notifications.
deleteBooking(int $a_entry_id, int $a_user_id)
Delete booking.
static removeObsoleteEntries()
Remove unused booking entries.
hasBooked(int $a_entry_id, ?int $a_user_id=null)
get current number of bookings
static writeBookingMessage(int $a_entry_id, int $a_usr_id, string $a_message)
Write booking message.
static lookupBookingsOfUser(array $a_app_ids, int $a_usr_id, ?ilDateTime $start=null)
Lookup bookings of user.
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getInstanceByCalendarEntryId(int $a_id)
Get instance by calendar entry.
__construct(int $a_booking_id=0)
Constructor.
static lookupBookingsForObject(int $a_obj_id, int $a_usr_id)
Lookup booking for an object and user.
setDeadlineHours(int $a_hours)
static _after(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is after end This method does not consider tz offsets.
cancelBooking(int $a_entry_id, ?int $a_user_id=null)
cancel calendar booking for user
isTargetObjectVisible(int $a_ref_id)
Check if target ref id is visible.
static lookupManagedBookingsForObject(int $a_obj_id, int $a_usr_id)
Lookup bookings for own and managed consultation hours of an object.
const TYPE_BOOKING_CANCELLATION
isBookedOut(int $a_entry_id, bool $a_check_current_user=false)
get current number of bookings
static lookupBookableUsersForObject(array $a_obj_id, array $a_user_ids)
Consultation hours are offered if 1) consultation hour owner is admin or tutor and no object assignme...
setNumberOfBookings(int $a_num)
static lookupBookingMessage(int $a_entry_id, int $a_usr_id)
isOwner(?int $a_user_id=null)
check if current (or given) user is entry owner
setTargetObjIds(?array $a_obj_id)
static lookupBookingsForAppointment(int $a_app_id)
Lookup booked users for appointment.
book(int $a_entry_id, ?int $a_user_id=null)
book calendar entry for user