summaryrefslogtreecommitdiff
path: root/src/Model/Collection.php
blob: 62bbf9814d1cc8905f9675334228afb1a03b1401 (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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<?php

namespace App\Model;

use App\Model\Model;
use ArrayAccess;
use Exception;
use Iterator;
use App\Script\Input;
use DateTime;
use Countable;

/**
 * A collection of models
 *
 * @author Phil Burton <phil@pgburton.com>
 */
class Collection implements ArrayAccess, Iterator, Countable
{
    /**
     * Raw array of models
     *
     * @var Model[]
     */
    protected $models;

    /**
     * Current index of array
     *
     * @var int
     */
    protected $position;

    /**
     * Initalise the collection
     *
     * @author Phil Burton <phil@pgburton.com>
     * @param $array
     */
    public function __construct($array = [])
    {
        // Initalise Index
        $this->position = 0;

        // Initalise empty array
        $this->setFromArray($array);
    }

    /**
     * Reset array to a new array of models
     *
     * @author Phil Burton <phil@pgburton.com>
     * @param array $array
     */
    public function setFromArray(array $array)
    {
        $this->models = [];
        foreach ($array as $model) {
            $this->models[] = $model;
        }
    }

    /**
     * Set the offset
     * Only allow values that are an instance of User
     *
     * @author Phil Burton <phil@pgburton.com>
     * @param mixed $offset
     * @param mixed $value
     */
    public function offsetSet($offset, $value)
    {
        if (!$value instanceof Model) {
            throw new Exception(
                'Collection expects a value of type ' . Model::class . ', ' . gettype($value) . ' given'
            );
        }
        if (is_null($offset)) {
            $this->models[] = $value;
        } else {
            $this->models[$offset] = $value;
        }
    }

    /**
     * Return true if the given offset exists
     * Otherwise return false
     *
     * @author Phil Burton <phil@pgburton.com>
     * @param mixed $offset
     */
    public function offsetExists($offset)
    {
        return isset($this->models[$offset]);
    }

    /**
     * Unset a given offset
     *
     * @author Phil Burton <phil@pgburton.com>
     * @param mixed $offset
     */
    public function offsetUnset($offset)
    {
        unset($this->models[$offset]);
    }

    /**
     * Get the value at a given offset
     *
     * @author Phil Burton <phil@pgburton.com>
     * @param mixed $offset
     */
    public function offsetGet($offset)
    {
        return isset($this->models[$offset]) ? $this->models[$offset] : null;
    }

    /**
     * Return current user
     *
     * @author Phil Burton <phil@pgburton.com>
     * @return Model
     */
    public function current()
    {
        return $this->models[$this->position];
    }

    /**
     * Return true if the current index exists in user array
     * Otherwise return false
     *
     * @author Phil Burton <phil@pgburton.com>"dump"
     * @return bool
     */
    public function valid()
    {
        return isset($this->models[$this->position]);
    }

    /**
     * Reset index back to 0
     *
     * @author Phil Burton <phil@pgburton.com>
     */
    public function rewind()
    {
        $this->position = 0;
    }

    /**
     * Return the current index
     *
     * @author Phil Burton <phil@pgburton.com>
     * @return int
     */
    public function key()
    {
        return $this->position;
    }

    /**
     * Increment index by 1
     *
     * @author Phil Burton <phil@pgburton.com>
     */
    public function next()
    {
        ++$this->position;
    }

    /**
     * Filter by input
     *
     * @author Phil Burton <phil@pgburton.com>
     * @param Input $input
     */
    public function filterByInput(Input $input)
    {
        // filter by time
        if ($time = $input->getOption('t')) {
            $day = $input->getOption('d');
            $this->filterByDateTime($day, $time);
        }

        if ($location = $input->getOption('l')) {
            $this->filterByLocation($location);
        }

        if ($covers = (int) $input->getOption('c')) {
            $this->filterByCovers($covers);
        }
    }

    public function filterByDateTime(string $date, string $time)
    {
        $dateTime = DateTime::createFromFormat('d/m/y G:i', $date . ' ' . $time);

        if (!$dateTime) {
            throw new Exception(
                'Unable to parse datetime. Required time format: `G:i` (e.g. 05:30). '
                . 'Required date format: `d/m/y` (e.g. 22/06/18)'
            );
        }
        $out = [];
        foreach ($this->models as $model) {
            if ($model->checkDate($dateTime)) {
                $out[] = $model;
            }
        }

        $this->models = $out;
    }

    public function filterByLocation(string $location)
    {
        $location = substr($location, 0, 2);

        $out = [];

        foreach ($this->models as $model) {
            if ($model->checkLocation($location)) {
                $out[] = $model;
            }
        }

        $this->models = $out;
    }

    public function filterByCovers(int $covers)
    {
        $out = [];

        foreach ($this->models as $model) {
            if ($model->checkMaxCovers($covers)) {
                $out[] = $model;
            }
        }

        $this->models = $out;
    }

    public function count()
    {
        return count($this->models);
    }
}