forked from sonata-project/SonataAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPager.php
611 lines (540 loc) · 12.4 KB
/
Pager.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Datagrid;
use Sonata\AdminBundle\Model\ModelManagerInterface;
/**
* Pager class.
* @author Fabien Potencier <[email protected]>
* @author Thomas Rabaix <[email protected]>
*/
abstract class Pager implements \Iterator, \Countable, \Serializable, PagerInterface
{
protected $page = 1;
protected $maxPerPage = 0;
protected $lastPage = 1;
protected $nbResults = 0;
protected $cursor = 1;
protected $parameters = array();
protected $currentMaxLink = 1;
protected $maxRecordLimit = false;
// used by iterator interface
protected $results = null;
protected $resultsCounter = 0;
protected $query = null;
protected $countColumn = array('id');
/**
* Constructor.
*
* @param string $class The model class
* @param integer $maxPerPage Number of records to display per page
*/
public function __construct($maxPerPage = 10)
{
$this->setMaxPerPage($maxPerPage);
}
/**
* Returns an array of results on the given page.
*
* @return array
*/
abstract public function getResults();
/**
* Returns the current pager's max link.
*
* @return integer
*/
public function getCurrentMaxLink()
{
return $this->currentMaxLink;
}
/**
* Returns the current pager's max record limit.
*
* @return integer
*/
public function getMaxRecordLimit()
{
return $this->maxRecordLimit;
}
/**
* Sets the current pager's max record limit.
*
* @param integer $limit
*/
public function setMaxRecordLimit($limit)
{
$this->maxRecordLimit = $limit;
}
/**
* Returns an array of page numbers to use in pagination links.
*
* @param integer $nb_links The maximum number of page numbers to return
*
* @return array
*/
public function getLinks($nb_links = 5)
{
$links = array();
$tmp = $this->page - floor($nb_links / 2);
$check = $this->lastPage - $nb_links + 1;
$limit = $check > 0 ? $check : 1;
$begin = $tmp > 0 ? ($tmp > $limit ? $limit : $tmp) : 1;
$i = (int) $begin;
while ($i < $begin + $nb_links && $i <= $this->lastPage) {
$links[] = $i++;
}
$this->currentMaxLink = count($links) ? $links[count($links) - 1] : 1;
return $links;
}
/**
* Returns true if the current query requires pagination.
*
* @return boolean
*/
public function haveToPaginate()
{
return $this->getMaxPerPage() && $this->getNbResults() > $this->getMaxPerPage();
}
/**
* Returns the current cursor.
*
* @return integer
*/
public function getCursor()
{
return $this->cursor;
}
/**
* Sets the current cursor.
*
* @param integer $pos
*/
public function setCursor($pos)
{
if ($pos < 1) {
$this->cursor = 1;
} else {
if ($pos > $this->nbResults) {
$this->cursor = $this->nbResults;
} else {
$this->cursor = $pos;
}
}
}
/**
* Returns an object by cursor position.
*
* @param integer $pos
*
* @return mixed
*/
public function getObjectByCursor($pos)
{
$this->setCursor($pos);
return $this->getCurrent();
}
/**
* Returns the current object.
*
* @return mixed
*/
public function getCurrent()
{
return $this->retrieveObject($this->cursor);
}
/**
* Returns the next object.
*
* @return mixed|null
*/
public function getNext()
{
if ($this->cursor + 1 > $this->nbResults) {
return null;
} else {
return $this->retrieveObject($this->cursor + 1);
}
}
/**
* Returns the previous object.
*
* @return mixed|null
*/
public function getPrevious()
{
if ($this->cursor - 1 < 1) {
return null;
} else {
return $this->retrieveObject($this->cursor - 1);
}
}
/**
* Returns the first index on the current page.
*
* @return integer
*/
public function getFirstIndice()
{
if ($this->page == 0) {
return 1;
} else {
return ($this->page - 1) * $this->maxPerPage + 1;
}
}
/**
* Returns the last index on the current page.
*
* @return integer
*/
public function getLastIndice()
{
if ($this->page == 0) {
return $this->nbResults;
} else {
if ($this->page * $this->maxPerPage >= $this->nbResults) {
return $this->nbResults;
} else {
return $this->page * $this->maxPerPage;
}
}
}
/**
* Returns the number of results.
*
* @return integer
*/
public function getNbResults()
{
return $this->nbResults;
}
/**
* Sets the number of results.
*
* @param integer $nb
*/
protected function setNbResults($nb)
{
$this->nbResults = $nb;
}
/**
* Returns the first page number.
*
* @return integer
*/
public function getFirstPage()
{
return 1;
}
/**
* Returns the last page number.
*
* @return integer
*/
public function getLastPage()
{
return $this->lastPage;
}
/**
* Sets the last page number.
*
* @param integer $page
*/
protected function setLastPage($page)
{
$this->lastPage = $page;
if ($this->getPage() > $page) {
$this->setPage($page);
}
}
/**
* Returns the current page.
*
* @return integer
*/
public function getPage()
{
return $this->page;
}
/**
* Returns the next page.
*
* @return integer
*/
public function getNextPage()
{
return min($this->getPage() + 1, $this->getLastPage());
}
/**
* Returns the previous page.
*
* @return integer
*/
public function getPreviousPage()
{
return max($this->getPage() - 1, $this->getFirstPage());
}
/**
* Sets the current page.
*
* @param integer $page
*/
public function setPage($page)
{
$this->page = intval($page);
if ($this->page <= 0) {
// set first page, which depends on a maximum set
$this->page = $this->getMaxPerPage() ? 1 : 0;
}
}
/**
* Returns the maximum number of results per page.
*
* @return integer
*/
public function getMaxPerPage()
{
return $this->maxPerPage;
}
/**
* Sets the maximum number of results per page.
*
* @param integer $max
*/
public function setMaxPerPage($max)
{
if ($max > 0) {
$this->maxPerPage = $max;
if ($this->page == 0) {
$this->page = 1;
}
}
else {
if ($max == 0) {
$this->maxPerPage = 0;
$this->page = 0;
} else {
$this->maxPerPage = 1;
if ($this->page == 0) {
$this->page = 1;
}
}
}
}
/**
* Returns true if on the first page.
*
* @return boolean
*/
public function isFirstPage()
{
return 1 == $this->page;
}
/**
* Returns true if on the last page.
*
* @return boolean
*/
public function isLastPage()
{
return $this->page == $this->lastPage;
}
/**
* Returns the current pager's parameter holder.
*
* @return sfParameterHolder
*/
public function getParameters()
{
return $this->parameters;
}
/**
* Returns a parameter.
*
* @param string $name
* @param mixed $default
*
* @return mixed
*/
public function getParameter($name, $default = null)
{
return isset($this->parameters[$name]) ? $this->parameters[$name] : $default;
}
/**
* Checks whether a parameter has been set.
*
* @param string $name
*
* @return boolean
*/
public function hasParameter($name)
{
return isset($this->parameters[$name]);
}
/**
* Sets a parameter.
*
* @param string $name
* @param mixed $value
*/
public function setParameter($name, $value)
{
$this->parameters[$name] = $value;
}
/**
* Returns true if the properties used for iteration have been initialized.
*
* @return boolean
*/
protected function isIteratorInitialized()
{
return null !== $this->results;
}
/**
* Loads data into properties used for iteration.
*/
protected function initializeIterator()
{
$this->results = $this->getResults();
$this->resultsCounter = count($this->results);
}
/**
* Empties properties used for iteration.
*/
protected function resetIterator()
{
$this->results = null;
$this->resultsCounter = 0;
}
/**
* Returns the current result.
*
* @see Iterator
*/
public function current()
{
if (!$this->isIteratorInitialized()) {
$this->initializeIterator();
}
return current($this->results);
}
/**
* Returns the current key.
*
* @see Iterator
*/
public function key()
{
if (!$this->isIteratorInitialized()) {
$this->initializeIterator();
}
return key($this->results);
}
/**
* Advances the internal pointer and returns the current result.
*
* @see Iterator
*/
public function next()
{
if (!$this->isIteratorInitialized()) {
$this->initializeIterator();
}
--$this->resultsCounter;
return next($this->results);
}
/**
* Resets the internal pointer and returns the current result.
*
* @see Iterator
*/
public function rewind()
{
if (!$this->isIteratorInitialized()) {
$this->initializeIterator();
}
$this->resultsCounter = count($this->results);
return reset($this->results);
}
/**
* Returns true if pointer is within bounds.
*
* @see Iterator
*/
public function valid()
{
if (!$this->isIteratorInitialized()) {
$this->initializeIterator();
}
return $this->resultsCounter > 0;
}
/**
* Returns the total number of results.
*
* @see Countable
*/
public function count()
{
return $this->getNbResults();
}
/**
* Serialize the pager object
*
* @return string $serialized
*/
public function serialize()
{
$vars = get_object_vars($this);
unset($vars['query']);
return serialize($vars);
}
/**
* Unserialize a pager object
*
* @param string $serialized
*/
public function unserialize($serialized)
{
$array = unserialize($serialized);
foreach ($array as $name => $values)
{
$this->$name = $values;
}
}
public function getCountColumn()
{
return $this->countColumn;
}
public function setCountColumn(array $countColumn) {
return $this->countColumn = $countColumn;
}
/**
* Retrieve the object for a certain offset
*
* @param integer $offset
*
* @return object
*/
protected function retrieveObject($offset)
{
$queryForRetrieve = clone $this->getQuery();
$queryForRetrieve
->setFirstResult($offset - 1)
->setMaxResults(1);
$results = $queryForRetrieve->execute();
return $results[0];
}
public function setQuery($query)
{
$this->query = $query;
}
public function getQuery()
{
return $this->query;
}
}