Total Complexity | 195 |
Total Lines | 1462 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
Complex classes like Recurrence often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Recurrence, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
11 | class Recurrence extends BaseRecurrence { |
||
12 | /* |
||
13 | * ABOUT TIMEZONES |
||
14 | * |
||
15 | * Timezones are rather complicated here so here are some rules to think about: |
||
16 | * |
||
17 | * - Timestamps in mapi-like properties (so in PT_SYSTIME properties) are always in GMT (including |
||
18 | * the 'basedate' property in exceptions !!) |
||
19 | * - Timestamps for recurrence (so start/end of recurrence, and basedates for exceptions (everything |
||
20 | * outside the 'basedate' property in the exception !!), and start/endtimes for exceptions) are |
||
21 | * always in LOCAL time. |
||
22 | */ |
||
23 | |||
24 | // All properties for a recipient that are interesting |
||
25 | public $recipprops = [ |
||
26 | PR_ENTRYID, |
||
27 | PR_SEARCH_KEY, |
||
28 | PR_DISPLAY_NAME, |
||
29 | PR_EMAIL_ADDRESS, |
||
30 | PR_RECIPIENT_ENTRYID, |
||
31 | PR_RECIPIENT_TYPE, |
||
32 | PR_SEND_INTERNET_ENCODING, |
||
33 | PR_SEND_RICH_INFO, |
||
34 | PR_RECIPIENT_DISPLAY_NAME, |
||
35 | PR_ADDRTYPE, |
||
36 | PR_DISPLAY_TYPE, |
||
37 | PR_DISPLAY_TYPE_EX, |
||
38 | PR_RECIPIENT_TRACKSTATUS, |
||
39 | PR_RECIPIENT_TRACKSTATUS_TIME, |
||
40 | PR_RECIPIENT_FLAGS, |
||
41 | PR_ROWID, |
||
42 | ]; |
||
43 | |||
44 | /** |
||
45 | * Constructor. |
||
46 | * |
||
47 | * @param resource $store MAPI Message Store Object |
||
48 | * @param mixed $message the MAPI (appointment) message |
||
49 | * @param array $proptags an associative array of protags and their values |
||
50 | */ |
||
51 | public function __construct($store, $message, $proptags = []) { |
||
52 | if (!empty($proptags)) { |
||
53 | $this->proptags = $proptags; |
||
54 | } |
||
55 | else { |
||
56 | $properties = []; |
||
57 | $properties["entryid"] = PR_ENTRYID; |
||
58 | $properties["parent_entryid"] = PR_PARENT_ENTRYID; |
||
59 | $properties["message_class"] = PR_MESSAGE_CLASS; |
||
60 | $properties["icon_index"] = PR_ICON_INDEX; |
||
61 | $properties["subject"] = PR_SUBJECT; |
||
62 | $properties["display_to"] = PR_DISPLAY_TO; |
||
63 | $properties["importance"] = PR_IMPORTANCE; |
||
64 | $properties["sensitivity"] = PR_SENSITIVITY; |
||
65 | $properties["startdate"] = "PT_SYSTIME:PSETID_Appointment:" . PidLidAppointmentStartWhole; |
||
66 | $properties["duedate"] = "PT_SYSTIME:PSETID_Appointment:" . PidLidAppointmentEndWhole; |
||
67 | $properties["recurring"] = "PT_BOOLEAN:PSETID_Appointment:" . PidLidRecurring; |
||
68 | $properties["recurring_data"] = "PT_BINARY:PSETID_Appointment:" . PidLidAppointmentRecur; |
||
69 | $properties["busystatus"] = "PT_LONG:PSETID_Appointment:" . PidLidBusyStatus; |
||
70 | $properties["label"] = "PT_LONG:PSETID_Appointment:0x8214"; |
||
71 | $properties["alldayevent"] = "PT_BOOLEAN:PSETID_Appointment:" . PidLidAppointmentSubType; |
||
72 | $properties["private"] = "PT_BOOLEAN:PSETID_Common:" . PidLidPrivate; |
||
73 | $properties["meeting"] = "PT_LONG:PSETID_Appointment:" . PidLidAppointmentStateFlags; |
||
74 | $properties["startdate_recurring"] = "PT_SYSTIME:PSETID_Appointment:" . PidLidClipStart; |
||
75 | $properties["enddate_recurring"] = "PT_SYSTIME:PSETID_Appointment:" . PidLidClipEnd; |
||
76 | $properties["recurring_pattern"] = "PT_STRING8:PSETID_Appointment:" . PidLidRecurrencePattern; |
||
77 | $properties["location"] = "PT_STRING8:PSETID_Appointment:" . PidLidLocation; |
||
78 | $properties["duration"] = "PT_LONG:PSETID_Appointment:" . PidLidAppointmentDuration; |
||
79 | $properties["responsestatus"] = "PT_LONG:PSETID_Appointment:0x8218"; |
||
80 | $properties["reminder"] = "PT_BOOLEAN:PSETID_Common:" . PidLidReminderSet; |
||
81 | $properties["reminder_minutes"] = "PT_LONG:PSETID_Common:" . PidLidReminderDelta; |
||
82 | $properties["recurrencetype"] = "PT_LONG:PSETID_Appointment:0x8231"; |
||
83 | $properties["contacts"] = "PT_MV_STRING8:PSETID_Common:0x853a"; |
||
84 | $properties["contacts_string"] = "PT_STRING8:PSETID_Common:0x8586"; |
||
85 | $properties["categories"] = "PT_MV_STRING8:PS_PUBLIC_STRINGS:Keywords"; |
||
86 | $properties["reminder_time"] = "PT_SYSTIME:PSETID_Common:" . PidLidReminderTime; |
||
87 | $properties["commonstart"] = "PT_SYSTIME:PSETID_Common:0x8516"; |
||
88 | $properties["commonend"] = "PT_SYSTIME:PSETID_Common:0x8517"; |
||
89 | $properties["basedate"] = "PT_SYSTIME:PSETID_Appointment:" . PidLidExceptionReplaceTime; |
||
90 | $properties["timezone_data"] = "PT_BINARY:PSETID_Appointment:" . PidLidTimeZoneStruct; |
||
91 | $properties["timezone"] = "PT_STRING8:PSETID_Appointment:" . PidLidTimeZoneDescription; |
||
92 | $properties["flagdueby"] = "PT_SYSTIME:PSETID_Common:" . PidLidReminderSignalTime; |
||
93 | $properties["side_effects"] = "PT_LONG:PSETID_Common:0x8510"; |
||
94 | $properties["hideattachments"] = "PT_BOOLEAN:PSETID_Common:" . PidLidSmartNoAttach; |
||
95 | |||
96 | $this->proptags = getPropIdsFromStrings($store, $properties); |
||
97 | } |
||
98 | |||
99 | parent::__construct($store, $message); |
||
100 | } |
||
101 | |||
102 | /** |
||
103 | * Create an exception. |
||
104 | * |
||
105 | * @param array $exception_props the exception properties (same properties as normal recurring items) |
||
106 | * @param mixed $base_date the base date of the exception (LOCAL time of non-exception occurrence) |
||
107 | * @param bool $delete true - delete occurrence, false - create new exception or modify existing |
||
108 | * @param array $exception_recips list of recipients |
||
109 | * @param mixed $copy_attach_from mapi message from which attachments should be copied |
||
110 | */ |
||
111 | public function createException($exception_props, $base_date, $delete = false, $exception_recips = [], $copy_attach_from = false): bool { |
||
112 | $baseday = $this->dayStartOf($base_date); |
||
113 | $basetime = $baseday + $this->recur["startocc"] * 60; |
||
114 | |||
115 | // Remove any pre-existing exception on this base date |
||
116 | if ($this->isException($baseday)) { |
||
117 | $this->deleteException($baseday); // note that deleting an exception is different from creating a deleted exception (deleting an occurrence). |
||
118 | } |
||
119 | |||
120 | if (!$delete) { |
||
121 | if (isset($exception_props[$this->proptags["startdate"]]) && !$this->isValidExceptionDate($base_date, $this->fromGMT($this->tz, $exception_props[$this->proptags["startdate"]]))) { |
||
122 | return false; |
||
123 | } |
||
124 | // Properties in the attachment are the properties of the base object, plus $exception_props plus the base date |
||
125 | foreach (["subject", "location", "label", "reminder", "reminder_minutes", "alldayevent", "busystatus"] as $propname) { |
||
126 | if (isset($this->messageprops[$this->proptags[$propname]])) { |
||
127 | $props[$this->proptags[$propname]] = $this->messageprops[$this->proptags[$propname]]; |
||
128 | } |
||
129 | } |
||
130 | |||
131 | $props[PR_MESSAGE_CLASS] = "IPM.OLE.CLASS.{00061055-0000-0000-C000-000000000046}"; |
||
132 | unset($exception_props[PR_MESSAGE_CLASS], $exception_props[PR_ICON_INDEX]); |
||
133 | |||
134 | $props = $exception_props + $props; |
||
135 | |||
136 | // Basedate in the exception attachment is the GMT time at which the original occurrence would have been |
||
137 | $props[$this->proptags["basedate"]] = $this->toGMT($this->tz, $basetime); |
||
138 | |||
139 | if (!isset($exception_props[$this->proptags["startdate"]])) { |
||
140 | $props[$this->proptags["startdate"]] = $this->getOccurrenceStart($base_date); |
||
141 | } |
||
142 | |||
143 | if (!isset($exception_props[$this->proptags["duedate"]])) { |
||
144 | $props[$this->proptags["duedate"]] = $this->getOccurrenceEnd($base_date); |
||
145 | } |
||
146 | |||
147 | // synchronize commonstart/commonend with startdate/duedate |
||
148 | if (isset($props[$this->proptags["startdate"]])) { |
||
149 | $props[$this->proptags["commonstart"]] = $props[$this->proptags["startdate"]]; |
||
150 | } |
||
151 | |||
152 | if (isset($props[$this->proptags["duedate"]])) { |
||
153 | $props[$this->proptags["commonend"]] = $props[$this->proptags["duedate"]]; |
||
154 | } |
||
155 | |||
156 | // Save the data into an attachment |
||
157 | $this->createExceptionAttachment($props, $exception_recips, $copy_attach_from); |
||
|
|||
158 | |||
159 | $changed_item = []; |
||
160 | |||
161 | $changed_item["basedate"] = $basetime; |
||
162 | $changed_item["start"] = $this->fromGMT($this->tz, $props[$this->proptags["startdate"]]); |
||
163 | $changed_item["end"] = $this->fromGMT($this->tz, $props[$this->proptags["duedate"]]); |
||
164 | |||
165 | if (array_key_exists($this->proptags["subject"], $exception_props)) { |
||
166 | $changed_item["subject"] = $exception_props[$this->proptags["subject"]]; |
||
167 | } |
||
168 | |||
169 | if (array_key_exists($this->proptags["location"], $exception_props)) { |
||
170 | $changed_item["location"] = $exception_props[$this->proptags["location"]]; |
||
171 | } |
||
172 | |||
173 | if (array_key_exists($this->proptags["label"], $exception_props)) { |
||
174 | $changed_item["label"] = $exception_props[$this->proptags["label"]]; |
||
175 | } |
||
176 | |||
177 | if (array_key_exists($this->proptags["reminder"], $exception_props)) { |
||
178 | $changed_item["reminder_set"] = $exception_props[$this->proptags["reminder"]]; |
||
179 | } |
||
180 | |||
181 | if (array_key_exists($this->proptags["reminder_minutes"], $exception_props)) { |
||
182 | $changed_item["remind_before"] = $exception_props[$this->proptags["reminder_minutes"]]; |
||
183 | } |
||
184 | |||
185 | if (array_key_exists($this->proptags["alldayevent"], $exception_props)) { |
||
186 | $changed_item["alldayevent"] = $exception_props[$this->proptags["alldayevent"]]; |
||
187 | } |
||
188 | |||
189 | if (array_key_exists($this->proptags["busystatus"], $exception_props)) { |
||
190 | $changed_item["busystatus"] = $exception_props[$this->proptags["busystatus"]]; |
||
191 | } |
||
192 | |||
193 | // Add the changed occurrence to the list |
||
194 | array_push($this->recur["changed_occurrences"], $changed_item); |
||
195 | } |
||
196 | else { |
||
197 | // Delete the occurrence by placing it in the deleted occurrences list |
||
198 | array_push($this->recur["deleted_occurrences"], $baseday); |
||
199 | } |
||
200 | |||
201 | // Turn on hideattachments, because the attachments in this item are the exceptions |
||
202 | mapi_setprops($this->message, [$this->proptags["hideattachments"] => true]); |
||
203 | |||
204 | // Save recurrence data to message |
||
205 | $this->saveRecurrence(); |
||
206 | |||
207 | return true; |
||
208 | } |
||
209 | |||
210 | /** |
||
211 | * Modifies an existing exception, but only updates the given properties |
||
212 | * NOTE: You can't remove properties from an exception, only add new ones. |
||
213 | * |
||
214 | * @param mixed $exception_props |
||
215 | * @param mixed $base_date |
||
216 | * @param mixed $exception_recips |
||
217 | * @param mixed $copy_attach_from |
||
218 | */ |
||
219 | public function modifyException($exception_props, $base_date, $exception_recips = [], $copy_attach_from = false): bool { |
||
220 | if (isset($exception_props[$this->proptags["startdate"]]) && !$this->isValidExceptionDate($base_date, $this->fromGMT($this->tz, $exception_props[$this->proptags["startdate"]]))) { |
||
221 | return false; |
||
222 | } |
||
223 | |||
224 | $baseday = $this->dayStartOf($base_date); |
||
225 | $extomodify = false; |
||
226 | |||
227 | for ($i = 0, $len = count($this->recur["changed_occurrences"]); $i < $len; ++$i) { |
||
228 | if ($this->isSameDay($this->recur["changed_occurrences"][$i]["basedate"], $baseday)) { |
||
229 | $extomodify = &$this->recur["changed_occurrences"][$i]; |
||
230 | } |
||
231 | } |
||
232 | |||
233 | if (!$extomodify) { |
||
234 | return false; |
||
235 | } |
||
236 | |||
237 | // remove basedate property as we want to preserve the old value |
||
238 | // client will send basedate with time part as zero, so discard that value |
||
239 | unset($exception_props[$this->proptags["basedate"]]); |
||
240 | |||
241 | if (array_key_exists($this->proptags["startdate"], $exception_props)) { |
||
242 | $extomodify["start"] = $this->fromGMT($this->tz, $exception_props[$this->proptags["startdate"]]); |
||
243 | } |
||
244 | |||
245 | if (array_key_exists($this->proptags["duedate"], $exception_props)) { |
||
246 | $extomodify["end"] = $this->fromGMT($this->tz, $exception_props[$this->proptags["duedate"]]); |
||
247 | } |
||
248 | |||
249 | if (array_key_exists($this->proptags["subject"], $exception_props)) { |
||
250 | $extomodify["subject"] = $exception_props[$this->proptags["subject"]]; |
||
251 | } |
||
252 | |||
253 | if (array_key_exists($this->proptags["location"], $exception_props)) { |
||
254 | $extomodify["location"] = $exception_props[$this->proptags["location"]]; |
||
255 | } |
||
256 | |||
257 | if (array_key_exists($this->proptags["label"], $exception_props)) { |
||
258 | $extomodify["label"] = $exception_props[$this->proptags["label"]]; |
||
259 | } |
||
260 | |||
261 | if (array_key_exists($this->proptags["reminder"], $exception_props)) { |
||
262 | $extomodify["reminder_set"] = $exception_props[$this->proptags["reminder"]]; |
||
263 | } |
||
264 | |||
265 | if (array_key_exists($this->proptags["reminder_minutes"], $exception_props)) { |
||
266 | $extomodify["remind_before"] = $exception_props[$this->proptags["reminder_minutes"]]; |
||
267 | } |
||
268 | |||
269 | if (array_key_exists($this->proptags["alldayevent"], $exception_props)) { |
||
270 | $extomodify["alldayevent"] = $exception_props[$this->proptags["alldayevent"]]; |
||
271 | } |
||
272 | |||
273 | if (array_key_exists($this->proptags["busystatus"], $exception_props)) { |
||
274 | $extomodify["busystatus"] = $exception_props[$this->proptags["busystatus"]]; |
||
275 | } |
||
276 | |||
277 | $exception_props[PR_MESSAGE_CLASS] = "IPM.OLE.CLASS.{00061055-0000-0000-C000-000000000046}"; |
||
278 | |||
279 | // synchronize commonstart/commonend with startdate/duedate |
||
280 | if (isset($exception_props[$this->proptags["startdate"]])) { |
||
281 | $exception_props[$this->proptags["commonstart"]] = $exception_props[$this->proptags["startdate"]]; |
||
282 | } |
||
283 | |||
284 | if (isset($exception_props[$this->proptags["duedate"]])) { |
||
285 | $exception_props[$this->proptags["commonend"]] = $exception_props[$this->proptags["duedate"]]; |
||
286 | } |
||
287 | |||
288 | $attach = $this->getExceptionAttachment($baseday); |
||
289 | if (!$attach) { |
||
290 | if ($copy_attach_from) { |
||
291 | $this->deleteExceptionAttachment($base_date); |
||
292 | $this->createException($exception_props, $base_date, false, $exception_recips, $copy_attach_from); |
||
293 | } |
||
294 | else { |
||
295 | $this->createExceptionAttachment($exception_props, $exception_recips, $copy_attach_from); |
||
296 | } |
||
297 | } |
||
298 | else { |
||
299 | $message = mapi_attach_openobj($attach, MAPI_MODIFY); |
||
300 | |||
301 | // Set exception properties on embedded message and save |
||
302 | mapi_setprops($message, $exception_props); |
||
303 | $this->setExceptionRecipients($message, $exception_recips, false); |
||
304 | mapi_savechanges($message); |
||
305 | |||
306 | // If a new start or duedate is provided, we update the properties 'PR_EXCEPTION_STARTTIME' and 'PR_EXCEPTION_ENDTIME' |
||
307 | // on the attachment which holds the embedded msg and save everything. |
||
308 | $props = []; |
||
309 | if (isset($exception_props[$this->proptags["startdate"]])) { |
||
310 | $props[PR_EXCEPTION_STARTTIME] = $this->fromGMT($this->tz, $exception_props[$this->proptags["startdate"]]); |
||
311 | } |
||
312 | if (isset($exception_props[$this->proptags["duedate"]])) { |
||
313 | $props[PR_EXCEPTION_ENDTIME] = $this->fromGMT($this->tz, $exception_props[$this->proptags["duedate"]]); |
||
314 | } |
||
315 | if (!empty($props)) { |
||
316 | mapi_setprops($attach, $props); |
||
317 | } |
||
318 | |||
319 | mapi_savechanges($attach); |
||
320 | } |
||
321 | |||
322 | // Save recurrence data to message |
||
323 | $this->saveRecurrence(); |
||
324 | |||
325 | return true; |
||
326 | } |
||
327 | |||
328 | // Checks to see if the following is true: |
||
329 | // 1) The exception to be created doesn't create two exceptions starting on one day (however, they can END on the same day by modifying duration) |
||
330 | // 2) The exception to be created doesn't 'jump' over another occurrence (which may be an exception itself!) |
||
331 | // |
||
332 | // Both $basedate and $start are in LOCAL time |
||
333 | public function isValidExceptionDate($basedate, $start): bool { |
||
334 | // The way we do this is to look at the days that we're 'moving' the item in the exception. Each |
||
335 | // of these days may only contain the item that we're modifying. Any other item violates the rules. |
||
336 | |||
337 | if ($this->isException($basedate)) { |
||
338 | // If we're modifying an exception, we want to look at the days that we're 'moving' compared to where |
||
339 | // the exception used to be. |
||
340 | $oldexception = $this->getChangeException($basedate); |
||
341 | $prevday = $this->dayStartOf($oldexception["start"]); |
||
342 | } |
||
343 | else { |
||
344 | // If its a new exception, we want to look at the original placement of this item. |
||
345 | $prevday = $basedate; |
||
346 | } |
||
347 | |||
348 | $startday = $this->dayStartOf($start); |
||
349 | |||
350 | // Get all the occurrences on the days between the basedate (may be reversed) |
||
351 | if ($prevday < $startday) { |
||
352 | $items = $this->getItems($this->toGMT($this->tz, $prevday), $this->toGMT($this->tz, $startday + 24 * 60 * 60)); |
||
353 | } |
||
354 | else { |
||
355 | $items = $this->getItems($this->toGMT($this->tz, $startday), $this->toGMT($this->tz, $prevday + 24 * 60 * 60)); |
||
356 | } |
||
357 | |||
358 | // There should now be exactly one item, namely the item that we are modifying. If there are any other items in the range, |
||
359 | // then we abort the change, since one of the rules has been violated. |
||
360 | return count($items) == 1; |
||
361 | } |
||
362 | |||
363 | /** |
||
364 | * Check to see if the exception proposed at a certain basedate is allowed concerning reminder times:. |
||
365 | * |
||
366 | * Both must be true: |
||
367 | * - reminder time of this item is not before the starttime of the previous recurring item |
||
368 | * - reminder time of the next item is not before the starttime of this item |
||
369 | * |
||
370 | * @param date $basedate the base date of the exception (LOCAL time of non-exception occurrence) |
||
371 | * @param string $reminderminutes reminder minutes which is set of the item |
||
372 | * @param date $startdate the startdate of the selected item |
||
373 | * |
||
374 | * @returns boolean if the reminder minutes value valid (FALSE if either of the rules above are FALSE) |
||
375 | */ |
||
376 | public function isValidReminderTime($basedate, $reminderminutes, $startdate): bool { |
||
407 | } |
||
408 | |||
409 | public function setRecurrence($tz, $recur): void { |
||
410 | // only reset timezone if specified |
||
411 | if ($tz) { |
||
412 | $this->tz = $tz; |
||
413 | } |
||
414 | |||
415 | $this->recur = $recur; |
||
416 | |||
417 | if (!isset($this->recur["changed_occurrences"])) { |
||
418 | $this->recur["changed_occurrences"] = []; |
||
419 | } |
||
420 | |||
421 | if (!isset($this->recur["deleted_occurrences"])) { |
||
422 | $this->recur["deleted_occurrences"] = []; |
||
423 | } |
||
424 | |||
425 | $this->deleteAttachments(); |
||
426 | $this->saveRecurrence(); |
||
427 | |||
428 | // if client has not set the recurring_pattern then we should generate it and save it |
||
429 | $messageProps = mapi_getprops($this->message, [$this->proptags["recurring_pattern"]]); |
||
430 | if (empty($messageProps[$this->proptags["recurring_pattern"]])) { |
||
431 | $this->saveRecurrencePattern(); |
||
432 | } |
||
433 | } |
||
434 | |||
435 | // Returns the start or end time of the occurrence on the given base date. |
||
436 | // This assumes that the basedate you supply is in LOCAL time |
||
437 | public function getOccurrenceStart($basedate) { |
||
438 | $daystart = $this->dayStartOf($basedate); |
||
439 | |||
440 | return $this->toGMT($this->tz, $daystart + $this->recur["startocc"] * 60); |
||
441 | } |
||
442 | |||
443 | public function getOccurrenceEnd($basedate) { |
||
444 | $daystart = $this->dayStartOf($basedate); |
||
445 | |||
446 | return $this->toGMT($this->tz, $daystart + $this->recur["endocc"] * 60); |
||
447 | } |
||
448 | |||
449 | /** |
||
450 | * This function returns the next remindertime starting from $timestamp |
||
451 | * When no next reminder exists, false is returned. |
||
452 | * |
||
453 | * Note: Before saving this new reminder time (when snoozing), you must check for |
||
454 | * yourself if this reminder time is earlier than your snooze time, else |
||
455 | * use your snooze time and not this reminder time. |
||
456 | * |
||
457 | * @param mixed $timestamp |
||
458 | */ |
||
459 | public function getNextReminderTime($timestamp) { |
||
488 | } |
||
489 | |||
490 | /** |
||
491 | * Note: Static function, more like a utility function. |
||
492 | * |
||
493 | * Gets all the items (including recurring items) in the specified calendar in the given timeframe. Items are |
||
494 | * included as a whole if they overlap the interval <$start, $end> (non-inclusive). This means that if the interval |
||
495 | * is <08:00 - 14:00>, the item [6:00 - 8:00> is NOT included, nor is the item [14:00 - 16:00>. However, the item |
||
496 | * [7:00 - 9:00> is included as a whole, and is NOT capped to [8:00 - 9:00>. |
||
497 | * |
||
498 | * @param $store resource The store in which the calendar resides |
||
499 | * @param $calendar resource The calendar to get the items from |
||
500 | * @param $viewstart int Timestamp of beginning of view window |
||
501 | * @param $viewend int Timestamp of end of view window |
||
502 | * @param $propsrequested array Array of properties to return |
||
503 | * |
||
504 | * @psalm-param list{0: mixed, 1: mixed, 2?: mixed} $propsrequested |
||
505 | */ |
||
506 | public static function getCalendarItems($store, $calendar, $viewstart, $viewend, $propsrequested) { |
||
508 | } |
||
509 | |||
510 | /* |
||
511 | * CODE BELOW THIS LINE IS FOR INTERNAL USE ONLY |
||
512 | ***************************************************************************************************************** |
||
513 | */ |
||
514 | |||
515 | /** |
||
516 | * Returns langified daily recurrence type string, whether it's singular or plural, |
||
517 | * recurrence interval. |
||
518 | */ |
||
519 | public function getI18RecTypeDaily(mixed $type, mixed $interval, bool $occSingleDayRank): array { |
||
542 | ]; |
||
543 | } |
||
544 | |||
545 | /** |
||
546 | * Returns langified weekly recurrence type string, whether it's singular or plural, |
||
547 | * recurrence interval. |
||
548 | */ |
||
549 | public function getI18RecTypeWeekly(mixed $type, mixed $interval, bool $occSingleDayRank): array { |
||
550 | if ($interval == 1) { |
||
551 | $type = dgettext('zarafa', 'week'); |
||
552 | $occSingleDayRank = true; |
||
553 | } |
||
554 | else { |
||
555 | $type = dgettext('zarafa', 'weeks'); |
||
556 | $occSingleDayRank = false; |
||
557 | } |
||
558 | $daysOfWeek = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; |
||
559 | $type .= sprintf(" %s ", dgettext('zarafa', 'on')); |
||
560 | |||
561 | for ($j = 0, $weekdays = (int) $this->recur["weekdays"]; $j < 7; ++$j) { |
||
562 | if ($weekdays & (1 << $j)) { |
||
563 | $type .= sprintf("%s, ", dgettext('zarafa', $daysOfWeek[$j])); |
||
564 | } |
||
565 | } |
||
566 | $type = trim($type, ", "); |
||
567 | if (($pos = strrpos($type, ",")) !== false) { |
||
568 | $type = substr_replace($type, " " . dgettext('zarafa', 'and'), $pos, 1); |
||
569 | } |
||
570 | |||
571 | return [ |
||
572 | 'type' => $type, |
||
573 | 'interval' => $interval, |
||
574 | 'occSingleDayRank' => boolval($occSingleDayRank), |
||
575 | ]; |
||
576 | } |
||
577 | |||
578 | /** |
||
579 | * Returns langified monthly recurrence type string, whether it's singular or plural, |
||
580 | * recurrence interval. |
||
581 | */ |
||
582 | public function getI18RecTypeMonthly(mixed $type, mixed $interval, bool $occSingleDayRank): array { |
||
583 | if ($interval == 1) { |
||
584 | $type = dgettext('zarafa', 'month'); |
||
585 | $occSingleDayRank = true; |
||
586 | } |
||
587 | else { |
||
588 | $type = dgettext('zarafa', 'months'); |
||
589 | $occSingleDayRank = false; |
||
590 | } |
||
591 | |||
592 | return [ |
||
593 | 'type' => $type, |
||
594 | 'interval' => $interval, |
||
595 | 'occSingleDayRank' => boolval($occSingleDayRank), |
||
596 | ]; |
||
597 | } |
||
598 | |||
599 | /** |
||
600 | * Returns langified yearly recurrence type string, whether it's singular or plural, |
||
601 | * recurrence interval. |
||
602 | */ |
||
603 | public function getI18RecTypeYearly(mixed $type, mixed $interval, bool $occSingleDayRank): array { |
||
604 | if ($interval <= 12) { |
||
605 | $interval = 1; |
||
606 | $type = dgettext('zarafa', 'year'); |
||
607 | $occSingleDayRank = true; |
||
608 | } |
||
609 | else { |
||
610 | $interval = $interval / 12; |
||
611 | $type = dgettext('zarafa', 'years'); |
||
612 | $occSingleDayRank = false; |
||
613 | } |
||
614 | |||
615 | return [ |
||
616 | 'type' => $type, |
||
617 | 'interval' => $interval, |
||
618 | 'occSingleDayRank' => boolval($occSingleDayRank), |
||
619 | ]; |
||
620 | } |
||
621 | |||
622 | /** |
||
623 | * Returns langified recurrence type string, whether it's singular or plural, |
||
624 | * recurrence interval. |
||
625 | */ |
||
626 | public function getI18nRecurrenceType(): array { |
||
627 | $type = $this->recur['type']; |
||
628 | $interval = $this->recur['everyn']; |
||
629 | $occSingleDayRank = false; |
||
630 | |||
631 | switch ($type) { |
||
632 | case 0x0A: // Daily |
||
633 | return $this->getI18RecTypeDaily($type, $interval, $occSingleDayRank); |
||
634 | |||
635 | case 0x0B: // Weekly |
||
636 | return $this->getI18RecTypeWeekly($type, $interval, $occSingleDayRank); |
||
637 | |||
638 | case 0x0C: // Monthly |
||
639 | return $this->getI18RecTypeMonthly($type, $interval, $occSingleDayRank); |
||
640 | |||
641 | case 0x0D: // Yearly |
||
642 | return $this->getI18RecTypeYearly($type, $interval, $occSingleDayRank); |
||
643 | } |
||
644 | |||
645 | return [ |
||
646 | 'type' => $type, |
||
647 | 'interval' => $interval, |
||
648 | 'occSingleDayRank' => boolval($occSingleDayRank), |
||
649 | ]; |
||
650 | } |
||
651 | |||
652 | /** |
||
653 | * Returns the start or end time of the first occurrence. |
||
654 | */ |
||
655 | public function getOccDate(bool $getStart = true): mixed { |
||
656 | return $getStart ? |
||
657 | (isset($this->recur['startocc']) ? |
||
658 | $this->recur['start'] + (((int) $this->recur['startocc']) * 60) : |
||
659 | $this->recur['start']) : |
||
660 | (isset($this->recur['endocc']) ? |
||
661 | $this->recur['start'] + (((int) $this->recur['endocc']) * 60) : |
||
662 | $this->recur['end']); |
||
663 | } |
||
664 | |||
665 | /** |
||
666 | * Returns langified occurrence time. |
||
667 | */ |
||
668 | public function getI18nTime(string $format, mixed $occTime): string { |
||
669 | return gmdate(dgettext('zarafa', $format), $occTime); |
||
670 | } |
||
671 | |||
672 | /** |
||
673 | * Returns langified recurrence pattern termination after the given date. |
||
674 | */ |
||
675 | public function getI18nRecTermDate( |
||
676 | bool $occTimeRange, |
||
677 | bool $occSingleDayRank, |
||
678 | mixed $type, |
||
679 | mixed $interval, |
||
680 | string $start, |
||
681 | string $end, |
||
682 | string $startocc, |
||
683 | string $endocc |
||
684 | ): string { |
||
685 | return $occTimeRange ? |
||
686 | ( |
||
687 | $occSingleDayRank ? |
||
688 | sprintf( |
||
689 | dgettext('zarafa', 'Occurs every %s effective %s until %s from %s to %s.'), |
||
690 | $type, |
||
691 | $start, |
||
692 | $end, |
||
693 | $startocc, |
||
694 | $endocc |
||
695 | ) : |
||
696 | sprintf( |
||
697 | dgettext('zarafa', 'Occurs every %s %s effective %s until %s from %s to %s.'), |
||
698 | $interval, |
||
699 | $type, |
||
700 | $start, |
||
701 | $end, |
||
702 | $startocc, |
||
703 | $endocc |
||
704 | ) |
||
705 | ) : |
||
706 | ( |
||
707 | $occSingleDayRank ? |
||
708 | sprintf( |
||
709 | dgettext('zarafa', 'Occurs every %s effective %s until %s.'), |
||
710 | $type, |
||
711 | $start, |
||
712 | $end |
||
713 | ) : |
||
714 | sprintf( |
||
715 | dgettext('zarafa', 'Occurs every %s %s effective %s until %s.'), |
||
716 | $interval, |
||
717 | $type, |
||
718 | $start, |
||
719 | $end |
||
720 | ) |
||
721 | ); |
||
722 | } |
||
723 | |||
724 | /** |
||
725 | * Returns langified recurrence pattern termination after a number of |
||
726 | * occurrences. |
||
727 | */ |
||
728 | public function getI18nRecTermNrOcc( |
||
793 | ) |
||
794 | ); |
||
795 | } |
||
796 | |||
797 | /** |
||
798 | * Returns langified recurrence pattern termination with no end date. |
||
799 | */ |
||
800 | public function getI18nRecTermNoEnd( |
||
801 | bool $occTimeRange, |
||
802 | bool $occSingleDayRank, |
||
803 | mixed $type, |
||
804 | mixed $interval, |
||
805 | string $start, |
||
806 | string $startocc, |
||
807 | string $endocc |
||
808 | ): string { |
||
809 | return $occTimeRange ? |
||
810 | ( |
||
811 | $occSingleDayRank ? |
||
812 | sprintf( |
||
813 | dgettext('zarafa', 'Occurs every %s effective %s from %s to %s.'), |
||
814 | $type, |
||
815 | $start, |
||
816 | $startocc, |
||
817 | $endocc |
||
818 | ) : |
||
819 | sprintf( |
||
820 | dgettext('zarafa', 'Occurs every %s %s effective %s from %s to %s.'), |
||
821 | $interval, |
||
822 | $type, |
||
823 | $start, |
||
824 | $startocc, |
||
825 | $endocc |
||
826 | ) |
||
827 | ) : |
||
828 | ( |
||
829 | $occSingleDayRank ? |
||
830 | sprintf( |
||
831 | dgettext('zarafa', 'Occurs every %s effective %s.'), |
||
832 | $type, |
||
833 | $start |
||
834 | ) : |
||
835 | sprintf( |
||
836 | dgettext('zarafa', 'Occurs every %s %s effective %s.'), |
||
837 | $interval, |
||
838 | $type, |
||
839 | $start |
||
840 | ) |
||
841 | ); |
||
842 | } |
||
843 | |||
844 | /** |
||
845 | * Generates and stores recurrence pattern string to recurring_pattern property. |
||
846 | */ |
||
847 | public function saveRecurrencePattern(): string { |
||
848 | // Start formatting the properties in such a way we can apply |
||
849 | // them directly into the recurrence pattern. |
||
850 | $pattern = ''; |
||
851 | $occTimeRange = $this->recur['startocc'] != 0 && $this->recur['endocc'] != 0; |
||
852 | |||
853 | [ |
||
854 | 'type' => $type, |
||
855 | 'interval' => $interval, |
||
856 | 'occSingleDayRank' => $occSingleDayRank |
||
857 | ] = $this->getI18nRecurrenceType(); |
||
858 | |||
859 | // get timings of the first occurrence |
||
860 | $firstoccstartdate = $this->getOccDate(); |
||
861 | $firstoccenddate = $this->getOccDate(false); |
||
862 | |||
863 | $start = $this->getI18nTime('d-m-Y', $firstoccstartdate); |
||
864 | $end = $this->getI18nTime('d-m-Y', $firstoccenddate); |
||
865 | $startocc = $this->getI18nTime('G:i', $firstoccstartdate); |
||
866 | $endocc = $this->getI18nTime('G:i', $firstoccenddate); |
||
867 | |||
868 | // Based on the properties, we need to generate the recurrence pattern string. |
||
869 | // This is obviously very easy since we can simply concatenate a bunch of strings, |
||
870 | // however this messes up translations for languages which order their words |
||
871 | // differently. |
||
872 | // To improve translation quality we create a series of default strings, in which |
||
873 | // we only have to fill in the correct variables. The base string is thus selected |
||
874 | // based on the available properties. |
||
875 | switch ($this->recur['term']) { |
||
876 | case 0x21: // After the given enddate |
||
877 | $pattern = $this->getI18nRecTermDate( |
||
878 | $occTimeRange, |
||
879 | boolval($occSingleDayRank), |
||
880 | $type, |
||
881 | $interval, |
||
882 | $start, |
||
883 | $end, |
||
884 | $startocc, |
||
885 | $endocc |
||
886 | ); |
||
887 | break; |
||
888 | |||
889 | case 0x22: // After a number of times |
||
890 | $pattern = $this->getI18nRecTermNrOcc( |
||
891 | $occTimeRange, |
||
892 | boolval($occSingleDayRank), |
||
893 | $type, |
||
894 | $interval, |
||
895 | $start, |
||
896 | $this->recur['numoccur'] ?? 0, |
||
897 | $startocc, |
||
898 | $endocc |
||
899 | ); |
||
900 | break; |
||
901 | |||
902 | case 0x23: // Never ends |
||
903 | $pattern = $this->getI18nRecTermNoEnd( |
||
904 | $occTimeRange, |
||
905 | boolval($occSingleDayRank), |
||
906 | $type, |
||
907 | $interval, |
||
908 | $start, |
||
909 | $startocc, |
||
910 | $endocc |
||
911 | ); |
||
912 | break; |
||
913 | |||
914 | default: |
||
915 | error_log(sprintf("Invalid recurrence pattern termination %d", $this->recur['term'])); |
||
916 | break; |
||
917 | } |
||
918 | |||
919 | if (!empty($pattern)) { |
||
920 | mapi_setprops($this->message, [$this->proptags["recurring_pattern"] => $pattern]); |
||
921 | } |
||
922 | |||
923 | return $pattern; |
||
924 | } |
||
925 | |||
926 | /* |
||
927 | * Remove an exception by base_date. This is the base date in local daystart time |
||
928 | */ |
||
929 | /** |
||
930 | * @param false|int $base_date |
||
931 | */ |
||
932 | public function deleteException($base_date): void { |
||
933 | // Remove all exceptions on $base_date from the deleted and changed occurrences lists |
||
934 | |||
935 | // Remove all items in $todelete from deleted_occurrences |
||
936 | $new = []; |
||
937 | |||
938 | foreach ($this->recur["deleted_occurrences"] as $entry) { |
||
939 | if ($entry != $base_date) { |
||
940 | $new[] = $entry; |
||
941 | } |
||
942 | } |
||
943 | $this->recur["deleted_occurrences"] = $new; |
||
944 | |||
945 | $new = []; |
||
946 | |||
947 | foreach ($this->recur["changed_occurrences"] as $entry) { |
||
948 | if (!$this->isSameDay($entry["basedate"], $base_date)) { |
||
949 | $new[] = $entry; |
||
950 | } |
||
951 | else { |
||
952 | $this->deleteExceptionAttachment($this->toGMT($this->tz, $base_date + $this->recur["startocc"] * 60)); |
||
953 | } |
||
954 | } |
||
955 | |||
956 | $this->recur["changed_occurrences"] = $new; |
||
957 | } |
||
958 | |||
959 | /** |
||
960 | * Function which saves the exception data in an attachment. |
||
961 | * |
||
962 | * @param array $exception_props the exception data (like any other MAPI appointment) |
||
963 | * @param array $exception_recips list of recipients |
||
964 | * @param mapi_message $copy_attach_from mapi message from which attachments should be copied |
||
965 | */ |
||
966 | public function createExceptionAttachment($exception_props, $exception_recips = [], $copy_attach_from = false): void { |
||
967 | // Create new attachment. |
||
968 | $attachment = mapi_message_createattach($this->message); |
||
969 | $props = []; |
||
970 | $props[PR_ATTACHMENT_FLAGS] = 2; |
||
971 | $props[PR_ATTACHMENT_HIDDEN] = true; |
||
972 | $props[PR_ATTACHMENT_LINKID] = 0; |
||
973 | $props[PR_ATTACH_FLAGS] = 0; |
||
974 | $props[PR_ATTACH_METHOD] = ATTACH_EMBEDDED_MSG; |
||
975 | $props[PR_DISPLAY_NAME] = "Exception"; |
||
976 | $props[PR_EXCEPTION_STARTTIME] = $this->fromGMT($this->tz, $exception_props[$this->proptags["startdate"]]); |
||
977 | $props[PR_EXCEPTION_ENDTIME] = $this->fromGMT($this->tz, $exception_props[$this->proptags["duedate"]]); |
||
978 | mapi_setprops($attachment, $props); |
||
979 | |||
980 | $imessage = mapi_attach_openobj($attachment, MAPI_CREATE | MAPI_MODIFY); |
||
981 | |||
982 | if ($copy_attach_from) { |
||
983 | $attachmentTable = mapi_message_getattachmenttable($copy_attach_from); |
||
984 | if ($attachmentTable) { |
||
985 | $attachments = mapi_table_queryallrows($attachmentTable, [PR_ATTACH_NUM, PR_ATTACH_SIZE, PR_ATTACH_LONG_FILENAME, PR_ATTACHMENT_HIDDEN, PR_DISPLAY_NAME, PR_ATTACH_METHOD]); |
||
986 | |||
987 | foreach ($attachments as $attach_props) { |
||
988 | $attach_old = mapi_message_openattach($copy_attach_from, (int) $attach_props[PR_ATTACH_NUM]); |
||
989 | $attach_newResourceMsg = mapi_message_createattach($imessage); |
||
990 | mapi_copyto($attach_old, [], [], $attach_newResourceMsg, 0); |
||
991 | mapi_savechanges($attach_newResourceMsg); |
||
992 | } |
||
993 | } |
||
994 | } |
||
995 | |||
996 | $props = $props + $exception_props; |
||
997 | |||
998 | // FIXME: the following piece of code is written to fix the creation |
||
999 | // of an exception. This is only a quickfix as it is not yet possible |
||
1000 | // to change an existing exception. |
||
1001 | // remove mv properties when needed |
||
1002 | foreach ($props as $propTag => $propVal) { |
||
1003 | if ((mapi_prop_type($propTag) & MV_FLAG) == MV_FLAG && is_null($propVal)) { |
||
1004 | unset($props[$propTag]); |
||
1005 | } |
||
1006 | } |
||
1007 | |||
1008 | mapi_setprops($imessage, $props); |
||
1009 | |||
1010 | $this->setExceptionRecipients($imessage, $exception_recips, true); |
||
1011 | |||
1012 | mapi_savechanges($imessage); |
||
1013 | mapi_savechanges($attachment); |
||
1014 | } |
||
1015 | |||
1016 | /** |
||
1017 | * Function which deletes the attachment of an exception. |
||
1018 | * |
||
1019 | * @param mixed $base_date base date of the attachment. Should be in GMT. The attachment |
||
1020 | * actually saves the real time of the original date, so we have |
||
1021 | * to check whether it's on the same day. |
||
1022 | */ |
||
1023 | public function deleteExceptionAttachment($base_date): void { |
||
1024 | $attachments = mapi_message_getattachmenttable($this->message); |
||
1025 | // Retrieve only exceptions which are stored as embedded messages |
||
1026 | $attach_res = [ |
||
1027 | RES_PROPERTY, |
||
1028 | [ |
||
1029 | RELOP => RELOP_EQ, |
||
1030 | ULPROPTAG => PR_ATTACH_METHOD, |
||
1031 | VALUE => [PR_ATTACH_METHOD => ATTACH_EMBEDDED_MSG], |
||
1032 | ], |
||
1033 | ]; |
||
1034 | $attachRows = mapi_table_queryallrows($attachments, [PR_ATTACH_NUM], $attach_res); |
||
1035 | |||
1036 | foreach ($attachRows as $attachRow) { |
||
1037 | $tempattach = mapi_message_openattach($this->message, $attachRow[PR_ATTACH_NUM]); |
||
1038 | $exception = mapi_attach_openobj($tempattach); |
||
1039 | |||
1040 | $data = mapi_message_getprops($exception, [$this->proptags["basedate"]]); |
||
1041 | |||
1042 | if ($this->dayStartOf($this->fromGMT($this->tz, $data[$this->proptags["basedate"]])) == $this->dayStartOf($base_date)) { |
||
1043 | mapi_message_deleteattach($this->message, $attachRow[PR_ATTACH_NUM]); |
||
1044 | } |
||
1045 | } |
||
1046 | } |
||
1047 | |||
1048 | /** |
||
1049 | * Function which deletes all attachments of a message. |
||
1050 | */ |
||
1051 | public function deleteAttachments(): void { |
||
1052 | $attachments = mapi_message_getattachmenttable($this->message); |
||
1053 | $attachTable = mapi_table_queryallrows($attachments, [PR_ATTACH_NUM, PR_ATTACHMENT_HIDDEN]); |
||
1054 | |||
1055 | foreach ($attachTable as $attachRow) { |
||
1056 | if (isset($attachRow[PR_ATTACHMENT_HIDDEN]) && $attachRow[PR_ATTACHMENT_HIDDEN]) { |
||
1057 | mapi_message_deleteattach($this->message, $attachRow[PR_ATTACH_NUM]); |
||
1058 | } |
||
1059 | } |
||
1060 | } |
||
1061 | |||
1062 | /** |
||
1063 | * Get an exception attachment based on its basedate. |
||
1064 | * |
||
1065 | * @param mixed $base_date |
||
1066 | */ |
||
1067 | public function getExceptionAttachment($base_date) { |
||
1100 | } |
||
1101 | |||
1102 | /** |
||
1103 | * processOccurrenceItem, adds an item to a list of occurrences, but only if the following criteria are met: |
||
1104 | * - The resulting occurrence (or exception) starts or ends in the interval <$start, $end> |
||
1105 | * - The occurrence isn't specified as a deleted occurrence. |
||
1106 | * |
||
1107 | * @param array $items reference to the array to be added to |
||
1108 | * @param int $start start of timeframe in GMT TIME |
||
1109 | * @param int $end end of timeframe in GMT TIME |
||
1110 | * @param int $basedate (hour/sec/min assumed to be 00:00:00) in LOCAL TIME OF THE OCCURRENCE |
||
1111 | * @param int $startocc start of occurrence since beginning of day in minutes |
||
1112 | * @param int $endocc end of occurrence since beginning of day in minutes |
||
1113 | * @param mixed $tz the timezone info for this occurrence ( applied to $basedate / $startocc / $endocc ) |
||
1114 | * @param bool $reminderonly If TRUE, only add the item if the reminder is set |
||
1115 | * |
||
1116 | * @return null|false |
||
1117 | */ |
||
1118 | public function processOccurrenceItem(&$items, $start, $end, $basedate, $startocc, $endocc, $tz, $reminderonly) { |
||
1119 | $exception = $this->isException($basedate); |
||
1120 | if ($exception) { |
||
1121 | return false; |
||
1122 | } |
||
1123 | $occstart = $basedate + $startocc * 60; |
||
1124 | $occend = $basedate + $endocc * 60; |
||
1125 | |||
1126 | // Convert to GMT |
||
1127 | $occstart = $this->toGMT($tz, $occstart); |
||
1128 | $occend = $this->toGMT($tz, $occend); |
||
1129 | |||
1130 | /** |
||
1131 | * FIRST PART: Check range criterium. Exact matches (eg when $occstart == $end), do NOT match since you cannot |
||
1132 | * see any part of the appointment. Partial overlaps DO match. |
||
1133 | * |
||
1134 | * SECOND PART: check if occurrence is not a zero duration occurrence which |
||
1135 | * starts at 00:00 and ends on 00:00. if it is so, then process |
||
1136 | * the occurrence and send it in response. |
||
1137 | */ |
||
1138 | if (($occstart >= $end || $occend <= $start) && !($occstart == $occend && $occstart == $start)) { |
||
1139 | return; |
||
1140 | } |
||
1141 | |||
1142 | // Properties for this occurrence are the same as the main object, |
||
1143 | // With these properties overridden |
||
1144 | $newitem = $this->messageprops; |
||
1145 | $newitem[$this->proptags["startdate"]] = $occstart; |
||
1146 | $newitem[$this->proptags["duedate"]] = $occend; |
||
1147 | $newitem[$this->proptags["commonstart"]] = $occstart; |
||
1148 | $newitem[$this->proptags["commonend"]] = $occend; |
||
1149 | $newitem["basedate"] = $basedate; |
||
1150 | |||
1151 | // If reminderonly is set, only add reminders |
||
1152 | if ($reminderonly && (!isset($newitem[$this->proptags["reminder"]]) || $newitem[$this->proptags["reminder"]] == false)) { |
||
1153 | return; |
||
1154 | } |
||
1155 | |||
1156 | $items[] = $newitem; |
||
1157 | } |
||
1158 | |||
1159 | /** |
||
1160 | * processExceptionItem, adds an all exception item to a list of occurrences, without any constraint on timeframe. |
||
1161 | * |
||
1162 | * @param array $items reference to the array to be added to |
||
1163 | * @param date $start start of timeframe in GMT TIME |
||
1164 | * @param date $end end of timeframe in GMT TIME |
||
1165 | */ |
||
1166 | public function processExceptionItems(&$items, $start, $end): void { |
||
1167 | $limit = 0; |
||
1168 | foreach ($this->recur["changed_occurrences"] as $exception) { |
||
1169 | // Convert to GMT |
||
1170 | $occstart = $this->toGMT($this->tz, $exception["start"]); |
||
1171 | $occend = $this->toGMT($this->tz, $exception["end"]); |
||
1172 | |||
1173 | // Check range criterium. Exact matches (eg when $occstart == $end), do NOT match since you cannot |
||
1174 | // see any part of the appointment. Partial overlaps DO match. |
||
1175 | if ($occstart >= $end || $occend <= $start) { |
||
1176 | continue; |
||
1177 | } |
||
1178 | |||
1179 | array_push($items, $this->getExceptionProperties($exception)); |
||
1180 | if (count($items) == $limit) { |
||
1181 | break; |
||
1182 | } |
||
1183 | } |
||
1184 | } |
||
1185 | |||
1186 | /** |
||
1187 | * Function which verifies if on the given date an exception, delete or change, occurs. |
||
1188 | * |
||
1189 | * @param mixed $basedate |
||
1190 | * |
||
1191 | * @return bool true - if an exception occurs on the given date, false - no exception occurs on the given date |
||
1192 | */ |
||
1193 | public function isException($basedate) { |
||
1203 | } |
||
1204 | |||
1205 | /** |
||
1206 | * Returns TRUE if there is a DELETE exception on the given base date. |
||
1207 | * |
||
1208 | * @param mixed $basedate |
||
1209 | */ |
||
1210 | public function isDeleteException($basedate): bool { |
||
1211 | // Check if the occurrence is deleted on the specified date |
||
1212 | foreach ($this->recur["deleted_occurrences"] as $deleted) { |
||
1213 | if ($this->isSameDay($deleted, $basedate)) { |
||
1214 | return true; |
||
1215 | } |
||
1216 | } |
||
1217 | |||
1218 | return false; |
||
1219 | } |
||
1220 | |||
1221 | /** |
||
1222 | * Returns the exception if there is a CHANGE exception on the given base date, or FALSE otherwise. |
||
1223 | * |
||
1224 | * @param mixed $basedate |
||
1225 | */ |
||
1226 | public function getChangeException($basedate) { |
||
1227 | // Check if the occurrence is modified on the specified date |
||
1228 | foreach ($this->recur["changed_occurrences"] as $changed) { |
||
1229 | if ($this->isSameDay($changed["basedate"], $basedate)) { |
||
1230 | return $changed; |
||
1231 | } |
||
1232 | } |
||
1233 | |||
1234 | return false; |
||
1235 | } |
||
1236 | |||
1237 | /** |
||
1238 | * Function to see if two dates are on the same day. |
||
1239 | * |
||
1240 | * @param mixed $date1 |
||
1241 | * @param mixed $date2 |
||
1242 | * |
||
1243 | * @return bool Returns TRUE when both dates are on the same day |
||
1244 | */ |
||
1245 | public function isSameDay($date1, $date2) { |
||
1250 | } |
||
1251 | |||
1252 | /** |
||
1253 | * Function which sets recipients for an exception. |
||
1254 | * |
||
1255 | * The $exception_recips can be provided in 2 ways: |
||
1256 | * - A delta which indicates which recipients must be added, removed or deleted. |
||
1257 | * - A complete array of the recipients which should be applied to the message. |
||
1258 | * |
||
1259 | * The first option is preferred as it will require less work to be executed. |
||
1260 | * |
||
1261 | * @param resource $message exception attachment of recurring item |
||
1262 | * @param array $exception_recips list of recipients |
||
1263 | * @param bool $copy_orig_recips True to copy all recipients which are on the original |
||
1264 | * message to the attachment by default. False if only the $exception_recips changes should |
||
1265 | * be applied. |
||
1266 | */ |
||
1267 | public function setExceptionRecipients($message, $exception_recips, $copy_orig_recips = true): void { |
||
1268 | if (isset($exception_recips['add']) || isset($exception_recips['remove']) || isset($exception_recips['modify'])) { |
||
1269 | $this->setDeltaExceptionRecipients($message, $exception_recips, $copy_orig_recips); |
||
1270 | } |
||
1271 | else { |
||
1272 | $this->setAllExceptionRecipients($message, $exception_recips); |
||
1273 | } |
||
1274 | } |
||
1275 | |||
1276 | /** |
||
1277 | * Function which applies the provided delta for recipients changes to the exception. |
||
1278 | * |
||
1279 | * The $exception_recips should be an array containing the following keys: |
||
1280 | * - "add": this contains an array of recipients which must be added |
||
1281 | * - "remove": This contains an array of recipients which must be removed |
||
1282 | * - "modify": This contains an array of recipients which must be modified |
||
1283 | * |
||
1284 | * @param mixed $exception |
||
1285 | * @param array $exception_recips list of recipients |
||
1286 | * @param bool $copy_orig_recips True to copy all recipients which are on the original |
||
1287 | * message to the attachment by default. False if only the $exception_recips changes should |
||
1288 | * be applied. |
||
1289 | */ |
||
1290 | public function setDeltaExceptionRecipients($exception, $exception_recips, $copy_orig_recips): void { |
||
1329 | } |
||
1330 | } |
||
1331 | |||
1332 | /** |
||
1333 | * Function which applies the provided recipients to the exception, also checks for deleted recipients. |
||
1334 | * |
||
1335 | * The $exception_recips should be an array containing all recipients which must be applied |
||
1336 | * to the exception. This will copy all recipients from the original message and then start filter |
||
1337 | * out all recipients which are not provided by the $exception_recips list. |
||
1338 | * |
||
1339 | * @param resource $message exception attachment of recurring item |
||
1340 | * @param array $exception_recips list of recipients |
||
1341 | */ |
||
1342 | public function setAllExceptionRecipients($message, $exception_recips): void { |
||
1343 | $deletedRecipients = []; |
||
1344 | $useMessageRecipients = false; |
||
1345 | |||
1346 | $recipientTable = mapi_message_getrecipienttable($message); |
||
1347 | $recipientRows = mapi_table_queryallrows($recipientTable, $this->recipprops); |
||
1348 | |||
1349 | if (empty($recipientRows)) { |
||
1350 | $useMessageRecipients = true; |
||
1351 | $recipientTable = mapi_message_getrecipienttable($this->message); |
||
1352 | $recipientRows = mapi_table_queryallrows($recipientTable, $this->recipprops); |
||
1353 | } |
||
1354 | |||
1355 | // Add organizer to meeting only if it is not organized. |
||
1356 | $msgprops = mapi_getprops($message, [PR_SENT_REPRESENTING_ENTRYID, PR_SENT_REPRESENTING_EMAIL_ADDRESS, PR_SENT_REPRESENTING_NAME, PR_SENT_REPRESENTING_ADDRTYPE, PR_SENT_REPRESENTING_SEARCH_KEY, $this->proptags['responsestatus']]); |
||
1357 | if (isset($msgprops[$this->proptags['responsestatus']]) && $msgprops[$this->proptags['responsestatus']] != olResponseOrganized) { |
||
1358 | $this->addOrganizer($msgprops, $exception_recips); |
||
1359 | } |
||
1360 | |||
1361 | if (!empty($exception_recips)) { |
||
1362 | foreach ($recipientRows as $recipient) { |
||
1363 | $found = false; |
||
1364 | foreach ($exception_recips as $excep_recip) { |
||
1365 | if (isset($recipient[PR_SEARCH_KEY], $excep_recip[PR_SEARCH_KEY]) && $recipient[PR_SEARCH_KEY] == $excep_recip[PR_SEARCH_KEY]) { |
||
1366 | $found = true; |
||
1367 | } |
||
1368 | } |
||
1369 | |||
1370 | if (!$found) { |
||
1371 | $foundInDeletedRecipients = false; |
||
1372 | // Look if the $recipient is in the list of deleted recipients |
||
1373 | if (!empty($deletedRecipients)) { |
||
1374 | foreach ($deletedRecipients as $recip) { |
||
1375 | if (isset($recipient[PR_SEARCH_KEY], $excep_recip[PR_SEARCH_KEY]) && $recip[PR_SEARCH_KEY] == $recipient[PR_SEARCH_KEY]) { |
||
1376 | $foundInDeletedRecipients = true; |
||
1377 | break; |
||
1378 | } |
||
1379 | } |
||
1380 | } |
||
1381 | |||
1382 | // If recipient is not in list of deleted recipient, add him |
||
1383 | if (!$foundInDeletedRecipients) { |
||
1384 | if (!isset($recipient[PR_RECIPIENT_FLAGS]) || $recipient[PR_RECIPIENT_FLAGS] != (recipReserved | recipExceptionalDeleted | recipSendable)) { |
||
1385 | $recipient[PR_RECIPIENT_FLAGS] = recipSendable | recipExceptionalDeleted; |
||
1386 | } |
||
1387 | else { |
||
1388 | $recipient[PR_RECIPIENT_FLAGS] = recipReserved | recipExceptionalDeleted | recipSendable; |
||
1389 | } |
||
1390 | $recipient[PR_RECIPIENT_TRACKSTATUS] = olRecipientTrackStatusNone; // No Response required |
||
1391 | $deletedRecipients[] = $recipient; |
||
1392 | } |
||
1393 | } |
||
1394 | |||
1395 | // When $message contains a non-empty recipienttable, we must delete the recipients |
||
1396 | // before re-adding them. However, when $message is doesn't contain any recipients, |
||
1397 | // we are using the recipient table of the original message ($this->message) |
||
1398 | // rather then $message. In that case, we don't need to remove the recipients |
||
1399 | // from the $message, as the recipient table is already empty, and |
||
1400 | // mapi_message_modifyrecipients() will throw an error. |
||
1401 | if ($useMessageRecipients === false) { |
||
1402 | mapi_message_modifyrecipients($message, MODRECIP_REMOVE, [$recipient]); |
||
1403 | } |
||
1404 | } |
||
1405 | $exception_recips = array_merge($exception_recips, $deletedRecipients); |
||
1406 | } |
||
1407 | else { |
||
1408 | $exception_recips = $recipientRows; |
||
1409 | } |
||
1410 | |||
1411 | if (!empty($exception_recips)) { |
||
1412 | // Set the new list of recipients on the exception message, this also removes the existing recipients |
||
1413 | mapi_message_modifyrecipients($message, MODRECIP_MODIFY, $exception_recips); |
||
1414 | } |
||
1415 | } |
||
1416 | |||
1417 | /** |
||
1418 | * Function returns basedates of all changed occurrences. |
||
1419 | * |
||
1420 | * @return array|false array( 0 => 123459321 ) |
||
1421 | * |
||
1422 | * @psalm-return false|list<mixed> |
||
1423 | */ |
||
1424 | public function getAllExceptions() { |
||
1435 | } |
||
1436 | |||
1437 | /** |
||
1438 | * Function which adds organizer to recipient list which is passed. |
||
1439 | * This function also checks if it has organizer. |
||
1440 | * |
||
1441 | * @param array $messageProps message properties |
||
1442 | * @param array $recipients recipients list of message |
||
1443 | * @param bool $isException true if we are processing recipient of exception |
||
1444 | */ |
||
1445 | public function addOrganizer($messageProps, &$recipients, $isException = false): void { |
||
1446 | $hasOrganizer = false; |
||
1473 | } |
||
1474 | } |
||
1786 |