19 declare(strict_types=1);
54 int $recurrence_weeks,
60 $cycle = $recurrence_weeks * 7;
61 $booked_out_slots = [];
62 $check_slot_from = $slot_from;
63 while ($cut < 1000 && $check_slot_from <= $end) {
64 $check_slot_from = $this->
addDaysStamp($slot_from, $cycle * $cut);
65 $check_slot_to = $this->
addDaysStamp($slot_to, $cycle * $cut);
67 $available = $available[$obj_id] ?? 0;
68 if ($available < $requested_nr) {
69 $booked_out_slots[] = [
70 "from" => $check_slot_from,
71 "to" => $check_slot_to,
72 "missing" => $requested_nr - $available
77 return $booked_out_slots;
84 $date = date_parse($a_date);
85 $stamp = mktime(0, 0, 1, $date[
"month"], $date[
"day"] + $a_days, $date[
"year"]);
86 return date(
"Y-m-d", $stamp);
93 $date = getdate($a_stamp);
99 $date[
"mday"] + $a_days,
116 $reservation_repo = $this->repo->reservation();
120 if (is_null($until)) {
127 $cycle = $recurrence * 7;
129 $booked_out_slots = [];
130 $check_slot_from = $from;
131 $group_id = $reservation_repo->getNewGroupId();
132 while ($cut < 1000 && $check_slot_from <= $end) {
133 $check_slot_from = $this->
addDaysStamp($from, $cycle * $cut);
134 $check_slot_to = $this->
addDaysStamp($to, $cycle * $cut);
136 $available = $available[$obj_id] ?? 0;
137 $book_nr = min($nr, $available);
138 for ($loop = 0; $loop < $book_nr; $loop++) {
164 int $assigner_id = 0,
165 int $context_obj_id = 0,
168 ?
int $a_group_id =
null,
171 $lng = $this->domain->lng();
175 $this->domain->participants()->createIfNotExisting($user_to_book, $pool_id);
178 $reservation = new \ilBookingReservation();
179 $reservation->setObjectId($object_id);
180 $reservation->setUserId($user_to_book);
181 $reservation->setAssignerId($assigner_id);
182 $reservation->setFrom((
int) $a_from);
183 $reservation->setTo((
int) $a_to);
184 $reservation->setGroupId((
int) $a_group_id);
185 $reservation->setContextObjId($context_obj_id);
187 $reservation->save();
191 $lng->loadLanguageModule(
'dateplaner');
195 $lng->txt(
'cal_ch_personal_book'),
199 $object = new \ilBookingObject($object_id);
201 $entry = new \ilCalendarEntry();
204 $entry->setTitle(
$lng->txt(
'book_cal_entry') .
' ' . $object->getTitle());
205 $entry->setContextId($reservation->getId());
208 $assignment = new \ilCalendarCategoryAssignments($entry->getEntryId());
209 if ($def_cat !==
null) {
210 $assignment->addAssignment($def_cat->getCategoryID());
214 return $reservation->getId();
get(int $a_format, string $a_format_str='', string $a_tz='')
get formatted date
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
bookSingle(int $object_id, int $user_to_book, int $assigner_id=0, int $context_obj_id=0, ?int $a_from=null, ?int $a_to=null, ?int $a_group_id=null, string $message="")
Book object for date.
get(int $a_format, string $a_format_str='', string $a_tz='')
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.
__construct(InternalDataService $data, InternalRepoService $repo, InternalDomainService $domain)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addDaysStamp(int $a_stamp, int $a_days)
Author: Alexander Killing killing@leifos.de
static initDefaultCalendarByType(int $a_type_id, int $a_usr_id, string $a_title, bool $a_create=false)
Init the default calendar for given type and user.
InternalDataService $data
InternalDomainService $domain
Repository internal data service.
getRecurrenceMissingAvailability(int $obj_id, int $slot_from, int $slot_to, int $recurrence_weeks, int $requested_nr, \ilDate $until)
Get missing availability of an object for a given weekly recurrence, object id, starting slot and req...
bookAvailableObjects(int $obj_id, int $user_to_book, int $assigner_id, int $context_obj_id, int $from, int $to, int $recurrence, int $nr, ?\ilDateTime $until, string $message="")
addDaysDate(string $a_date, int $a_days)
static lookupPoolId(int $object_id)
InternalRepoService $repo