-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Paginator.php
260 lines (231 loc) · 5.44 KB
/
Paginator.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
<?php
/**
* KumbiaPHP web & app Framework.
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://wiki.kumbiaphp.com/Licencia
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@kumbiaphp.com so we can send you a copy immediately.
*
* @category Kumbia
*
* @copyright 2005 - 2020 Kumbia Team (http://www.kumbiaphp.com)
* @license http://wiki.kumbiaphp.com/Licencia New BSD License
*/
namespace Kumbia\ActiveRecord;
/**
* Implementación de paginador.
*/
class Paginator implements \IteratorAggregate, \Countable, \JsonSerializable
{
/**
* Número de página actual.
*
* @var int
*/
protected $page;
/**
* Cantidad de items por página.
*
* @var int
*/
protected $perPage;
/**
* Número de páginas totales.
*
* @var int
*/
protected $totalPages;
/**
* Cantidad de items totales.
*
* @var int
*/
protected $count;
/**
* Nombre del modelo a usar.
*
* @var string
*/
protected $model;
/**
* Cadena SQL a ejecutar.
*
* @var string
*/
protected $sql;
/**
* Párametros de la consulta.
*
* @var array
*/
protected $values;
/**
* Items de pagina.
*
* @var array de objetos
*/
private $items;
/**
* Constructor.
*
* @param string $model nombre de clase de modelo
* @param string $sql consulta select sql
* @param int $page numero de pagina
* @param int $perPage cantidad de items por pagina
* @param mixed $values valores
*/
public function __construct(string $model, string $sql, int $page, int $perPage, array $values = [])
{
$this->perPage = $perPage;
$this->page = $page;
/*validacion*/
$this->validPage();
$this->model = $model;
// Valores para consulta
$this->values = $values;
$this->count = $this->countQuery($model, $sql);
$this->totalPages = (int) \max(1, \ceil($this->count / $this->perPage));
$this->validCurrent();
// Establece el limit y offset
$this->sql = QueryGenerator::query($model::getDriver(), 'limit', $sql, $perPage, ($page - 1) * $perPage);
$this->items = $model::query($this->sql, $this->values)->fetchAll();
}
/**
* Permite que al usar json_encode() con una instacia de Paginator funcione correctamente
* retornando los items del paginador.
*/
public function jsonSerialize()
{
return $this->items;
}
/**
* Verifica que la pagina sea válida.
*/
private function validPage(): void
{
//Si la página o por página es menor de 1 (0 o negativo)
if ($this->page < 1 || $this->perPage < 1) {
throw new \RangeException("La página $this->page no existe", 404);
}
}
/**
* Valida que la página actual.
*/
private function validCurrent(): void
{
if ($this->page > $this->totalPages) {
throw new \RangeException("La página $this->page no existe", 404);
}
}
/**
* (non-PHPdoc).
*
* @see IteratorAggregate::getIterator()
*/
public function getIterator(): \ArrayIterator
{
return new \ArrayIterator($this->items);
}
/**
* Cuenta el número de resultados totales.
*
* @param string $model
* @param string $sql
*
* @return int total de resultados
*/
protected function countQuery(string $model, string $sql): int
{
$query = $model::query("SELECT COUNT(*) AS count FROM ($sql) AS t", $this->values)->fetch();
return (int) $query->count;
}
/**
* Total de items.
*
* @return int
*/
public function totalItems(): int
{
return $this->count;
}
/**
* Total de páginas.
*
* @return int
*/
public function totalPages(): int
{
return $this->totalPages;
}
/**
* Calcula el valor de la próxima página.
*
* @return int
*/
public function nextPage(): int
{
return $this->totalPages > $this->page ? $this->page + 1 : 0;
}
/**
* Calcula el valor de la página anterior.
*
* @return int
*/
public function prevPage(): int
{
return $this->page > 1 ? $this->page - 1 : 0;
}
/**
* Items devueltos.
*
* @see Countable::countable()
*
* @return int
*/
public function count(): int
{
return count($this->items);
}
/**
* Página actual de paginador.
*
* @return int
*/
public function page(): int
{
return $this->page;
}
/**
* Campos del objeto.
*
* @return string[]
*/
public function getFields(): array
{
return $this->items[0]->getFields();
}
/**
* Alias de Campos del objeto.
*
* @return string[]
*/
public function getAlias(): array
{
return $this->items[0]->getAlias();
}
/**
* Cantidad de items por página configurado.
*
* @return int
*/
public function getPerPage(): int
{
return $this->perPage;
}
}