28 protected \ilDBInterface
$db;
33 ?array $preload_context_obj_ids =
null 36 if (is_array($preload_context_obj_ids)) {
48 $set =
$ilDB->query(
'SELECT *' .
49 ' FROM booking_reservation' .
50 ' WHERE booking_reservation_id = ' .
$ilDB->quote($id,
'integer'));
51 return $ilDB->fetchAssoc($set);
70 $id =
$ilDB->nextId(
'booking_reservation');
71 $ilDB->manipulate(
'INSERT INTO booking_reservation' .
72 ' (booking_reservation_id,user_id,assigner_id,object_id,context_obj_id,date_from,date_to,status,group_id,message)' .
73 ' VALUES (' .
$ilDB->quote(
$id,
'integer') .
74 ',' .
$ilDB->quote($user_id,
'integer') .
75 ',' .
$ilDB->quote($assigner_id,
'integer') .
76 ',' .
$ilDB->quote($object_id,
'integer') .
77 ',' .
$ilDB->quote($context_obj_id,
'integer') .
78 ',' .
$ilDB->quote($from,
'integer') .
79 ',' .
$ilDB->quote($to,
'integer') .
80 ',' .
$ilDB->quote($status,
'integer') .
81 ',' .
$ilDB->quote($group_id,
'integer') .
102 return $ilDB->manipulate(
'UPDATE booking_reservation' .
103 ' SET object_id = ' .
$ilDB->quote($object_id,
'text') .
104 ', user_id = ' .
$ilDB->quote($user_id,
'integer') .
105 ', assigner_id = ' .
$ilDB->quote($assigner_id,
'integer') .
106 ', date_from = ' .
$ilDB->quote($from,
'integer') .
107 ', date_to = ' .
$ilDB->quote($to,
'integer') .
108 ', status = ' .
$ilDB->quote($status,
'integer') .
109 ', group_id = ' .
$ilDB->quote($group_id,
'integer') .
110 ', context_obj_id = ' .
$ilDB->quote($context_obj_id,
'integer') .
112 ' WHERE booking_reservation_id = ' .
$ilDB->quote($id,
'integer'));
115 public function delete(
int $id):
void 120 $ilDB->manipulate(
'DELETE FROM booking_reservation' .
121 ' WHERE booking_reservation_id = ' .
$ilDB->quote(
$id,
'integer'));
130 return $this->db->nextId(
'booking_reservation_group');
142 bool $only_not_over_yet =
false 146 $from =
$ilDB->quote($from,
'integer');
147 $to =
$ilDB->quote($to,
'integer');
149 $date = $only_not_over_yet
150 ?
' AND date_to > ' .
$ilDB->quote(time(),
"integer")
153 $set =
$ilDB->query(
'SELECT count(*) cnt, object_id' .
154 ' FROM booking_reservation' .
155 ' WHERE ' .
$ilDB->in(
'object_id', $ids,
'',
'integer') . $date .
156 ' AND (status IS NULL OR status <> ' .
$ilDB->quote(
160 ' AND date_from <= ' . $to .
' AND date_to >= ' . $from .
161 ' GROUP BY object_id');
163 while ($row =
$ilDB->fetchAssoc($set)) {
164 $res[$row[
"object_id"]] = $row;
173 bool $a_has_schedule,
174 ?array $a_object_ids =
null,
175 ?array $filter =
null,
176 ?array $a_pool_ids =
null 182 $sql =
'SELECT r.*, o.title, o.pool_id, o.post_text, o.post_file' .
183 ' FROM booking_reservation r' .
184 ' JOIN booking_object o ON (o.booking_object_id = r.object_id)';
187 if ($a_pool_ids !==
null) {
188 $where = array(
$ilDB->in(
'pool_id', $a_pool_ids,
'',
'integer'));
191 if ($a_object_ids !==
null) {
192 $where = array(
$ilDB->in(
'object_id', $a_object_ids,
'',
'integer'));
195 if (isset($filter[
'context_obj_ids']) && count($filter[
'context_obj_ids']) > 0) {
196 $where = array(
$ilDB->in(
'context_obj_id', $filter[
'context_obj_ids'],
'',
'integer'));
199 if ($filter[
'status'] ??
false) {
200 if ($filter[
'status'] > 0) {
201 $where[] =
'status = ' .
$ilDB->quote($filter[
'status'],
'integer');
203 $where[] =
'(status != ' .
$ilDB->quote(-$filter[
'status'],
'integer') .
204 ' OR status IS NULL)';
207 if (isset($filter[
'title']) && is_string($filter[
'title'])) {
208 $where[] =
'(' .
$ilDB->like(
'title',
'text',
'%' . $filter[
'title'] .
'%') .
209 ' OR ' .
$ilDB->like(
'description',
'text',
'%' . $filter[
'title'] .
'%') .
')';
211 if ($a_has_schedule) {
212 if (isset($filter[
'from']) && (
int) $filter[
'from'] > 0) {
213 $where[] =
'date_from >= ' .
$ilDB->quote($filter[
'from'],
'integer');
215 if (isset($filter[
'to']) && (
int) $filter[
'to'] > 0) {
216 $where[] =
'date_to <= ' .
$ilDB->quote($filter[
'to'],
'integer');
218 if (!isset($filter[
'past']) || !$filter[
'past']) {
219 $where[] =
'date_to > ' .
$ilDB->quote(time(),
'integer');
222 if (isset($filter[
'user_id']) && is_numeric($filter[
'user_id'])) {
223 $where[] =
'user_id = ' .
$ilDB->quote($filter[
'user_id'],
'integer');
225 if (count($where) > 0) {
226 $sql .=
' WHERE ' . implode(
' AND ', $where);
229 if ($a_has_schedule) {
230 $sql .=
' ORDER BY date_from DESC';
233 $sql .=
' ORDER BY status';
235 $set =
$ilDB->query($sql);
236 while ($row =
$ilDB->fetchAssoc($set)) {
237 $obj_id = $row[
"object_id"];
240 if ($a_has_schedule) {
241 $slot = $row[
"date_from"] .
"_" . $row[
"date_to"];
242 $idx = $obj_id .
"_" .
$user_id .
"_" . $slot;
246 $idx .=
"_" . $row[
"context_obj_id"];
248 if ($a_has_schedule && ($filter[
"slot"] ??
false)) {
249 $slot_idx = date(
"w", $row[
"date_from"]) .
"_" . date(
"H:i", $row[
"date_from"]) .
250 "-" . date(
"H:i", $row[
"date_to"] + 1);
251 if ($filter[
"slot"] != $slot_idx) {
256 if (!isset(
$res[$idx])) {
260 "object_id" => $obj_id
261 ,
"title" => $row[
"title"]
262 ,
"post_text" => $row[
"post_text"]
263 ,
"post_file" => $row[
"post_file"]
264 ,
"pool_id" => $row[
"pool_id"]
265 ,
"context_obj_id" => (
int) $row[
"context_obj_id"]
267 ,
"message" => (
string) $row[
"message"]
269 ,
"user_name" => $uname[
"lastname"] .
", " . $uname[
"firstname"]
270 ,
"login" => $uname[
"login"]
273 if ($a_has_schedule) {
274 $res[$idx][
"booking_reservation_id"] = $idx;
275 $res[$idx][
"date"] = date(
"Y-m-d", $row[
"date_from"]);
276 $res[$idx][
"slot"] = date(
"H:i", $row[
"date_from"]) .
" - " .
277 date(
"H:i", $row[
"date_to"] + 1);
278 $res[$idx][
"week"] = date(
"W", $row[
"date_from"]);
279 $res[$idx][
"weekday"] = date(
"w", $row[
"date_from"]);
281 $row[
"date_from"] > time());
282 $res[$idx][
"_sortdate"] = $row[
"date_from"];
285 $res[$idx][
"status"] = $row[
"status"];
287 $res[$idx][
"booking_reservation_id"] = $row[
"booking_reservation_id"];
288 $res[$idx][
"status"] = $row[
"status"];
292 $res[$idx][
"counter"]++;
308 array $context_obj_ids
310 $filter = [
"context_obj_ids" => ($context_obj_ids)];
311 $filter[
'past'] =
true;
327 if (!is_array($this->preloaded_by_context_list)) {
328 throw new \ilBookingReservationException(
"Repo not initilialized.");
330 return array_filter($this->preloaded_by_context_list,
static function ($row) use ($context_obj_id) {
331 return ($row[
"context_obj_id"] == $context_obj_id);
337 $set = $this->db->queryF(
338 "SELECT booking_reservation_id FROM booking_reservation " .
339 " WHERE object_id = %s ",
344 while ($row = $this->db->fetchAssoc($set)) {
345 $ret[] = (
int) $row[
'booking_reservation_id'];
preloadByContextIds(array $context_obj_ids)
Preload reservation information for context obj ids.
getListByDate(bool $a_has_schedule, ?array $a_object_ids=null, ?array $filter=null, ?array $a_pool_ids=null)
List all reservations by date.
getReservationIdsByBookingObjectId(int $booking_object_id)
Repo class for reservations Acts on tables booking_reservation (rw), booking_reservation_group (rw) a...
getNumberOfReservations(array $ids, int $from, int $to, bool $only_not_over_yet=false)
Get number of uncancelled reservations in time frame.
static _lookupName(int $a_user_id)
lookup user name
array $preloaded_by_context_list
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
create(int $user_id, int $assigner_id, int $object_id, int $context_obj_id, int $from, int $to, int $status, int $group_id, string $message="")
update(int $id, int $user_id, int $assigner_id, int $object_id, int $context_obj_id, int $from, int $to, int $status, int $group_id, string $message="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(\ilDBInterface $db, ?array $preload_context_obj_ids=null)
getForId(int $id)
Get reservation data for id.
static stableSortArray(array $array, string $a_array_sortby, string $a_array_sortorder="asc", bool $a_numeric=false)
Sort an aray using a stable sort algorithm, which preveserves the sequence of array elements which ha...
getCachedContextObjBookingInfo(int $context_obj_id)
Get context object properties info.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)