summaryrefslogtreecommitdiffstats
path: root/vendor/simshaun/recurr/src/Recurr/RecurrenceCollection.php
blob: e1e676bd7fd0d855f6660ae4a7d39b89af5fe805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php

/*
 * Copyright 2014 Shaun Simmons
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Recurr;

use \Doctrine\Common\Collections\ArrayCollection as BaseCollection;

/**
 * @package Recurr
 * @author  Shaun Simmons <shaun@envysphere.com>
 */
class RecurrenceCollection extends BaseCollection
{
    /**
     * @param \DateTimeInterface $after
     * @param \DateTimeInterface $before
     * @param bool      $inc Include $after or $before if they happen to be a recurrence.
     *
     * @return RecurrenceCollection
     */
    public function startsBetween(\DateTimeInterface $after, \DateTimeInterface $before, $inc = false)
    {
        return $this->filter(
            function ($recurrence) use ($after, $before, $inc) {
                /** @var $recurrence Recurrence */
                $start = $recurrence->getStart();

                if ($inc) {
                    return $start >= $after && $start <= $before;
                }

                return $start > $after && $start < $before;
            }
        );
    }

    /**
     * @param \DateTimeInterface $before
     * @param bool               $inc Include $before if it is a recurrence.
     *
     * @return RecurrenceCollection
     */
    public function startsBefore(\DateTimeInterface $before, $inc = false)
    {
        return $this->filter(
            function ($recurrence) use ($before, $inc) {
                /** @var $recurrence Recurrence */
                $start = $recurrence->getStart();

                if ($inc) {
                    return $start <= $before;
                }

                return $start < $before;
            }
        );
    }

    /**
     * @param \DateTimeInterface $after
     * @param bool               $inc Include $after if it a recurrence.
     *
     * @return RecurrenceCollection
     */
    public function startsAfter(\DateTimeInterface $after, $inc = false)
    {
        return $this->filter(
            function ($recurrence) use ($after, $inc) {
                /** @var $recurrence Recurrence */
                $start = $recurrence->getStart();

                if ($inc) {
                    return $start >= $after;
                }

                return $start > $after;
            }
        );
    }

    /**
     * @param \DateTimeInterface $after
     * @param \DateTimeInterface $before
     * @param bool               $inc Include $after or $before if they happen to be a recurrence.
     *
     * @return RecurrenceCollection
     */
    public function endsBetween(\DateTimeInterface $after, \DateTimeInterface $before, $inc = false)
    {
        return $this->filter(
            function ($recurrence) use ($after, $before, $inc) {
                /** @var $recurrence Recurrence */
                $end = $recurrence->getEnd();

                if ($inc) {
                    return $end >= $after && $end <= $before;
                }

                return $end > $after && $end < $before;
            }
        );
    }

    /**
     * @param \DateTimeInterface $before
     * @param bool               $inc Include $before if it is a recurrence.
     *
     * @return RecurrenceCollection
     */
    public function endsBefore(\DateTimeInterface $before, $inc = false)
    {
        return $this->filter(
            function ($recurrence) use ($before, $inc) {
                /** @var $recurrence Recurrence */
                $end = $recurrence->getEnd();

                if ($inc) {
                    return $end <= $before;
                }

                return $end < $before;
            }
        );
    }

    /**
     * @param \DateTimeInterface $after
     * @param bool               $inc Include $after if it a recurrence.
     *
     * @return RecurrenceCollection
     */
    public function endsAfter(\DateTimeInterface $after, $inc = false)
    {
        return $this->filter(
            function ($recurrence) use ($after, $inc) {
                /** @var $recurrence Recurrence */
                $end = $recurrence->getEnd();

                if ($inc) {
                    return $end >= $after;
                }

                return $end > $after;
            }
        );
    }
}