-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCalendarSubscriptionPresenter.php
156 lines (135 loc) · 4.61 KB
/
CalendarSubscriptionPresenter.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
<?php
/**
* Copyright 2012-2017 Nick Korbel
* Copyright 2012-2014 Alois Schloegl
*
* 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 . 'Domain/Access/namespace.php');
require_once(ROOT_DIR . 'lib/Application/Schedule/namespace.php');
require_once(ROOT_DIR . 'lib/Application/Reservation/namespace.php');
class CalendarSubscriptionPresenter
{
/**
* @var ICalendarExportPage
*/
private $page;
/**
* @var IReservationViewRepository
*/
private $reservationViewRepository;
/**
* @var ICalendarExportValidator
*/
private $validator;
/**
* @var ICalendarSubscriptionService
*/
private $subscriptionService;
/**
* @var IPrivacyFilter
*/
private $privacyFilter;
public function __construct(ICalendarSubscriptionPage $page,
IReservationViewRepository $reservationViewRepository,
ICalendarExportValidator $validator,
ICalendarSubscriptionService $subscriptionService,
IPrivacyFilter $filter)
{
$this->page = $page;
$this->reservationViewRepository = $reservationViewRepository;
$this->validator = $validator;
$this->subscriptionService = $subscriptionService;
$this->privacyFilter = $filter;
}
public function PageLoad()
{
if (!$this->validator->IsValid())
{
return;
}
$userId = $this->page->GetUserId();
$scheduleId = $this->page->GetScheduleId();
$resourceId = $this->page->GetResourceId();
$accessoryIds = $this->page->GetAccessoryIds();
$resourceGroupId = $this->page->GetResourceGroupId();
$daysAgo = $this->page->GetPastNumberOfDays();
$daysAhead = $this->page->GetFutureNumberOfDays();
$daysAgo = empty($daysAgo) ? 7 : intval($daysAgo);
$daysAhead = empty($daysAhead) ? 365 : intval($daysAhead);
$weekAgo = Date::Now()->AddDays(-$daysAgo);
$nextYear = Date::Now()->AddDays($daysAhead);
$sid = null;
$rid = null;
$uid = null;
$aid = null;
$resourceIds = array();
$reservations = array();
$res = array();
$summaryFormat = Configuration::Instance()->GetSectionKey(ConfigSection::RESERVATION_LABELS, ConfigKeys::RESERVATION_LABELS_ICS_SUMMARY);
$reservationUserLevel = ReservationUserLevel::OWNER;
if (!empty($scheduleId))
{
$schedule = $this->subscriptionService->GetSchedule($scheduleId);
$sid = $schedule->GetId();
}
if (!empty($resourceId))
{
$resource = $this->subscriptionService->GetResource($resourceId);
$rid = $resource->GetId();
}
if (!empty($accessoryIds))
{
## No transformation is implemented. It is assumed the accessoryIds is provided as AccessoryName
## filter is defined by LIKE "PATTERN%"
$aid = $accessoryIds;
}
if (!empty($userId))
{
$user = $this->subscriptionService->GetUser($userId);
$uid = $user->Id();
$reservationUserLevel = ReservationUserLevel::ALL;
$summaryFormat = Configuration::Instance()->GetSectionKey(ConfigSection::RESERVATION_LABELS, ConfigKeys::RESERVATION_LABELS_MY_ICS_SUMMARY);
}
if (!empty($resourceGroupId))
{
$resourceIds = $this->subscriptionService->GetResourcesInGroup($resourceGroupId);
}
if (!empty($uid) || !empty($sid) || !empty($rid) || !empty($resourceIds))
{
$res = $this->reservationViewRepository->GetReservations($weekAgo, $nextYear, $uid, $reservationUserLevel, $sid, $rid);
}
elseif (!empty($aid))
{
throw new Exception('need to give an accessory a public id, allow subscriptions');
$res = $this->reservationViewRepository->GetAccessoryReservationList($weekAgo, $nextYear, $accessoryIds);
}
Log::Debug('Loading calendar subscription for userId %s, scheduleId %s, resourceId %s. Found %s reservations.',
$userId, $scheduleId, $resourceId, count($res));
$session = ServiceLocator::GetServer()->GetUserSession();
foreach ($res as $r)
{
if (empty($resourceIds) || in_array($r->ResourceId, $resourceIds))
{
$reservations[] = new iCalendarReservationView($r,
$session,
$this->privacyFilter,
$summaryFormat);
}
}
$this->page->SetReservations($reservations);
}
}