Total Complexity | 348 |
Total Lines | 2009 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
Complex classes like BaseRecurrence 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 BaseRecurrence, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
13 | abstract class BaseRecurrence { |
||
14 | /** |
||
15 | * @var resource Mapi Message Store (may be null if readonly) |
||
16 | */ |
||
17 | public $store; |
||
18 | |||
19 | /** |
||
20 | * @var mixed Mapi Message (may be null if readonly) |
||
21 | */ |
||
22 | public $message; |
||
23 | |||
24 | /** |
||
25 | * @var array Message Properties |
||
26 | */ |
||
27 | public $messageprops; |
||
28 | |||
29 | /** |
||
30 | * @var array list of property tags |
||
31 | */ |
||
32 | public $proptags; |
||
33 | |||
34 | /** |
||
35 | * @var mixed recurrence data of this calendar item |
||
36 | */ |
||
37 | public $recur; |
||
38 | |||
39 | /** |
||
40 | * @var mixed Timezone data of this calendar item |
||
41 | */ |
||
42 | public $tz; |
||
43 | |||
44 | /** |
||
45 | * Constructor. |
||
46 | * |
||
47 | * @param resource $store MAPI Message Store Object |
||
48 | * @param mixed $message the MAPI (appointment) message |
||
49 | * |
||
50 | */ |
||
51 | public function __construct($store, $message) { |
||
72 | } |
||
73 | } |
||
74 | |||
75 | public function getRecurrence() { |
||
77 | } |
||
78 | |||
79 | public function getFullRecurrenceBlob() { |
||
92 | } |
||
93 | } |
||
94 | |||
95 | /** |
||
96 | * Function for parsing the Recurrence value of a Calendar item. |
||
97 | * |
||
98 | * Retrieve it from Named Property 0x8216 as a PT_BINARY and pass the |
||
99 | * data to this function |
||
100 | * |
||
101 | * Returns a structure containing the data: |
||
102 | * |
||
103 | * type - type of recurrence: day=10, week=11, month=12, year=13 |
||
104 | * subtype - type of day recurrence: 2=monthday (ie 21st day of month), 3=nday'th weekdays (ie. 2nd Tuesday and Wednesday) |
||
105 | * start - unix timestamp of first occurrence |
||
106 | * end - unix timestamp of last occurrence (up to and including), so when start == end -> occurrences = 1 |
||
107 | * numoccur - occurrences (may be very large when there is no end data) |
||
108 | * |
||
109 | * then, for each type: |
||
110 | * |
||
111 | * Daily: |
||
112 | * everyn - every [everyn] days in minutes |
||
113 | * regen - regenerating event (like tasks) |
||
114 | * |
||
115 | * Weekly: |
||
116 | * everyn - every [everyn] weeks in weeks |
||
117 | * regen - regenerating event (like tasks) |
||
118 | * weekdays - bitmask of week days, where each bit is one weekday (weekdays & 1 = Sunday, weekdays & 2 = Monday, etc) |
||
119 | * |
||
120 | * Monthly: |
||
121 | * everyn - every [everyn] months |
||
122 | * regen - regenerating event (like tasks) |
||
123 | * |
||
124 | * subtype 2: |
||
125 | * monthday - on day [monthday] of the month |
||
126 | * |
||
127 | * subtype 3: |
||
128 | * weekdays - bitmask of week days, where each bit is one weekday (weekdays & 1 = Sunday, weekdays & 2 = Monday, etc) |
||
129 | * nday - on [nday]'th [weekdays] of the month |
||
130 | * |
||
131 | * Yearly: |
||
132 | * everyn - every [everyn] months (12, 24, 36, ...) |
||
133 | * month - in month [month] (although the month is encoded in minutes since the startning of the year ........) |
||
134 | * regen - regenerating event (like tasks) |
||
135 | * |
||
136 | * subtype 2: |
||
137 | * monthday - on day [monthday] of the month |
||
138 | * |
||
139 | * subtype 3: |
||
140 | * weekdays - bitmask of week days, where each bit is one weekday (weekdays & 1 = Sunday, weekdays & 2 = Monday, etc) |
||
141 | * nday - on [nday]'th [weekdays] of the month [month] |
||
142 | * |
||
143 | * @param string $rdata Binary string |
||
144 | * |
||
145 | * @return array recurrence data |
||
146 | */ |
||
147 | public function parseRecurrence($rdata) { |
||
148 | if (strlen($rdata) < 10) { |
||
149 | return; |
||
150 | } |
||
151 | |||
152 | $ret = []; |
||
153 | $ret["changed_occurrences"] = []; |
||
154 | $ret["deleted_occurrences"] = []; |
||
155 | |||
156 | $data = unpack("Vconst1/Crtype/Cconst2/Vrtype2", $rdata); |
||
157 | |||
158 | $ret["type"] = $data["rtype"]; |
||
159 | $ret["subtype"] = $data["rtype2"]; |
||
160 | $rdata = substr($rdata, 10); |
||
161 | |||
162 | switch ($data["rtype"]) { |
||
163 | case 0x0A: |
||
164 | // Daily |
||
165 | if (strlen($rdata) < 12) { |
||
166 | return $ret; |
||
167 | } |
||
168 | |||
169 | $data = unpack("Vunknown/Veveryn/Vregen", $rdata); |
||
170 | $ret["everyn"] = $data["everyn"]; |
||
171 | $ret["regen"] = $data["regen"]; |
||
172 | |||
173 | switch ($ret["subtype"]) { |
||
174 | case 0: |
||
175 | $rdata = substr($rdata, 12); |
||
176 | break; |
||
177 | |||
178 | case 1: |
||
179 | $rdata = substr($rdata, 16); |
||
180 | break; |
||
181 | } |
||
182 | |||
183 | break; |
||
184 | |||
185 | case 0x0B: |
||
186 | // Weekly |
||
187 | if (strlen($rdata) < 16) { |
||
188 | return $ret; |
||
189 | } |
||
190 | |||
191 | $data = unpack("Vconst1/Veveryn/Vregen", $rdata); |
||
192 | $rdata = substr($rdata, 12); |
||
193 | |||
194 | $ret["everyn"] = $data["everyn"]; |
||
195 | $ret["regen"] = $data["regen"]; |
||
196 | $ret["weekdays"] = 0; |
||
197 | |||
198 | if ($data["regen"] == 0) { |
||
199 | $data = unpack("Vweekdays", $rdata); |
||
200 | $rdata = substr($rdata, 4); |
||
201 | |||
202 | $ret["weekdays"] = $data["weekdays"]; |
||
203 | } |
||
204 | break; |
||
205 | |||
206 | case 0x0C: |
||
207 | // Monthly |
||
208 | if (strlen($rdata) < 16) { |
||
209 | return $ret; |
||
210 | } |
||
211 | |||
212 | $data = unpack("Vconst1/Veveryn/Vregen/Vmonthday", $rdata); |
||
213 | |||
214 | $ret["everyn"] = $data["everyn"]; |
||
215 | $ret["regen"] = $data["regen"]; |
||
216 | |||
217 | if ($ret["subtype"] == 3) { |
||
218 | $ret["weekdays"] = $data["monthday"]; |
||
219 | } |
||
220 | else { |
||
221 | $ret["monthday"] = $data["monthday"]; |
||
222 | } |
||
223 | |||
224 | $rdata = substr($rdata, 16); |
||
225 | |||
226 | if ($ret["subtype"] == 3) { |
||
227 | $data = unpack("Vnday", $rdata); |
||
228 | $ret["nday"] = $data["nday"]; |
||
229 | $rdata = substr($rdata, 4); |
||
230 | } |
||
231 | break; |
||
232 | |||
233 | case 0x0D: |
||
234 | // Yearly |
||
235 | if (strlen($rdata) < 16) { |
||
236 | return $ret; |
||
237 | } |
||
238 | |||
239 | $data = unpack("Vmonth/Veveryn/Vregen/Vmonthday", $rdata); |
||
240 | |||
241 | $ret["month"] = $data["month"]; |
||
242 | $ret["everyn"] = $data["everyn"]; |
||
243 | $ret["regen"] = $data["regen"]; |
||
244 | |||
245 | if ($ret["subtype"] == 3) { |
||
246 | $ret["weekdays"] = $data["monthday"]; |
||
247 | } |
||
248 | else { |
||
249 | $ret["monthday"] = $data["monthday"]; |
||
250 | } |
||
251 | |||
252 | $rdata = substr($rdata, 16); |
||
253 | |||
254 | if ($ret["subtype"] == 3) { |
||
255 | $data = unpack("Vnday", $rdata); |
||
256 | $ret["nday"] = $data["nday"]; |
||
257 | $rdata = substr($rdata, 4); |
||
258 | } |
||
259 | break; |
||
260 | } |
||
261 | |||
262 | if (strlen($rdata) < 16) { |
||
263 | return $ret; |
||
264 | } |
||
265 | |||
266 | $data = unpack("Cterm/C3const1/Vnumoccur/Vconst2/Vnumexcept", $rdata); |
||
267 | |||
268 | $rdata = substr($rdata, 16); |
||
269 | |||
270 | $ret["term"] = $data["term"]; |
||
271 | $ret["numoccur"] = $data["numoccur"]; |
||
272 | $ret["numexcept"] = $data["numexcept"]; |
||
273 | |||
274 | // exc_base_dates are *all* the base dates that have been either deleted or modified |
||
275 | $exc_base_dates = []; |
||
276 | for ($i = 0; $i < $ret["numexcept"]; ++$i) { |
||
277 | if (strlen($rdata) < 4) { |
||
278 | // We shouldn't arrive here, because that implies |
||
279 | // numexcept does not match the amount of data |
||
280 | // which is available for the exceptions. |
||
281 | return $ret; |
||
282 | } |
||
283 | $data = unpack("Vbasedate", $rdata); |
||
284 | $rdata = substr($rdata, 4); |
||
285 | $exc_base_dates[] = $this->recurDataToUnixData($data["basedate"]); |
||
286 | } |
||
287 | |||
288 | if (strlen($rdata) < 4) { |
||
289 | return $ret; |
||
290 | } |
||
291 | |||
292 | $data = unpack("Vnumexceptmod", $rdata); |
||
293 | $rdata = substr($rdata, 4); |
||
294 | |||
295 | $ret["numexceptmod"] = $data["numexceptmod"]; |
||
296 | |||
297 | // exc_changed are the base dates of *modified* occurrences. exactly what is modified |
||
298 | // is in the attachments *and* in the data further down this function. |
||
299 | $exc_changed = []; |
||
300 | for ($i = 0; $i < $ret["numexceptmod"]; ++$i) { |
||
301 | if (strlen($rdata) < 4) { |
||
302 | // We shouldn't arrive here, because that implies |
||
303 | // numexceptmod does not match the amount of data |
||
304 | // which is available for the exceptions. |
||
305 | return $ret; |
||
306 | } |
||
307 | $data = unpack("Vstartdate", $rdata); |
||
308 | $rdata = substr($rdata, 4); |
||
309 | $exc_changed[] = $this->recurDataToUnixData($data["startdate"]); |
||
310 | } |
||
311 | |||
312 | if (strlen($rdata) < 8) { |
||
313 | return $ret; |
||
314 | } |
||
315 | |||
316 | $data = unpack("Vstart/Vend", $rdata); |
||
317 | $rdata = substr($rdata, 8); |
||
318 | |||
319 | $ret["start"] = $this->recurDataToUnixData($data["start"]); |
||
320 | $ret["end"] = $this->recurDataToUnixData($data["end"]); |
||
321 | |||
322 | // this is where task recurrence stop |
||
323 | if (strlen($rdata) < 16) { |
||
324 | return $ret; |
||
325 | } |
||
326 | |||
327 | $data = unpack("Vreaderversion/Vwriterversion/Vstartmin/Vendmin", $rdata); |
||
328 | $rdata = substr($rdata, 16); |
||
329 | |||
330 | $ret["startocc"] = $data["startmin"]; |
||
331 | $ret["endocc"] = $data["endmin"]; |
||
332 | $writerversion = $data["writerversion"]; |
||
333 | |||
334 | $data = unpack("vnumber", $rdata); |
||
335 | $rdata = substr($rdata, 2); |
||
336 | |||
337 | $nexceptions = $data["number"]; |
||
338 | $exc_changed_details = []; |
||
339 | |||
340 | // Parse n modified exceptions |
||
341 | for ($i = 0; $i < $nexceptions; ++$i) { |
||
342 | $item = []; |
||
343 | |||
344 | // Get exception startdate, enddate and basedate (the date at which the occurrence would have started) |
||
345 | $data = unpack("Vstartdate/Venddate/Vbasedate", $rdata); |
||
346 | $rdata = substr($rdata, 12); |
||
347 | |||
348 | // Convert recurtimestamp to unix timestamp |
||
349 | $startdate = $this->recurDataToUnixData($data["startdate"]); |
||
350 | $enddate = $this->recurDataToUnixData($data["enddate"]); |
||
351 | $basedate = $this->recurDataToUnixData($data["basedate"]); |
||
352 | |||
353 | // Set the right properties |
||
354 | $item["basedate"] = $this->dayStartOf($basedate); |
||
355 | $item["start"] = $startdate; |
||
356 | $item["end"] = $enddate; |
||
357 | |||
358 | $data = unpack("vbitmask", $rdata); |
||
359 | $rdata = substr($rdata, 2); |
||
360 | $item["bitmask"] = $data["bitmask"]; // save bitmask for extended exceptions |
||
361 | |||
362 | // Bitmask to verify what properties are changed |
||
363 | $bitmask = $data["bitmask"]; |
||
364 | |||
365 | // ARO_SUBJECT: 0x0001 |
||
366 | // Look for field: SubjectLength (2b), SubjectLength2 (2b) and Subject |
||
367 | if (($bitmask & (1 << 0))) { |
||
368 | $data = unpack("vnull_length/vlength", $rdata); |
||
369 | $rdata = substr($rdata, 4); |
||
370 | |||
371 | $length = $data["length"]; |
||
372 | $item["subject"] = ""; // Normalized subject |
||
373 | for ($j = 0; $j < $length && strlen($rdata); ++$j) { |
||
374 | $data = unpack("Cchar", $rdata); |
||
375 | $rdata = substr($rdata, 1); |
||
376 | |||
377 | $item["subject"] .= chr($data["char"]); |
||
378 | } |
||
379 | } |
||
380 | |||
381 | // ARO_MEETINGTYPE: 0x0002 |
||
382 | if (($bitmask & (1 << 1))) { |
||
383 | $rdata = substr($rdata, 4); |
||
384 | // Attendees modified: no data here (only in attachment) |
||
385 | } |
||
386 | |||
387 | // ARO_REMINDERDELTA: 0x0004 |
||
388 | // Look for field: ReminderDelta (4b) |
||
389 | if (($bitmask & (1 << 2))) { |
||
390 | $data = unpack("Vremind_before", $rdata); |
||
391 | $rdata = substr($rdata, 4); |
||
392 | |||
393 | $item["remind_before"] = $data["remind_before"]; |
||
394 | } |
||
395 | |||
396 | // ARO_REMINDER: 0x0008 |
||
397 | // Look field: ReminderSet (4b) |
||
398 | if (($bitmask & (1 << 3))) { |
||
399 | $data = unpack("Vreminder_set", $rdata); |
||
400 | $rdata = substr($rdata, 4); |
||
401 | |||
402 | $item["reminder_set"] = $data["reminder_set"]; |
||
403 | } |
||
404 | |||
405 | // ARO_LOCATION: 0x0010 |
||
406 | // Look for fields: LocationLength (2b), LocationLength2 (2b) and Location |
||
407 | // Similar to ARO_SUBJECT above. |
||
408 | if (($bitmask & (1 << 4))) { |
||
409 | $data = unpack("vnull_length/vlength", $rdata); |
||
410 | $rdata = substr($rdata, 4); |
||
411 | |||
412 | $item["location"] = ""; |
||
413 | |||
414 | $length = $data["length"]; |
||
415 | $data = substr($rdata, 0, $length); |
||
416 | $rdata = substr($rdata, $length); |
||
417 | |||
418 | $item["location"] .= $data; |
||
419 | } |
||
420 | |||
421 | // ARO_BUSYSTATUS: 0x0020 |
||
422 | // Look for field: BusyStatus (4b) |
||
423 | if (($bitmask & (1 << 5))) { |
||
424 | $data = unpack("Vbusystatus", $rdata); |
||
425 | $rdata = substr($rdata, 4); |
||
426 | |||
427 | $item["busystatus"] = $data["busystatus"]; |
||
428 | } |
||
429 | |||
430 | // ARO_ATTACHMENT: 0x0040 |
||
431 | if (($bitmask & (1 << 6))) { |
||
432 | // no data: RESERVED |
||
433 | $rdata = substr($rdata, 4); |
||
434 | } |
||
435 | |||
436 | // ARO_SUBTYPE: 0x0080 |
||
437 | // Look for field: SubType (4b). Determines whether it is an allday event. |
||
438 | if (($bitmask & (1 << 7))) { |
||
439 | $data = unpack("Vallday", $rdata); |
||
440 | $rdata = substr($rdata, 4); |
||
441 | |||
442 | $item["alldayevent"] = $data["allday"]; |
||
443 | } |
||
444 | |||
445 | // ARO_APPTCOLOR: 0x0100 |
||
446 | // Look for field: AppointmentColor (4b) |
||
447 | if (($bitmask & (1 << 8))) { |
||
448 | $data = unpack("Vlabel", $rdata); |
||
449 | $rdata = substr($rdata, 4); |
||
450 | |||
451 | $item["label"] = $data["label"]; |
||
452 | } |
||
453 | |||
454 | // ARO_EXCEPTIONAL_BODY: 0x0200 |
||
455 | if (($bitmask & (1 << 9))) { |
||
456 | // Notes or Attachments modified: no data here (only in attachment) |
||
457 | } |
||
458 | |||
459 | array_push($exc_changed_details, $item); |
||
460 | } |
||
461 | |||
462 | /** |
||
463 | * We now have $exc_changed, $exc_base_dates and $exc_changed_details |
||
464 | * We will ignore $exc_changed, as this information is available in $exc_changed_details |
||
465 | * also. If an item is in $exc_base_dates and NOT in $exc_changed_details, then the item |
||
466 | * has been deleted. |
||
467 | */ |
||
468 | |||
469 | // Find deleted occurrences |
||
470 | $deleted_occurrences = []; |
||
471 | |||
472 | foreach ($exc_base_dates as $base_date) { |
||
473 | $found = false; |
||
474 | |||
475 | foreach ($exc_changed_details as $details) { |
||
476 | if ($details["basedate"] == $base_date) { |
||
477 | $found = true; |
||
478 | break; |
||
479 | } |
||
480 | } |
||
481 | if (!$found) { |
||
482 | // item was not in exc_changed_details, so it must be deleted |
||
483 | $deleted_occurrences[] = $base_date; |
||
484 | } |
||
485 | } |
||
486 | |||
487 | $ret["deleted_occurrences"] = $deleted_occurrences; |
||
488 | $ret["changed_occurrences"] = $exc_changed_details; |
||
489 | |||
490 | // enough data for normal exception (no extended data) |
||
491 | if (strlen($rdata) < 16) { |
||
492 | return $ret; |
||
493 | } |
||
494 | |||
495 | $data = unpack("Vreservedsize", $rdata); |
||
496 | $rdata = substr($rdata, 4 + $data["reservedsize"]); |
||
497 | |||
498 | for ($i = 0; $i < $nexceptions; ++$i) { |
||
499 | // subject and location in ucs-2 to utf-8 |
||
500 | if ($writerversion >= 0x3009) { |
||
501 | $data = unpack("Vsize/Vvalue", $rdata); // size includes sizeof(value)==4 |
||
502 | $rdata = substr($rdata, 4 + $data["size"]); |
||
503 | } |
||
504 | |||
505 | $data = unpack("Vreservedsize", $rdata); |
||
506 | $rdata = substr($rdata, 4 + $data["reservedsize"]); |
||
507 | |||
508 | // ARO_SUBJECT(0x01) | ARO_LOCATION(0x10) |
||
509 | if ($exc_changed_details[$i]["bitmask"] & 0x11) { |
||
510 | $data = unpack("Vstart/Vend/Vorig", $rdata); |
||
511 | $rdata = substr($rdata, 4 * 3); |
||
512 | |||
513 | $exc_changed_details[$i]["ex_start_datetime"] = $data["start"]; |
||
514 | $exc_changed_details[$i]["ex_end_datetime"] = $data["end"]; |
||
515 | $exc_changed_details[$i]["ex_orig_date"] = $data["orig"]; |
||
516 | } |
||
517 | |||
518 | // ARO_SUBJECT |
||
519 | if ($exc_changed_details[$i]["bitmask"] & 0x01) { |
||
520 | // decode ucs2 string to utf-8 |
||
521 | $data = unpack("vlength", $rdata); |
||
522 | $rdata = substr($rdata, 2); |
||
523 | $length = $data["length"]; |
||
524 | $data = substr($rdata, 0, $length * 2); |
||
525 | $rdata = substr($rdata, $length * 2); |
||
526 | $subject = iconv("UCS-2LE", "UTF-8", $data); |
||
527 | // replace subject with unicode subject |
||
528 | $exc_changed_details[$i]["subject"] = $subject; |
||
529 | } |
||
530 | |||
531 | // ARO_LOCATION |
||
532 | if ($exc_changed_details[$i]["bitmask"] & 0x10) { |
||
533 | // decode ucs2 string to utf-8 |
||
534 | $data = unpack("vlength", $rdata); |
||
535 | $rdata = substr($rdata, 2); |
||
536 | $length = $data["length"]; |
||
537 | $data = substr($rdata, 0, $length * 2); |
||
538 | $rdata = substr($rdata, $length * 2); |
||
539 | $location = iconv("UCS-2LE", "UTF-8", $data); |
||
540 | // replace subject with unicode subject |
||
541 | $exc_changed_details[$i]["location"] = $location; |
||
542 | } |
||
543 | |||
544 | // ARO_SUBJECT(0x01) | ARO_LOCATION(0x10) |
||
545 | if ($exc_changed_details[$i]["bitmask"] & 0x11) { |
||
546 | $data = unpack("Vreservedsize", $rdata); |
||
547 | $rdata = substr($rdata, 4 + $data["reservedsize"]); |
||
548 | } |
||
549 | } |
||
550 | |||
551 | // update with extended data |
||
552 | $ret["changed_occurrences"] = $exc_changed_details; |
||
553 | |||
554 | return $ret; |
||
555 | } |
||
556 | |||
557 | /** |
||
558 | * Saves the recurrence data to the recurrence property. |
||
559 | * |
||
560 | * @return string binary string |
||
561 | */ |
||
562 | public function saveRecurrence() { |
||
1378 | } |
||
1379 | |||
1380 | /** |
||
1381 | * Function which converts a recurrence date timestamp to an unix date timestamp. |
||
1382 | * |
||
1383 | * @author Steve Hardy |
||
1384 | * |
||
1385 | * @param int $rdate the date which will be converted |
||
1386 | * |
||
1387 | * @return int the converted date |
||
1388 | */ |
||
1389 | public function recurDataToUnixData($rdate) { |
||
1390 | return ($rdate - 194074560) * 60; |
||
1391 | } |
||
1392 | |||
1393 | /** |
||
1394 | * Function which converts an unix date timestamp to recurrence date timestamp. |
||
1395 | * |
||
1396 | * @author Johnny Biemans |
||
1397 | * |
||
1398 | * @param int $date the date which will be converted |
||
1399 | * |
||
1400 | * @return int the converted date in minutes |
||
1401 | */ |
||
1402 | public function unixDataToRecurData($date) { |
||
1403 | return ($date / 60) + 194074560; |
||
1404 | } |
||
1405 | |||
1406 | /** |
||
1407 | * gmtime() doesn't exist in standard PHP, so we have to implement it ourselves. |
||
1408 | * |
||
1409 | * @author Steve Hardy |
||
1410 | * |
||
1411 | * @param mixed $ts |
||
1412 | */ |
||
1413 | public function GetTZOffset($ts) { |
||
1414 | $Offset = date("O", $ts); |
||
1415 | |||
1416 | $Parity = $Offset < 0 ? -1 : 1; |
||
1417 | $Offset = $Parity * $Offset; |
||
1418 | $Offset = ($Offset - ($Offset % 100)) / 100 * 60 + $Offset % 100; |
||
1419 | |||
1420 | return $Parity * $Offset; |
||
1421 | } |
||
1422 | |||
1423 | /** |
||
1424 | * gmtime() doesn't exist in standard PHP, so we have to implement it ourselves. |
||
1425 | * |
||
1426 | * @author Steve Hardy |
||
1427 | * |
||
1428 | * @param int $time |
||
1429 | * |
||
1430 | * @return array GMT Time |
||
1431 | */ |
||
1432 | public function gmtime($time) { |
||
1433 | $TZOffset = $this->GetTZOffset($time); |
||
1434 | |||
1435 | $t_time = $time - $TZOffset * 60; # Counter adjust for localtime() |
||
1436 | |||
1437 | return localtime($t_time, 1); |
||
1438 | } |
||
1439 | |||
1440 | public function isLeapYear($year) { |
||
1441 | return $year % 4 == 0 && ($year % 100 != 0 || $year % 400 == 0); |
||
1442 | } |
||
1443 | |||
1444 | public function getMonthInSeconds($year, $month) { |
||
1445 | if (in_array($month, [1, 3, 5, 7, 8, 10, 12])) { |
||
1446 | $day = 31; |
||
1447 | } |
||
1448 | elseif (in_array($month, [4, 6, 9, 11])) { |
||
1449 | $day = 30; |
||
1450 | } |
||
1451 | else { |
||
1452 | $day = 28; |
||
1453 | if ($this->isLeapYear($year) == 1) { |
||
1454 | ++$day; |
||
1455 | } |
||
1456 | } |
||
1457 | |||
1458 | return $day * 24 * 60 * 60; |
||
1459 | } |
||
1460 | |||
1461 | /** |
||
1462 | * Function to get a date by Year Nr, Month Nr, Week Nr, Day Nr, and hour. |
||
1463 | * |
||
1464 | * @param int $year |
||
1465 | * @param int $month |
||
1466 | * @param int $week |
||
1467 | * @param int $day |
||
1468 | * @param int $hour |
||
1469 | * |
||
1470 | * @return int the timestamp of the given date, timezone-independent |
||
1471 | */ |
||
1472 | public function getDateByYearMonthWeekDayHour($year, $month, $week, $day, $hour) { |
||
1473 | // get first day of month |
||
1474 | $date = gmmktime(0, 0, 0, $month, 0, $year + 1900); |
||
1475 | |||
1476 | // get wday info |
||
1477 | $gmdate = $this->gmtime($date); |
||
1478 | |||
1479 | $date -= $gmdate["tm_wday"] * 24 * 60 * 60; // back up to start of week |
||
1480 | |||
1481 | $date += $week * 7 * 24 * 60 * 60; // go to correct week nr |
||
1482 | $date += $day * 24 * 60 * 60; |
||
1483 | $date += $hour * 60 * 60; |
||
1484 | |||
1485 | $gmdate = $this->gmtime($date); |
||
1486 | |||
1487 | // if we are in the next month, then back up a week, because week '5' means |
||
1488 | // 'last week of month' |
||
1489 | |||
1490 | if ($month != $gmdate["tm_mon"] + 1) { |
||
1491 | $date -= 7 * 24 * 60 * 60; |
||
1492 | } |
||
1493 | |||
1494 | return $date; |
||
1495 | } |
||
1496 | |||
1497 | /** |
||
1498 | * getTimezone gives the timezone offset (in minutes) of the given |
||
1499 | * local date/time according to the given TZ info. |
||
1500 | * |
||
1501 | * @param mixed $tz |
||
1502 | * @param mixed $date |
||
1503 | */ |
||
1504 | public function getTimezone($tz, $date) { |
||
1505 | // No timezone -> GMT (+0) |
||
1506 | if (!isset($tz["timezone"])) { |
||
1507 | return 0; |
||
1508 | } |
||
1509 | |||
1510 | $dst = false; |
||
1511 | $gmdate = $this->gmtime($date); |
||
1512 | |||
1513 | $dststart = $this->getDateByYearMonthWeekDayHour($gmdate["tm_year"], $tz["dststartmonth"], $tz["dststartweek"], 0, $tz["dststarthour"]); |
||
1514 | $dstend = $this->getDateByYearMonthWeekDayHour($gmdate["tm_year"], $tz["dstendmonth"], $tz["dstendweek"], 0, $tz["dstendhour"]); |
||
1515 | |||
1516 | if ($dststart <= $dstend) { |
||
1517 | // Northern hemisphere, eg DST is during Mar-Oct |
||
1518 | if ($date > $dststart && $date < $dstend) { |
||
1519 | $dst = true; |
||
1520 | } |
||
1521 | } |
||
1522 | else { |
||
1523 | // Southern hemisphere, eg DST is during Oct-Mar |
||
1524 | if ($date < $dstend || $date > $dststart) { |
||
1525 | $dst = true; |
||
1526 | } |
||
1527 | } |
||
1528 | |||
1529 | if ($dst) { |
||
1530 | return $tz["timezone"] + $tz["timezonedst"]; |
||
1531 | } |
||
1532 | |||
1533 | return $tz["timezone"]; |
||
1534 | } |
||
1535 | |||
1536 | /** |
||
1537 | * getWeekNr() returns the week nr of the month (ie first week of february is 1). |
||
1538 | * |
||
1539 | * @param mixed $date |
||
1540 | */ |
||
1541 | public function getWeekNr($date) { |
||
1542 | $gmdate = gmtime($date); |
||
1543 | $gmdate["tm_mday"] = 0; |
||
1544 | |||
1545 | return strftime("%W", $date) - strftime("%W", gmmktime($gmdate)) + 1; |
||
1546 | } |
||
1547 | |||
1548 | /** |
||
1549 | * parseTimezone parses the timezone as specified in named property 0x8233 |
||
1550 | * in Outlook calendar messages. Returns the timezone in minutes negative |
||
1551 | * offset (GMT +2:00 -> -120). |
||
1552 | * |
||
1553 | * @param mixed $data |
||
1554 | */ |
||
1555 | public function parseTimezone($data) { |
||
1556 | if (strlen($data) < 48) { |
||
1557 | return; |
||
1558 | } |
||
1559 | |||
1560 | return unpack("ltimezone/lunk/ltimezonedst/lunk/ldstendmonth/vdstendweek/vdstendhour/lunk/lunk/vunk/ldststartmonth/vdststartweek/vdststarthour/lunk/vunk", $data); |
||
1561 | } |
||
1562 | |||
1563 | public function getTimezoneData($tz) { |
||
1564 | return pack("lllllvvllvlvvlv", $tz["timezone"], 0, $tz["timezonedst"], 0, $tz["dstendmonth"], $tz["dstendweek"], $tz["dstendhour"], 0, 0, 0, $tz["dststartmonth"], $tz["dststartweek"], $tz["dststarthour"], 0, 0); |
||
1565 | } |
||
1566 | |||
1567 | /** |
||
1568 | * createTimezone creates the timezone as specified in the named property 0x8233 |
||
1569 | * see also parseTimezone() |
||
1570 | * $tz is an array with the timezone data. |
||
1571 | * |
||
1572 | * @param mixed $tz |
||
1573 | */ |
||
1574 | public function createTimezone($tz) { |
||
1575 | return pack( |
||
1576 | "lxxxxlxxxxlvvxxxxxxxxxxlvvxxxxxx", |
||
1577 | $tz["timezone"], |
||
1578 | array_key_exists("timezonedst", $tz) ? $tz["timezonedst"] : 0, |
||
1579 | array_key_exists("dstendmonth", $tz) ? $tz["dstendmonth"] : 0, |
||
1580 | array_key_exists("dstendweek", $tz) ? $tz["dstendweek"] : 0, |
||
1581 | array_key_exists("dstendhour", $tz) ? $tz["dstendhour"] : 0, |
||
1582 | array_key_exists("dststartmonth", $tz) ? $tz["dststartmonth"] : 0, |
||
1583 | array_key_exists("dststartweek", $tz) ? $tz["dststartweek"] : 0, |
||
1584 | array_key_exists("dststarthour", $tz) ? $tz["dststarthour"] : 0 |
||
1585 | ); |
||
1586 | } |
||
1587 | |||
1588 | /** |
||
1589 | * toGMT returns a timestamp in GMT time for the time and timezone given. |
||
1590 | * |
||
1591 | * @param mixed $tz |
||
1592 | * @param mixed $date |
||
1593 | */ |
||
1594 | public function toGMT($tz, $date) { |
||
1595 | if (!isset($tz['timezone'])) { |
||
1596 | return $date; |
||
1597 | } |
||
1598 | $offset = $this->getTimezone($tz, $date); |
||
1599 | |||
1600 | return $date + $offset * 60; |
||
1601 | } |
||
1602 | |||
1603 | /** |
||
1604 | * fromGMT returns a timestamp in the local timezone given from the GMT time given. |
||
1605 | * |
||
1606 | * @param mixed $tz |
||
1607 | * @param mixed $date |
||
1608 | */ |
||
1609 | public function fromGMT($tz, $date) { |
||
1610 | $offset = $this->getTimezone($tz, $date); |
||
1611 | |||
1612 | return $date - $offset * 60; |
||
1613 | } |
||
1614 | |||
1615 | /** |
||
1616 | * Function to get timestamp of the beginning of the day of the timestamp given. |
||
1617 | * |
||
1618 | * @param mixed $date |
||
1619 | * |
||
1620 | * @return int|false timestamp referring to same day but at 00:00:00 |
||
1621 | */ |
||
1622 | public function dayStartOf($date) { |
||
1623 | $time1 = $this->gmtime($date); |
||
1624 | |||
1625 | return gmmktime(0, 0, 0, $time1["tm_mon"] + 1, $time1["tm_mday"], $time1["tm_year"] + 1900); |
||
1626 | } |
||
1627 | |||
1628 | /** |
||
1629 | * Function to get timestamp of the beginning of the month of the timestamp given. |
||
1630 | * |
||
1631 | * @param mixed $date |
||
1632 | * |
||
1633 | * @return int|false Timestamp referring to same month but on the first day, and at 00:00:00 |
||
1634 | */ |
||
1635 | public function monthStartOf($date) { |
||
1639 | } |
||
1640 | |||
1641 | /** |
||
1642 | * Function to get timestamp of the beginning of the year of the timestamp given. |
||
1643 | * |
||
1644 | * @param mixed $date |
||
1645 | * |
||
1646 | * @return int|false Timestamp referring to the same year but on Jan 01, at 00:00:00 |
||
1647 | */ |
||
1648 | public function yearStartOf($date) { |
||
1649 | $time1 = $this->gmtime($date); |
||
1650 | |||
1651 | return gmmktime(0, 0, 0, 1, 1, $time1["tm_year"] + 1900); |
||
1652 | } |
||
1653 | |||
1654 | /** |
||
1655 | * Function which returns the items in a given interval. This included expansion of the recurrence and |
||
1656 | * processing of exceptions (modified and deleted). |
||
1657 | * |
||
1658 | * @param int $start start time of the interval (GMT) |
||
1659 | * @param int $end end time of the interval (GMT) |
||
1660 | * @param mixed $limit |
||
1661 | * @param mixed $remindersonly |
||
1662 | * |
||
1663 | * @return array |
||
1664 | */ |
||
1665 | public function getItems($start, $end, $limit = 0, $remindersonly = false) { |
||
1666 | $items = []; |
||
1667 | |||
1668 | if (isset($this->recur)) { |
||
1669 | // Optimization: remindersonly and default reminder is off; since only exceptions with reminder set will match, just look which |
||
1670 | // exceptions are in range and have a reminder set |
||
1671 | if ($remindersonly && (!isset($this->messageprops[$this->proptags["reminder"]]) || $this->messageprops[$this->proptags["reminder"]] == false)) { |
||
1672 | // Sort exceptions by start time |
||
1673 | uasort($this->recur["changed_occurrences"], [$this, "sortExceptionStart"]); |
||
1674 | |||
1675 | // Loop through all changed exceptions |
||
1676 | foreach ($this->recur["changed_occurrences"] as $exception) { |
||
1677 | // Check reminder set |
||
1678 | if (!isset($exception["reminder"]) || $exception["reminder"] == false) { |
||
1679 | continue; |
||
1680 | } |
||
1681 | |||
1682 | // Convert to GMT |
||
1683 | $occstart = $this->toGMT($this->tz, $exception["start"]); |
||
1684 | $occend = $this->toGMT($this->tz, $exception["end"]); |
||
1685 | |||
1686 | // Check range criterium |
||
1687 | if ($occstart > $end || $occend < $start) { |
||
1688 | continue; |
||
1689 | } |
||
1690 | |||
1691 | // OK, add to items. |
||
1692 | array_push($items, $this->getExceptionProperties($exception)); |
||
1693 | if ($limit && (count($items) == $limit)) { |
||
1694 | break; |
||
1695 | } |
||
1696 | } |
||
1697 | |||
1698 | uasort($items, [$this, "sortStarttime"]); |
||
1699 | |||
1700 | return $items; |
||
1701 | } |
||
1702 | |||
1703 | // From here on, the dates of the occurrences are calculated in local time, so the days we're looking |
||
1704 | // at are calculated from the local time dates of $start and $end |
||
1705 | |||
1706 | if (isset($this->recur['regen'], $this->action['datecompleted']) && $this->recur['regen']) { |
||
1707 | $daystart = $this->dayStartOf($this->action['datecompleted']); |
||
1708 | } |
||
1709 | else { |
||
1710 | $daystart = $this->dayStartOf($this->recur["start"]); // start on first day of occurrence |
||
1711 | } |
||
1712 | |||
1713 | // Calculate the last day on which we want to be looking at a recurrence; this is either the end of the view |
||
1714 | // or the end of the recurrence, whichever comes first |
||
1715 | if ($end > $this->toGMT($this->tz, $this->recur["end"])) { |
||
1716 | $rangeend = $this->toGMT($this->tz, $this->recur["end"]); |
||
1717 | } |
||
1718 | else { |
||
1719 | $rangeend = $end; |
||
1720 | } |
||
1721 | |||
1722 | $dayend = $this->dayStartOf($this->fromGMT($this->tz, $rangeend)); |
||
1723 | |||
1724 | // Loop through the entire recurrence range of dates, and check for each occurrence whether it is in the view range. |
||
1725 | |||
1726 | switch ($this->recur["type"]) { |
||
1727 | case 10: |
||
1728 | // Daily |
||
1729 | if ($this->recur["everyn"] <= 0) { |
||
1730 | $this->recur["everyn"] = 1440; |
||
1731 | } |
||
1732 | |||
1733 | if ($this->recur["subtype"] == 0) { |
||
1734 | // Every Nth day |
||
1735 | for ($now = $daystart; $now <= $dayend && ($limit == 0 || count($items) < $limit); $now += 60 * $this->recur["everyn"]) { |
||
1736 | $this->processOccurrenceItem($items, $start, $end, $now, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1737 | } |
||
1738 | } |
||
1739 | else { |
||
1740 | // Every workday |
||
1741 | for ($now = $daystart; $now <= $dayend && ($limit == 0 || count($items) < $limit); $now += 60 * 1440) { |
||
1742 | $nowtime = $this->gmtime($now); |
||
1743 | if ($nowtime["tm_wday"] > 0 && $nowtime["tm_wday"] < 6) { // only add items in the given timespace |
||
1744 | $this->processOccurrenceItem($items, $start, $end, $now, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1745 | } |
||
1746 | } |
||
1747 | } |
||
1748 | break; |
||
1749 | |||
1750 | case 11: |
||
1751 | // Weekly |
||
1752 | if ($this->recur["everyn"] <= 0) { |
||
1753 | $this->recur["everyn"] = 1; |
||
1754 | } |
||
1755 | |||
1756 | // If sliding flag is set then move to 'n' weeks |
||
1757 | if ($this->recur['regen']) { |
||
1758 | $daystart += (60 * 60 * 24 * 7 * $this->recur["everyn"]); |
||
1759 | } |
||
1760 | |||
1761 | for ($now = $daystart; $now <= $dayend && ($limit == 0 || count($items) < $limit); $now += (60 * 60 * 24 * 7 * $this->recur["everyn"])) { |
||
1762 | if ($this->recur['regen']) { |
||
1763 | $this->processOccurrenceItem($items, $start, $end, $now, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1764 | } |
||
1765 | else { |
||
1766 | // Loop through the whole following week to the first occurrence of the week, add each day that is specified |
||
1767 | for ($wday = 0; $wday < 7; ++$wday) { |
||
1768 | $daynow = $now + $wday * 60 * 60 * 24; |
||
1769 | // checks weather the next coming day in recurring pattern is less than or equal to end day of the recurring item |
||
1770 | if ($daynow <= $dayend) { |
||
1771 | $nowtime = $this->gmtime($daynow); // Get the weekday of the current day |
||
1772 | if (($this->recur["weekdays"] & (1 << $nowtime["tm_wday"]))) { // Selected ? |
||
1773 | $this->processOccurrenceItem($items, $start, $end, $daynow, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1774 | } |
||
1775 | } |
||
1776 | } |
||
1777 | } |
||
1778 | } |
||
1779 | break; |
||
1780 | |||
1781 | case 12: |
||
1782 | // Monthly |
||
1783 | if ($this->recur["everyn"] <= 0) { |
||
1784 | $this->recur["everyn"] = 1; |
||
1785 | } |
||
1786 | |||
1787 | // Loop through all months from start to end of occurrence, starting at beginning of first month |
||
1788 | for ($now = $this->monthStartOf($daystart); $now <= $dayend && ($limit == 0 || count($items) < $limit); $now += $this->daysInMonth($now, $this->recur["everyn"]) * 24 * 60 * 60) { |
||
1789 | if (isset($this->recur["monthday"]) && ($this->recur['monthday'] != "undefined") && !$this->recur['regen']) { // Day M of every N months |
||
1790 | $difference = 1; |
||
1791 | if ($this->daysInMonth($now, $this->recur["everyn"]) < $this->recur["monthday"]) { |
||
1792 | $difference = $this->recur["monthday"] - $this->daysInMonth($now, $this->recur["everyn"]) + 1; |
||
1793 | } |
||
1794 | $daynow = $now + (($this->recur["monthday"] - $difference) * 24 * 60 * 60); |
||
1795 | // checks weather the next coming day in recurrence pattern is less than or equal to end day of the recurring item |
||
1796 | if ($daynow <= $dayend) { |
||
1797 | $this->processOccurrenceItem($items, $start, $end, $daynow, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1798 | } |
||
1799 | } |
||
1800 | elseif (isset($this->recur["nday"], $this->recur["weekdays"])) { // Nth [weekday] of every N months |
||
1801 | // Sanitize input |
||
1802 | if ($this->recur["weekdays"] == 0) { |
||
1803 | $this->recur["weekdays"] = 1; |
||
1804 | } |
||
1805 | |||
1806 | // If nday is not set to the last day in the month |
||
1807 | if ($this->recur["nday"] < 5) { |
||
1808 | // keep the track of no. of time correct selection pattern (like 2nd weekday, 4th friday, etc.) is matched |
||
1809 | $ndaycounter = 0; |
||
1810 | // Find matching weekday in this month |
||
1811 | for ($day = 0, $total = $this->daysInMonth($now, 1); $day < $total; ++$day) { |
||
1812 | $daynow = $now + $day * 60 * 60 * 24; |
||
1813 | $nowtime = $this->gmtime($daynow); // Get the weekday of the current day |
||
1814 | |||
1815 | if ($this->recur["weekdays"] & (1 << $nowtime["tm_wday"])) { // Selected ? |
||
1816 | ++$ndaycounter; |
||
1817 | } |
||
1818 | // check the selected pattern is same as asked Nth weekday,If so set the firstday |
||
1819 | if ($this->recur["nday"] == $ndaycounter) { |
||
1820 | $firstday = $day; |
||
1821 | break; |
||
1822 | } |
||
1823 | } |
||
1824 | // $firstday is the day of the month on which the asked pattern of nth weekday matches |
||
1825 | $daynow = $now + $firstday * 60 * 60 * 24; |
||
1826 | } |
||
1827 | else { |
||
1828 | // Find last day in the month ($now is the firstday of the month) |
||
1829 | $NumDaysInMonth = $this->daysInMonth($now, 1); |
||
1830 | $daynow = $now + (($NumDaysInMonth - 1) * 24 * 60 * 60); |
||
1831 | |||
1832 | $nowtime = $this->gmtime($daynow); |
||
1833 | while (($this->recur["weekdays"] & (1 << $nowtime["tm_wday"])) == 0) { |
||
1834 | $daynow -= 86400; |
||
1835 | $nowtime = $this->gmtime($daynow); |
||
1836 | } |
||
1837 | } |
||
1838 | |||
1839 | /* |
||
1840 | * checks weather the next coming day in recurrence pattern is less than or equal to end day of the * recurring item.Also check weather the coming day in recurrence pattern is greater than or equal to start * of recurring pattern, so that appointment that fall under the recurrence range are only displayed. |
||
1841 | */ |
||
1842 | if ($daynow <= $dayend && $daynow >= $daystart) { |
||
1843 | $this->processOccurrenceItem($items, $start, $end, $daynow, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1844 | } |
||
1845 | } |
||
1846 | elseif ($this->recur['regen']) { |
||
1847 | $next_month_start = $now + ($this->daysInMonth($now, 1) * 24 * 60 * 60); |
||
1848 | $now = $daystart + ($this->daysInMonth($next_month_start, $this->recur['everyn']) * 24 * 60 * 60); |
||
1849 | |||
1850 | if ($now <= $dayend) { |
||
1851 | $this->processOccurrenceItem($items, $daystart, $end, $now, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1852 | } |
||
1853 | } |
||
1854 | } |
||
1855 | break; |
||
1856 | |||
1857 | case 13: |
||
1858 | // Yearly |
||
1859 | if ($this->recur["everyn"] <= 0) { |
||
1860 | $this->recur["everyn"] = 12; |
||
1861 | } |
||
1862 | |||
1863 | for ($now = $this->yearStartOf($daystart); $now <= $dayend && ($limit == 0 || count($items) < $limit); $now += $this->daysInMonth($now, $this->recur["everyn"]) * 24 * 60 * 60) { |
||
1864 | if (isset($this->recur["monthday"]) && !$this->recur['regen']) { // same as monthly, but in a specific month |
||
1865 | // recur["month"] is in minutes since the beginning of the year |
||
1866 | $month = $this->monthOfYear($this->recur["month"]); // $month is now month of year [0..11] |
||
1867 | $monthday = $this->recur["monthday"]; // $monthday is day of the month [1..31] |
||
1868 | $monthstart = $now + $this->daysInMonth($now, $month) * 24 * 60 * 60; // $monthstart is the timestamp of the beginning of the month |
||
1869 | if ($monthday > $this->daysInMonth($monthstart, 1)) { |
||
1870 | $monthday = $this->daysInMonth($monthstart, 1); |
||
1871 | } // Cap $monthday on month length (eg 28 feb instead of 29 feb) |
||
1872 | $daynow = $monthstart + ($monthday - 1) * 24 * 60 * 60; |
||
1873 | $this->processOccurrenceItem($items, $start, $end, $daynow, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1874 | } |
||
1875 | elseif (isset($this->recur["nday"], $this->recur["weekdays"])) { // Nth [weekday] in month X of every N years |
||
1876 | // Go the correct month |
||
1877 | $monthnow = $now + $this->daysInMonth($now, $this->monthOfYear($this->recur["month"])) * 24 * 60 * 60; |
||
1878 | |||
1879 | // Find first matching weekday in this month |
||
1880 | for ($wday = 0; $wday < 7; ++$wday) { |
||
1881 | $daynow = $monthnow + $wday * 60 * 60 * 24; |
||
1882 | $nowtime = $this->gmtime($daynow); // Get the weekday of the current day |
||
1883 | |||
1884 | if ($this->recur["weekdays"] & (1 << $nowtime["tm_wday"])) { // Selected ? |
||
1885 | $firstday = $wday; |
||
1886 | break; |
||
1887 | } |
||
1888 | } |
||
1889 | |||
1890 | // Same as above (monthly) |
||
1891 | $daynow = $monthnow + ($firstday + ($this->recur["nday"] - 1) * 7) * 60 * 60 * 24; |
||
1892 | |||
1893 | while ($this->monthStartOf($daynow) != $this->monthStartOf($monthnow)) { |
||
1894 | $daynow -= 7 * 60 * 60 * 24; |
||
1895 | } |
||
1896 | |||
1897 | $this->processOccurrenceItem($items, $start, $end, $daynow, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1898 | } |
||
1899 | elseif ($this->recur['regen']) { |
||
1900 | $year_starttime = $this->gmtime($now); |
||
1901 | $is_next_leapyear = $this->isLeapYear($year_starttime['tm_year'] + 1900 + 1); // +1 next year |
||
1902 | $now = $daystart + ($is_next_leapyear ? 31622400 /* Leap year in seconds */ : 31536000 /* year in seconds */); |
||
1903 | |||
1904 | if ($now <= $dayend) { |
||
1905 | $this->processOccurrenceItem($items, $daystart, $end, $now, $this->recur["startocc"], $this->recur["endocc"], $this->tz, $remindersonly); |
||
1906 | } |
||
1907 | } |
||
1908 | } |
||
1909 | } |
||
1910 | // to get all exception items |
||
1911 | if (!empty($this->recur['changed_occurrences'])) { |
||
1912 | $this->processExceptionItems($items, $start, $end); |
||
1913 | } |
||
1914 | } |
||
1915 | |||
1916 | // sort items on starttime |
||
1917 | usort($items, [$this, "sortStarttime"]); |
||
1918 | |||
1919 | // Return the MAPI-compatible list of items for this object |
||
1920 | return $items; |
||
1921 | } |
||
1922 | |||
1923 | public function sortStarttime($a, $b) { |
||
1924 | $aTime = $a[$this->proptags["startdate"]]; |
||
1925 | $bTime = $b[$this->proptags["startdate"]]; |
||
1926 | |||
1927 | return $aTime == $bTime ? 0 : ($aTime > $bTime ? 1 : -1); |
||
1928 | } |
||
1929 | |||
1930 | /** |
||
1931 | * daysInMonth. |
||
1932 | * |
||
1933 | * Returns the number of days in the upcoming number of months. If you specify 1 month as |
||
1934 | * $months it will give you the number of days in the month of $date. If you specify more it |
||
1935 | * will also count the days in the upcoming months and add that to the number of days. So |
||
1936 | * if you have a date in march and you specify $months as 2 it will return 61. |
||
1937 | * |
||
1938 | * @param int $date specified date as timestamp from which you want to know the number |
||
1939 | * of days in the month |
||
1940 | * @param int $months number of months you want to know the number of days in |
||
1941 | * |
||
1942 | * @return int Number of days in the specified amount of months. |
||
1943 | */ |
||
1944 | public function daysInMonth($date, $months) { |
||
1945 | $days = 0; |
||
1946 | |||
1947 | for ($i = 0; $i < $months; ++$i) { |
||
1948 | $days += date("t", $date + $days * 24 * 60 * 60); |
||
1949 | } |
||
1950 | |||
1951 | return $days; |
||
1952 | } |
||
1953 | |||
1954 | // Converts MAPI-style 'minutes' into the month of the year [0..11] |
||
1955 | public function monthOfYear($minutes) { |
||
1956 | $d = gmmktime(0, 0, 0, 1, 1, 2001); // The year 2001 was a non-leap year, and the minutes provided are always in non-leap-year-minutes |
||
1957 | |||
1958 | $d += $minutes * 60; |
||
1959 | |||
1960 | $dtime = $this->gmtime($d); |
||
1961 | |||
1962 | return $dtime["tm_mon"]; |
||
1963 | } |
||
1964 | |||
1965 | public function sortExceptionStart($a, $b) { |
||
1967 | } |
||
1968 | |||
1969 | /** |
||
1970 | * Function to get all properties of a single changed exception. |
||
1971 | * |
||
1972 | * @param mixed $exception |
||
1973 | * |
||
1974 | * @return array associative array of properties for the exception, compatible with |
||
1975 | */ |
||
1976 | public function getExceptionProperties($exception) { |
||
1977 | // Exception has same properties as main object, with some properties overridden: |
||
1978 | $item = $this->messageprops; |
||
1979 | |||
1980 | // Special properties |
||
2019 | } |
||
2020 | |||
2021 | abstract public function processOccurrenceItem(&$items, $start, $end, $basedate, $startocc, $endocc, $tz, $reminderonly); |
||
2022 | } |
||
2023 |