Skip to content
Snippets Groups Projects
Commit a751db08 authored by Moritz Strohm's avatar Moritz Strohm Committed by David Siegfried
Browse files

RoomManager::findRooms: find rooms that are available in at least one time range, re #239

Merge request studip/studip!1025
parent 22910030
No related branches found
No related tags found
No related merge requests found
Pipeline #6620 passed
...@@ -32,7 +32,8 @@ class RoomManager ...@@ -32,7 +32,8 @@ class RoomManager
$request->getTimeIntervals(true), $request->getTimeIntervals(true),
'name ASC, mkdate ASC', 'name ASC, mkdate ASC',
true, true,
$excluded_room_ids $excluded_room_ids,
false
); );
} }
...@@ -480,6 +481,13 @@ class RoomManager ...@@ -480,6 +481,13 @@ class RoomManager
* @param bool $only_requestable_rooms Whether the search shall be limited * @param bool $only_requestable_rooms Whether the search shall be limited
* to requestable rooms only (true) or not (false). * to requestable rooms only (true) or not (false).
* @param array $excluded_room_ids * @param array $excluded_room_ids
*
* @param bool $only_fully_available Whether only rooms shall be added to
* the result set that are fully available in the requested time
* ranges (true) or whether rooms shall be added that are only
* partially available in those time ranges (false).
* Defaults to true.
*
* @return array * @return array
*/ */
public static function findRooms( public static function findRooms(
...@@ -490,7 +498,8 @@ class RoomManager ...@@ -490,7 +498,8 @@ class RoomManager
$time_ranges = [], $time_ranges = [],
$order_by = null, $order_by = null,
$only_requestable_rooms = true, $only_requestable_rooms = true,
$excluded_room_ids = [] $excluded_room_ids = [],
$only_fully_available = true
) )
{ {
$sql = "INNER JOIN resource_categories rc $sql = "INNER JOIN resource_categories rc
...@@ -582,29 +591,34 @@ class RoomManager ...@@ -582,29 +591,34 @@ class RoomManager
if (!empty($time_ranges)) { if (!empty($time_ranges)) {
//We must check if the room is available: //We must check if the room is available:
foreach ($filtered_rooms as $room) { foreach ($filtered_rooms as $room) {
$room_is_available = true; $room_is_available = $only_fully_available;
foreach ($time_ranges as $time_range) { foreach ($time_ranges as $time_range) {
if (!$time_range['begin'] || !$time_range['end']) { if (!$time_range['begin'] || !$time_range['end']) {
//Invalid format. //Invalid format.
continue; continue;
} }
$begin = null;
if ($time_range['begin'] instanceof DateTime) { if ($time_range['begin'] instanceof DateTime) {
$begin = $time_range['begin']; $begin = $time_range['begin'];
} else { } else {
$begin = new DateTime(); $begin = new DateTime();
$begin->setTimestamp($time_range['begin']); $begin->setTimestamp($time_range['begin']);
} }
$end = null;
if ($time_range['end'] instanceof DateTime) { if ($time_range['end'] instanceof DateTime) {
$end = $time_range['end']; $end = $time_range['end'];
} else { } else {
$end = new DateTime(); $end = new DateTime();
$end->setTimestamp($time_range['end']); $end->setTimestamp($time_range['end']);
} }
if (!$room->isAvailable($begin, $end)) { if ($room->isAvailable($begin, $end)) {
$room_is_available = false; if (!$only_fully_available) {
continue 2; $room_is_available = true;
break;
}
} else {
if ($only_fully_available) {
$room_is_available = false;
break;
}
} }
} }
if ($room_is_available) { if ($room_is_available) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment