-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSearchAvailabilityPresenter.php
289 lines (248 loc) · 6.91 KB
/
SearchAvailabilityPresenter.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<?php
/**
* Copyright 2017 Nick Korbel
*
* This file is part of Booked Scheduler.
*
* Booked Scheduler is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Booked Scheduler is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Booked Scheduler. If not, see <http://www.gnu.org/licenses/>.
*/
require_once(ROOT_DIR . 'Presenters/ActionPresenter.php');
require_once(ROOT_DIR . 'Pages/SearchAvailabilityPage.php');
class SearchAvailabilityPresenter extends ActionPresenter
{
/**
* @var ISearchAvailabilityPage
*/
private $page;
/**
* @var IResourceService
*/
private $resourceService;
/**
* @var IReservationService
*/
private $reservationService;
/**
* @var UserSession
*/
private $user;
/**
* @var IScheduleService
*/
private $scheduleService;
public function __construct(ISearchAvailabilityPage $page,
UserSession $user,
IResourceService $resourceService,
IReservationService $reservationService,
IScheduleService $scheduleService)
{
parent::__construct($page);
$this->page = $page;
$this->user = $user;
$this->resourceService = $resourceService;
$this->reservationService = $reservationService;
$this->scheduleService = $scheduleService;
$this->AddAction('search', 'SearchAvailability');
}
public function PageLoad()
{
$this->page->SetResources($this->resourceService->GetAllResources(false, $this->user));
$this->page->SetResourceTypes($this->resourceService->GetResourceTypes());
$this->page->SetResourceAttributes($this->resourceService->GetResourceAttributes());
$this->page->SetResourceTypeAttributes($this->resourceService->GetResourceTypeAttributes());
}
public function SearchAvailability()
{
$openings = array();
$dateRange = $this->GetSearchRange();
$requestedLength = $this->GetRequestedLength();
$resources = $this->resourceService->GetAllResources(false, $this->user, $this->GetFilter());
/** @var ResourceDto $resource */
foreach ($resources as $resource)
{
$scheduleId = $resource->GetScheduleId();
$resourceId = $resource->GetResourceId();
$targetTimezone = $this->user->Timezone;
$reservations = $this->reservationService->GetReservations($dateRange, $scheduleId, $targetTimezone, $resourceId);
$layout = $this->scheduleService->GetDailyLayout($scheduleId, new ScheduleLayoutFactory($targetTimezone), $reservations);
foreach ($dateRange->Dates() as $date)
{
$slots = $layout->GetLayout($date, $resourceId);
/** @var IReservationSlot $slot */
for ($i = 0; $i < count($slots); $i++)
{
$opening = $this->GetSlot($i, $i, $slots, $requestedLength, $resource);
if ($opening != null)
{
$openings[] = $opening;
}
}
}
}
Log::Debug('Searching for available openings found %s times', count($openings));
$this->page->ShowOpenings($openings);
}
/**
* @param int $startIndex
* @param int $currentIndex
* @param IReservationSlot[] $slots
* @param DateDiff $requestedLength
* @param ResourceDto $resource
* @return AvailableOpeningView|null
*/
private function GetSlot($startIndex, $currentIndex, $slots, $requestedLength, $resource)
{
if ($currentIndex > count($slots))
{
return null;
}
$startSlot = $slots[$startIndex];
$currentSlot = $slots[$currentIndex];
if ($currentSlot == null || !$currentSlot->IsReservable() || $currentSlot->BeginDate()->LessThan(Date::Now()))
{
return null;
}
$length = DateDiff::BetweenDates($startSlot->BeginDate(), $currentSlot->EndDate());
if ($length->GreaterThanOrEqual($requestedLength))
{
return new AvailableOpeningView($resource, $startSlot->BeginDate(), $currentSlot->EndDate());
}
return $this->GetSlot($startIndex, $currentIndex + 1, $slots, $requestedLength, $resource);
}
/**
* @return DateRange
*/
private function GetSearchRange()
{
$range = $this->page->GetRequestedRange();
$timezone = $this->user->Timezone;
$today = Date::Now()->ToTimezone($timezone);
if ($range == 'tomorrow')
{
return new DateRange($today->AddDays(1)->GetDate(), $today->AddDays(2)->GetDate());
}
if ($range == 'thisweek')
{
$weekday = $today->Weekday();
$adjustedDays = (0 - $weekday);
if ($weekday < 0)
{
$adjustedDays = $adjustedDays - 7;
}
$startDate = $today->AddDays($adjustedDays)->GetDate();
return new DateRange($startDate, $startDate->AddDays(6));
}
if ($range == 'daterange')
{
$start = $this->page->GetRequestedStartDate();
$end = $this->page->GetRequestedEndDate();
if (empty($start))
{
$start = Date::Now()->ToTimezone($timezone);
}
if (empty($end))
{
$end = Date::Now()->ToTimezone($timezone)->AddDays(1);
}
return new DateRange(Date::Parse($start, $timezone), Date::Parse($end, $timezone));
}
return new DateRange($today->GetDate(), $today->AddDays(1)->GetDate());
}
/**
* @return DateDiff
*/
private function GetRequestedLength()
{
$hourSeconds = 3600 * $this->page->GetRequestedHours();
$minuteSeconds = 60 * $this->page->GetRequestedMinutes();
return new DateDiff($hourSeconds + $minuteSeconds);
}
/**
* @return ScheduleResourceFilter
*/
private function GetFilter()
{
return new ScheduleResourceFilter(null,
$this->page->GetResourceType(),
$this->page->GetMaxParticipants(),
$this->AsAttributeValues($this->page->GetResourceAttributeValues()),
$this->AsAttributeValues($this->page->GetResourceTypeAttributeValues()),
$this->page->GetResources());
}
/**
* @param $attributeFormElements AttributeFormElement[]
* @return AttributeValue[]
*/
private function AsAttributeValues($attributeFormElements)
{
$vals = array();
foreach ($attributeFormElements as $e)
{
if (!empty($e->Value) || (is_numeric($e->Value) && $e->Value == 0))
{
$vals[] = new AttributeValue($e->Id, $e->Value);
}
}
return $vals;
}
}
class AvailableOpeningView
{
/**
* @var ResourceDto
*/
private $resource;
/**
* @var Date
*/
private $start;
/**
* @var Date
*/
private $end;
public function __construct(ResourceDto $resource, Date $start, Date $end)
{
$this->resource = $resource;
$this->start = $start;
$this->end = $end;
}
/**
* @return ResourceDto
*/
public function Resource()
{
return $this->resource;
}
/**
* @return Date
*/
public function Start()
{
return $this->start;
}
/**
* @return Date
*/
public function End()
{
return $this->end;
}
/**
* @return bool
*/
public function SameDate()
{
return $this->Start()->DateEquals($this->End());
}
}