This repository was archived by the owner on Mar 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSource.php
302 lines (268 loc) · 7.05 KB
/
Source.php
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<?php
namespace Solire\Trieur;
use Solire\Conf\Conf;
/**
* Data connection abstract class.
*
* @author thansen <[email protected]>
* @license MIT http://mit-license.org/
*/
abstract class Source
{
/**
* The configuration.
*
* @var Conf
*/
protected $conf = null;
/**
* The columns configuration.
*
* @var Columns
*/
protected $columns = null;
/**
* The connection.
*
* @var mixed
*/
protected $connection = null;
/**
* An array of arrays where the first element is an array of columns or
* expressions and the second element is an array of terms to look for.
*
* @var array
*/
protected $filters = [];
/**
* An associative array where keys are a sql column or expression and values
* are a string 'ASC' or 'DESC'.
*
* @var array
*/
protected $orders = [];
/**
* Offset of the query.
*
* @var int
*/
protected $offset = null;
/**
* Length of the query.
*
* @var int
*/
protected $length = null;
/**
* Constructor.
*
* @param Conf $conf The configuration
* @param Columns $columns The columns configuration
* @param mixed $connection The connection
*/
public function __construct(
Conf $conf,
Columns $columns,
$connection = null
) {
$this->conf = $conf;
$this->columns = $columns;
$this->connection = $connection;
}
/**
* Set the filters.
*
* @param array $filters An array of filters, a filter being an array where
* - the first element is an (array of) columns or expressions
* - the second element is an (array of) terms to look for
* - the third element is the filter type (example : Contain)
*
* @return void
*/
final public function setFilters($filters)
{
$this->filters = [];
$this->addFilters($filters);
}
/**
* Add multiple filters.
*
* @param array $filters An array of filters, a filter being an array where
* - the first element is an (array of) columns or expressions
* - the second element is an (array of) terms to look for
* - the third element is the filter type (example : Contain)
*
* @return void
*/
final public function addFilters($filters)
{
$this->filters = array_merge($this->filters, $filters);
}
/**
* Add a filter.
*
* @param array $filter An array where
* - the first element is an (array of) columns or expressions
* - the second element is an (array of) terms to look for
* - the third element is the filter type (example : Contain)
*
* @return void
*/
final public function addFilter($filter)
{
$this->filters[] = $filter;
}
/**
* Sets the offset.
*
* @param int $offset Offset of the query
*
* @return void
*/
final public function setOffset($offset)
{
$this->offset = $offset;
}
/**
* Sets the length.
*
* @param int $length Length of the query
*
* @return void
*/
final public function setLength($length)
{
$this->length = $length;
}
/**
* Sets orders.
*
* @param array $orders An array of two elements array where first element
* is a column or expression and second element is a string 'ASC' or 'DESC'
*
* @return void
*/
final public function setOrders($orders)
{
$this->orders = [];
$this->addOrders($orders);
}
/**
* Add orders.
*
* @param array $orders An array of two elements array where first element
* is a column or expression and second element is a string 'ASC' or 'DESC'
*
* @return void
*/
final public function addOrders($orders)
{
foreach ($orders as $order) {
list($column, $dir) = $order;
$this->addOrder($column, $dir);
}
}
/**
* Add an order.
*
* @param string|Conf $column A column
* @param string $direction A direction string 'ASC' or 'DESC'
*
* @return void
*/
final public function addOrder($column, $direction = 'ASC')
{
if (!is_object($column)) {
$column = $this->columns->get($column);
}
$this->orders[] = [
$column,
$direction,
];
}
/**
* Adds the different filters.
*
* @return bool
*/
final public function filter()
{
$itsAMatch = true;
foreach ($this->filters as $filter) {
list($columns, $term, $filterType) = $filter;
if (empty($columns)) {
continue;
}
$filter = $this->instantiateFilter($columns, $term, $filterType);
$status = $this->processFilter($filter);
if (!$status) {
$itsAMatch = false;
}
}
return $itsAMatch;
}
/**
* Instantiate an object to process the filter.
*
* @param array $columns Array of columns
* @param mixed $term The term(s) we're looking for
* @param string $filterType The filter type
*
* @return SourceFilter
*/
private function instantiateFilter($columns, $term, $filterType)
{
$className = $this->getFilterClassName($filterType);
return new $className($columns, $term);
}
/**
* Returns the name of the filter class.
*
* @param string $filterType The filter type (Contain, DateRange etc.)
*
* @return string
*
* @throws Exception
*/
private function getFilterClassName($filterType)
{
$className = $filterType;
if (class_exists($className)) {
return $className;
}
$r = new \ReflectionClass($this);
$className = $r->getName() . '\\' . $filterType;
if (class_exists($className)) {
return $className;
}
throw new Exception(
sprintf('No filter class found for type [%s]', $filterType)
);
}
/**
* Do the filter and returns true if it's a success, false otherwise.
*
* @param SourceFilter $filter The filter object
*
* @return bool
*/
abstract protected function processFilter(SourceFilter $filter);
/**
* Return the total of available lines.
*
* @return int Total number
*/
abstract public function getCount();
/**
* Return the total of available lines filtered by the current filters.
*
* @return int Total number
*/
abstract public function getFilteredCount();
/**
* Returns the data filtered by the current filters.
*
* @return mixed
*/
abstract public function getData();
}