aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/lib/calendar_recurrence.php
blob: 44d5b08f7c3ca9b7f18bd8e103acf7c96052de2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php

require_once realpath(__DIR__ . '/../../libcalendaring/lib/libcalendaring_recurrence.php');

/**
 * Recurrence computation class for the Calendar plugin
 *
 * Uitility class to compute instances of recurring events.
 *
 * @author Thomas Bruederli <bruederli@kolabsys.com>
 *
 * Copyright (C) 2012-2014, Kolab Systems AG <contact@kolabsys.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
class calendar_recurrence extends libcalendaring_recurrence
{
  private $event;
  private $duration;

  /**
   * Default constructor
   *
   * @param object calendar The calendar plugin instance
   * @param array The event object to operate on
   */
  function __construct($cal, $event)
  {
    parent::__construct($cal->lib);

    $this->event = $event;

    if (is_object($event['start']) && is_object($event['end']))
      $this->duration = $event['start']->diff($event['end']);

    $event['start']->_dateonly |= $event['allday'];
    $this->init($event['recurrence'], $event['start']);
  }

  /**
   * Alias of libcalendaring_recurrence::next()
   *
   * @return mixed DateTime object or False if recurrence ended
   */
  public function next_start()
  {
    return $this->next();
  }

  /**
   * Get the next recurring instance of this event
   *
   * @return mixed Array with event properties or False if recurrence ended
   */
  public function next_instance()
  {
    if ($next_start = $this->next()) {
      $next = $this->event;
      $next['start'] = $next_start;

      if ($this->duration) {
        $next['end'] = clone $next_start;
        $next['end']->add($this->duration);
      }

      $next['recurrence_date'] = clone $next_start;
      $next['_instance'] = libcalendaring::recurrence_instance_identifier($next);

      unset($next['_formatobj']);

      return $next;
    }

    return false;
  }

}

© 2014-2024 Faster IT GmbH | imprint | privacy policy