99dbd1c8e0739269813f4c498495f447e3426c4f
[lhc/web/wiklou.git] / includes / Pager.php
1 <?php
2 /**
3 * @defgroup Pager Pager
4 *
5 * @file
6 * @ingroup Pager
7 */
8
9 /**
10 * Basic pager interface.
11 * @ingroup Pager
12 */
13 interface Pager {
14 function getNavigationBar();
15 function getBody();
16 }
17
18 /**
19 * IndexPager is an efficient pager which uses a (roughly unique) index in the
20 * data set to implement paging, rather than a "LIMIT offset,limit" clause.
21 * In MySQL, such a limit/offset clause requires counting through the
22 * specified number of offset rows to find the desired data, which can be
23 * expensive for large offsets.
24 *
25 * ReverseChronologicalPager is a child class of the abstract IndexPager, and
26 * contains some formatting and display code which is specific to the use of
27 * timestamps as indexes. Here is a synopsis of its operation:
28 *
29 * * The query is specified by the offset, limit and direction (dir)
30 * parameters, in addition to any subclass-specific parameters.
31 * * The offset is the non-inclusive start of the DB query. A row with an
32 * index value equal to the offset will never be shown.
33 * * The query may either be done backwards, where the rows are returned by
34 * the database in the opposite order to which they are displayed to the
35 * user, or forwards. This is specified by the "dir" parameter, dir=prev
36 * means backwards, anything else means forwards. The offset value
37 * specifies the start of the database result set, which may be either
38 * the start or end of the displayed data set. This allows "previous"
39 * links to be implemented without knowledge of the index value at the
40 * start of the previous page.
41 * * An additional row beyond the user-specified limit is always requested.
42 * This allows us to tell whether we should display a "next" link in the
43 * case of forwards mode, or a "previous" link in the case of backwards
44 * mode. Determining whether to display the other link (the one for the
45 * page before the start of the database result set) can be done
46 * heuristically by examining the offset.
47 *
48 * * An empty offset indicates that the offset condition should be omitted
49 * from the query. This naturally produces either the first page or the
50 * last page depending on the dir parameter.
51 *
52 * Subclassing the pager to implement concrete functionality should be fairly
53 * simple, please see the examples in HistoryPage.php and
54 * SpecialBlockList.php. You just need to override formatRow(),
55 * getQueryInfo() and getIndexField(). Don't forget to call the parent
56 * constructor if you override it.
57 *
58 * @ingroup Pager
59 */
60 abstract class IndexPager extends ContextSource implements Pager {
61 public $mRequest;
62 public $mLimitsShown = array( 20, 50, 100, 250, 500 );
63 public $mDefaultLimit = 50;
64 public $mOffset, $mLimit;
65 public $mQueryDone = false;
66 public $mDb;
67 public $mPastTheEndRow;
68
69 /**
70 * The index to actually be used for ordering. This is a single column,
71 * for one ordering, even if multiple orderings are supported.
72 */
73 protected $mIndexField;
74 /**
75 * An array of secondary columns to order by. These fields are not part of the offset.
76 * This is a column list for one ordering, even if multiple orderings are supported.
77 */
78 protected $mExtraSortFields;
79 /** For pages that support multiple types of ordering, which one to use.
80 */
81 protected $mOrderType;
82 /**
83 * $mDefaultDirection gives the direction to use when sorting results:
84 * false for ascending, true for descending. If $mIsBackwards is set, we
85 * start from the opposite end, but we still sort the page itself according
86 * to $mDefaultDirection. E.g., if $mDefaultDirection is false but we're
87 * going backwards, we'll display the last page of results, but the last
88 * result will be at the bottom, not the top.
89 *
90 * Like $mIndexField, $mDefaultDirection will be a single value even if the
91 * class supports multiple default directions for different order types.
92 */
93 public $mDefaultDirection;
94 public $mIsBackwards;
95
96 /** True if the current result set is the first one */
97 public $mIsFirst;
98 public $mIsLast;
99
100 protected $mLastShown, $mFirstShown, $mPastTheEndIndex, $mDefaultQuery, $mNavigationBar;
101
102 /**
103 * Result object for the query. Warning: seek before use.
104 *
105 * @var ResultWrapper
106 */
107 public $mResult;
108
109 public function __construct( IContextSource $context = null ) {
110 if ( $context ) {
111 $this->setContext( $context );
112 }
113
114 $this->mRequest = $this->getRequest();
115
116 # NB: the offset is quoted, not validated. It is treated as an
117 # arbitrary string to support the widest variety of index types. Be
118 # careful outputting it into HTML!
119 $this->mOffset = $this->mRequest->getText( 'offset' );
120
121 # Use consistent behavior for the limit options
122 $this->mDefaultLimit = intval( $this->getUser()->getOption( 'rclimit' ) );
123 list( $this->mLimit, /* $offset */ ) = $this->mRequest->getLimitOffset();
124
125 $this->mIsBackwards = ( $this->mRequest->getVal( 'dir' ) == 'prev' );
126 $this->mDb = wfGetDB( DB_SLAVE );
127
128 $index = $this->getIndexField(); // column to sort on
129 $extraSort = $this->getExtraSortFields(); // extra columns to sort on for query planning
130 $order = $this->mRequest->getVal( 'order' );
131 if( is_array( $index ) && isset( $index[$order] ) ) {
132 $this->mOrderType = $order;
133 $this->mIndexField = $index[$order];
134 $this->mExtraSortFields = isset( $extraSort[$order] )
135 ? (array)$extraSort[$order]
136 : array();
137 } elseif( is_array( $index ) ) {
138 # First element is the default
139 reset( $index );
140 list( $this->mOrderType, $this->mIndexField ) = each( $index );
141 $this->mExtraSortFields = isset( $extraSort[$this->mOrderType] )
142 ? (array)$extraSort[$this->mOrderType]
143 : array();
144 } else {
145 # $index is not an array
146 $this->mOrderType = null;
147 $this->mIndexField = $index;
148 $this->mExtraSortFields = (array)$extraSort;
149 }
150
151 if( !isset( $this->mDefaultDirection ) ) {
152 $dir = $this->getDefaultDirections();
153 $this->mDefaultDirection = is_array( $dir )
154 ? $dir[$this->mOrderType]
155 : $dir;
156 }
157 }
158
159 /**
160 * Do the query, using information from the object context. This function
161 * has been kept minimal to make it overridable if necessary, to allow for
162 * result sets formed from multiple DB queries.
163 */
164 public function doQuery() {
165 # Use the child class name for profiling
166 $fname = __METHOD__ . ' (' . get_class( $this ) . ')';
167 wfProfileIn( $fname );
168
169 $descending = ( $this->mIsBackwards == $this->mDefaultDirection );
170 # Plus an extra row so that we can tell the "next" link should be shown
171 $queryLimit = $this->mLimit + 1;
172
173 $this->mResult = $this->reallyDoQuery(
174 $this->mOffset,
175 $queryLimit,
176 $descending
177 );
178 $this->extractResultInfo( $this->mOffset, $queryLimit, $this->mResult );
179 $this->mQueryDone = true;
180
181 $this->preprocessResults( $this->mResult );
182 $this->mResult->rewind(); // Paranoia
183
184 wfProfileOut( $fname );
185 }
186
187 /**
188 * @return ResultWrapper The result wrapper.
189 */
190 function getResult() {
191 return $this->mResult;
192 }
193
194 /**
195 * Set the offset from an other source than the request
196 *
197 * @param $offset Int|String
198 */
199 function setOffset( $offset ) {
200 $this->mOffset = $offset;
201 }
202 /**
203 * Set the limit from an other source than the request
204 *
205 * @param $limit Int|String
206 */
207 function setLimit( $limit ) {
208 $this->mLimit = $limit;
209 }
210
211 /**
212 * Extract some useful data from the result object for use by
213 * the navigation bar, put it into $this
214 *
215 * @param $offset String: index offset, inclusive
216 * @param $limit Integer: exact query limit
217 * @param $res ResultWrapper
218 */
219 function extractResultInfo( $offset, $limit, ResultWrapper $res ) {
220 $numRows = $res->numRows();
221 if ( $numRows ) {
222 # Remove any table prefix from index field
223 $parts = explode( '.', $this->mIndexField );
224 $indexColumn = end( $parts );
225
226 $row = $res->fetchRow();
227 $firstIndex = $row[$indexColumn];
228
229 # Discard the extra result row if there is one
230 if ( $numRows > $this->mLimit && $numRows > 1 ) {
231 $res->seek( $numRows - 1 );
232 $this->mPastTheEndRow = $res->fetchObject();
233 $indexField = $this->mIndexField;
234 $this->mPastTheEndIndex = $this->mPastTheEndRow->$indexField;
235 $res->seek( $numRows - 2 );
236 $row = $res->fetchRow();
237 $lastIndex = $row[$indexColumn];
238 } else {
239 $this->mPastTheEndRow = null;
240 # Setting indexes to an empty string means that they will be
241 # omitted if they would otherwise appear in URLs. It just so
242 # happens that this is the right thing to do in the standard
243 # UI, in all the relevant cases.
244 $this->mPastTheEndIndex = '';
245 $res->seek( $numRows - 1 );
246 $row = $res->fetchRow();
247 $lastIndex = $row[$indexColumn];
248 }
249 } else {
250 $firstIndex = '';
251 $lastIndex = '';
252 $this->mPastTheEndRow = null;
253 $this->mPastTheEndIndex = '';
254 }
255
256 if ( $this->mIsBackwards ) {
257 $this->mIsFirst = ( $numRows < $limit );
258 $this->mIsLast = ( $offset == '' );
259 $this->mLastShown = $firstIndex;
260 $this->mFirstShown = $lastIndex;
261 } else {
262 $this->mIsFirst = ( $offset == '' );
263 $this->mIsLast = ( $numRows < $limit );
264 $this->mLastShown = $lastIndex;
265 $this->mFirstShown = $firstIndex;
266 }
267 }
268
269 /**
270 * Get some text to go in brackets in the "function name" part of the SQL comment
271 *
272 * @return String
273 */
274 function getSqlComment() {
275 return get_class( $this );
276 }
277
278 /**
279 * Do a query with specified parameters, rather than using the object
280 * context
281 *
282 * @param $offset String: index offset, inclusive
283 * @param $limit Integer: exact query limit
284 * @param $descending Boolean: query direction, false for ascending, true for descending
285 * @return ResultWrapper
286 */
287 function reallyDoQuery( $offset, $limit, $descending ) {
288 $fname = __METHOD__ . ' (' . $this->getSqlComment() . ')';
289 $info = $this->getQueryInfo();
290 $tables = $info['tables'];
291 $fields = $info['fields'];
292 $conds = isset( $info['conds'] ) ? $info['conds'] : array();
293 $options = isset( $info['options'] ) ? $info['options'] : array();
294 $join_conds = isset( $info['join_conds'] ) ? $info['join_conds'] : array();
295 $sortColumns = array_merge( array( $this->mIndexField ), $this->mExtraSortFields );
296 if ( $descending ) {
297 $options['ORDER BY'] = implode( ',', $sortColumns );
298 $operator = '>';
299 } else {
300 $orderBy = array();
301 foreach ( $sortColumns as $col ) {
302 $orderBy[] = $col . ' DESC';
303 }
304 $options['ORDER BY'] = implode( ',', $orderBy );
305 $operator = '<';
306 }
307 if ( $offset != '' ) {
308 $conds[] = $this->mIndexField . $operator . $this->mDb->addQuotes( $offset );
309 }
310 $options['LIMIT'] = intval( $limit );
311 $res = $this->mDb->select( $tables, $fields, $conds, $fname, $options, $join_conds );
312 return new ResultWrapper( $this->mDb, $res );
313 }
314
315 /**
316 * Pre-process results; useful for performing batch existence checks, etc.
317 *
318 * @param $result ResultWrapper
319 */
320 protected function preprocessResults( $result ) {}
321
322 /**
323 * Get the formatted result list. Calls getStartBody(), formatRow() and
324 * getEndBody(), concatenates the results and returns them.
325 *
326 * @return String
327 */
328 function getBody() {
329 if ( !$this->mQueryDone ) {
330 $this->doQuery();
331 }
332 # Don't use any extra rows returned by the query
333 $numRows = min( $this->mResult->numRows(), $this->mLimit );
334
335 $s = $this->getStartBody();
336 if ( $numRows ) {
337 if ( $this->mIsBackwards ) {
338 for ( $i = $numRows - 1; $i >= 0; $i-- ) {
339 $this->mResult->seek( $i );
340 $row = $this->mResult->fetchObject();
341 $s .= $this->formatRow( $row );
342 }
343 } else {
344 $this->mResult->seek( 0 );
345 for ( $i = 0; $i < $numRows; $i++ ) {
346 $row = $this->mResult->fetchObject();
347 $s .= $this->formatRow( $row );
348 }
349 }
350 } else {
351 $s .= $this->getEmptyBody();
352 }
353 $s .= $this->getEndBody();
354 return $s;
355 }
356
357 /**
358 * Make a self-link
359 *
360 * @param $text String: text displayed on the link
361 * @param $query Array: associative array of paramter to be in the query string
362 * @param $type String: value of the "rel" attribute
363 * @return String: HTML fragment
364 */
365 function makeLink($text, $query = null, $type=null) {
366 if ( $query === null ) {
367 return $text;
368 }
369
370 $attrs = array();
371 if( in_array( $type, array( 'first', 'prev', 'next', 'last' ) ) ) {
372 # HTML5 rel attributes
373 $attrs['rel'] = $type;
374 }
375
376 if( $type ) {
377 $attrs['class'] = "mw-{$type}link";
378 }
379 return Linker::linkKnown(
380 $this->getTitle(),
381 $text,
382 $attrs,
383 $query + $this->getDefaultQuery()
384 );
385 }
386
387 /**
388 * Hook into getBody(), allows text to be inserted at the start. This
389 * will be called even if there are no rows in the result set.
390 *
391 * @return String
392 */
393 function getStartBody() {
394 return '';
395 }
396
397 /**
398 * Hook into getBody() for the end of the list
399 *
400 * @return String
401 */
402 function getEndBody() {
403 return '';
404 }
405
406 /**
407 * Hook into getBody(), for the bit between the start and the
408 * end when there are no rows
409 *
410 * @return String
411 */
412 function getEmptyBody() {
413 return '';
414 }
415
416 /**
417 * Get an array of query parameters that should be put into self-links.
418 * By default, all parameters passed in the URL are used, except for a
419 * short blacklist.
420 *
421 * @return Associative array
422 */
423 function getDefaultQuery() {
424 if ( !isset( $this->mDefaultQuery ) ) {
425 $this->mDefaultQuery = $this->getRequest()->getQueryValues();
426 unset( $this->mDefaultQuery['title'] );
427 unset( $this->mDefaultQuery['dir'] );
428 unset( $this->mDefaultQuery['offset'] );
429 unset( $this->mDefaultQuery['limit'] );
430 unset( $this->mDefaultQuery['order'] );
431 unset( $this->mDefaultQuery['month'] );
432 unset( $this->mDefaultQuery['year'] );
433 }
434 return $this->mDefaultQuery;
435 }
436
437 /**
438 * Get the number of rows in the result set
439 *
440 * @return Integer
441 */
442 function getNumRows() {
443 if ( !$this->mQueryDone ) {
444 $this->doQuery();
445 }
446 return $this->mResult->numRows();
447 }
448
449 /**
450 * Get a URL query array for the prev, next, first and last links.
451 *
452 * @return Array
453 */
454 function getPagingQueries() {
455 if ( !$this->mQueryDone ) {
456 $this->doQuery();
457 }
458
459 # Don't announce the limit everywhere if it's the default
460 $urlLimit = $this->mLimit == $this->mDefaultLimit ? '' : $this->mLimit;
461
462 if ( $this->mIsFirst ) {
463 $prev = false;
464 $first = false;
465 } else {
466 $prev = array(
467 'dir' => 'prev',
468 'offset' => $this->mFirstShown,
469 'limit' => $urlLimit
470 );
471 $first = array( 'limit' => $urlLimit );
472 }
473 if ( $this->mIsLast ) {
474 $next = false;
475 $last = false;
476 } else {
477 $next = array( 'offset' => $this->mLastShown, 'limit' => $urlLimit );
478 $last = array( 'dir' => 'prev', 'limit' => $urlLimit );
479 }
480 return array(
481 'prev' => $prev,
482 'next' => $next,
483 'first' => $first,
484 'last' => $last
485 );
486 }
487
488 /**
489 * Returns whether to show the "navigation bar"
490 *
491 * @return Boolean
492 */
493 function isNavigationBarShown() {
494 if ( !$this->mQueryDone ) {
495 $this->doQuery();
496 }
497 // Hide navigation by default if there is nothing to page
498 return !($this->mIsFirst && $this->mIsLast);
499 }
500
501 /**
502 * Get paging links. If a link is disabled, the item from $disabledTexts
503 * will be used. If there is no such item, the unlinked text from
504 * $linkTexts will be used. Both $linkTexts and $disabledTexts are arrays
505 * of HTML.
506 *
507 * @param $linkTexts Array
508 * @param $disabledTexts Array
509 * @return Array
510 */
511 function getPagingLinks( $linkTexts, $disabledTexts = array() ) {
512 $queries = $this->getPagingQueries();
513 $links = array();
514 foreach ( $queries as $type => $query ) {
515 if ( $query !== false ) {
516 $links[$type] = $this->makeLink(
517 $linkTexts[$type],
518 $queries[$type],
519 $type
520 );
521 } elseif ( isset( $disabledTexts[$type] ) ) {
522 $links[$type] = $disabledTexts[$type];
523 } else {
524 $links[$type] = $linkTexts[$type];
525 }
526 }
527 return $links;
528 }
529
530 function getLimitLinks() {
531 $links = array();
532 if ( $this->mIsBackwards ) {
533 $offset = $this->mPastTheEndIndex;
534 } else {
535 $offset = $this->mOffset;
536 }
537 foreach ( $this->mLimitsShown as $limit ) {
538 $links[] = $this->makeLink(
539 $this->getLang()->formatNum( $limit ),
540 array( 'offset' => $offset, 'limit' => $limit ),
541 'num'
542 );
543 }
544 return $links;
545 }
546
547 /**
548 * Abstract formatting function. This should return an HTML string
549 * representing the result row $row. Rows will be concatenated and
550 * returned by getBody()
551 *
552 * @param $row Object: database row
553 * @return String
554 */
555 abstract function formatRow( $row );
556
557 /**
558 * This function should be overridden to provide all parameters
559 * needed for the main paged query. It returns an associative
560 * array with the following elements:
561 * tables => Table(s) for passing to Database::select()
562 * fields => Field(s) for passing to Database::select(), may be *
563 * conds => WHERE conditions
564 * options => option array
565 * join_conds => JOIN conditions
566 *
567 * @return Array
568 */
569 abstract function getQueryInfo();
570
571 /**
572 * This function should be overridden to return the name of the index fi-
573 * eld. If the pager supports multiple orders, it may return an array of
574 * 'querykey' => 'indexfield' pairs, so that a request with &count=querykey
575 * will use indexfield to sort. In this case, the first returned key is
576 * the default.
577 *
578 * Needless to say, it's really not a good idea to use a non-unique index
579 * for this! That won't page right.
580 *
581 * @return string|Array
582 */
583 abstract function getIndexField();
584
585 /**
586 * This function should be overridden to return the names of secondary columns
587 * to order by in addition to the column in getIndexField(). These fields will
588 * not be used in the pager offset or in any links for users.
589 *
590 * If getIndexField() returns an array of 'querykey' => 'indexfield' pairs then
591 * this must return a corresponding array of 'querykey' => array( fields...) pairs
592 * in order for a request with &count=querykey to use array( fields...) to sort.
593 *
594 * This is useful for pagers that GROUP BY a unique column (say page_id)
595 * and ORDER BY another (say page_len). Using GROUP BY and ORDER BY both on
596 * page_len,page_id avoids temp tables (given a page_len index). This would
597 * also work if page_id was non-unique but we had a page_len,page_id index.
598 *
599 * @return Array
600 */
601 protected function getExtraSortFields() { return array(); }
602
603 /**
604 * Return the default sorting direction: false for ascending, true for de-
605 * scending. You can also have an associative array of ordertype => dir,
606 * if multiple order types are supported. In this case getIndexField()
607 * must return an array, and the keys of that must exactly match the keys
608 * of this.
609 *
610 * For backward compatibility, this method's return value will be ignored
611 * if $this->mDefaultDirection is already set when the constructor is
612 * called, for instance if it's statically initialized. In that case the
613 * value of that variable (which must be a boolean) will be used.
614 *
615 * Note that despite its name, this does not return the value of the
616 * $this->mDefaultDirection member variable. That's the default for this
617 * particular instantiation, which is a single value. This is the set of
618 * all defaults for the class.
619 *
620 * @return Boolean
621 */
622 protected function getDefaultDirections() { return false; }
623 }
624
625
626 /**
627 * IndexPager with an alphabetic list and a formatted navigation bar
628 * @ingroup Pager
629 */
630 abstract class AlphabeticPager extends IndexPager {
631
632 /**
633 * Shamelessly stolen bits from ReverseChronologicalPager,
634 * didn't want to do class magic as may be still revamped
635 *
636 * @return String HTML
637 */
638 function getNavigationBar() {
639 if ( !$this->isNavigationBarShown() ) return '';
640
641 if( isset( $this->mNavigationBar ) ) {
642 return $this->mNavigationBar;
643 }
644
645 $lang = $this->getLang();
646
647 $opts = array( 'parsemag', 'escapenoentities' );
648 $linkTexts = array(
649 'prev' => wfMsgExt(
650 'prevn',
651 $opts,
652 $lang->formatNum( $this->mLimit )
653 ),
654 'next' => wfMsgExt(
655 'nextn',
656 $opts,
657 $lang->formatNum($this->mLimit )
658 ),
659 'first' => wfMsgExt( 'page_first', $opts ),
660 'last' => wfMsgExt( 'page_last', $opts )
661 );
662
663 $pagingLinks = $this->getPagingLinks( $linkTexts );
664 $limitLinks = $this->getLimitLinks();
665 $limits = $lang->pipeList( $limitLinks );
666
667 $this->mNavigationBar =
668 "(" . $lang->pipeList(
669 array( $pagingLinks['first'],
670 $pagingLinks['last'] )
671 ) . ") " .
672 wfMsgHtml( 'viewprevnext', $pagingLinks['prev'],
673 $pagingLinks['next'], $limits );
674
675 if( !is_array( $this->getIndexField() ) ) {
676 # Early return to avoid undue nesting
677 return $this->mNavigationBar;
678 }
679
680 $extra = '';
681 $first = true;
682 $msgs = $this->getOrderTypeMessages();
683 foreach( array_keys( $msgs ) as $order ) {
684 if( $first ) {
685 $first = false;
686 } else {
687 $extra .= wfMsgExt( 'pipe-separator' , 'escapenoentities' );
688 }
689
690 if( $order == $this->mOrderType ) {
691 $extra .= wfMsgHTML( $msgs[$order] );
692 } else {
693 $extra .= $this->makeLink(
694 wfMsgHTML( $msgs[$order] ),
695 array( 'order' => $order )
696 );
697 }
698 }
699
700 if( $extra !== '' ) {
701 $this->mNavigationBar .= " ($extra)";
702 }
703
704 return $this->mNavigationBar;
705 }
706
707 /**
708 * If this supports multiple order type messages, give the message key for
709 * enabling each one in getNavigationBar. The return type is an associa-
710 * tive array whose keys must exactly match the keys of the array returned
711 * by getIndexField(), and whose values are message keys.
712 *
713 * @return Array
714 */
715 protected function getOrderTypeMessages() {
716 return null;
717 }
718 }
719
720 /**
721 * IndexPager with a formatted navigation bar
722 * @ingroup Pager
723 */
724 abstract class ReverseChronologicalPager extends IndexPager {
725 public $mDefaultDirection = true;
726 public $mYear;
727 public $mMonth;
728
729 function getNavigationBar() {
730 if ( !$this->isNavigationBarShown() ) {
731 return '';
732 }
733
734 if ( isset( $this->mNavigationBar ) ) {
735 return $this->mNavigationBar;
736 }
737
738 $nicenumber = $this->getLang()->formatNum( $this->mLimit );
739 $linkTexts = array(
740 'prev' => wfMsgExt(
741 'pager-newer-n',
742 array( 'parsemag', 'escape' ),
743 $nicenumber
744 ),
745 'next' => wfMsgExt(
746 'pager-older-n',
747 array( 'parsemag', 'escape' ),
748 $nicenumber
749 ),
750 'first' => wfMsgHtml( 'histlast' ),
751 'last' => wfMsgHtml( 'histfirst' )
752 );
753
754 $pagingLinks = $this->getPagingLinks( $linkTexts );
755 $limitLinks = $this->getLimitLinks();
756 $limits = $this->getLang()->pipeList( $limitLinks );
757
758 $this->mNavigationBar = "({$pagingLinks['first']}" .
759 wfMsgExt( 'pipe-separator' , 'escapenoentities' ) .
760 "{$pagingLinks['last']}) " .
761 wfMsgHTML(
762 'viewprevnext',
763 $pagingLinks['prev'], $pagingLinks['next'],
764 $limits
765 );
766 return $this->mNavigationBar;
767 }
768
769 function getDateCond( $year, $month ) {
770 $year = intval($year);
771 $month = intval($month);
772 // Basic validity checks
773 $this->mYear = $year > 0 ? $year : false;
774 $this->mMonth = ($month > 0 && $month < 13) ? $month : false;
775 // Given an optional year and month, we need to generate a timestamp
776 // to use as "WHERE rev_timestamp <= result"
777 // Examples: year = 2006 equals < 20070101 (+000000)
778 // year=2005, month=1 equals < 20050201
779 // year=2005, month=12 equals < 20060101
780 if ( !$this->mYear && !$this->mMonth ) {
781 return;
782 }
783 if ( $this->mYear ) {
784 $year = $this->mYear;
785 } else {
786 // If no year given, assume the current one
787 $year = gmdate( 'Y' );
788 // If this month hasn't happened yet this year, go back to last year's month
789 if( $this->mMonth > gmdate( 'n' ) ) {
790 $year--;
791 }
792 }
793 if ( $this->mMonth ) {
794 $month = $this->mMonth + 1;
795 // For December, we want January 1 of the next year
796 if ($month > 12) {
797 $month = 1;
798 $year++;
799 }
800 } else {
801 // No month implies we want up to the end of the year in question
802 $month = 1;
803 $year++;
804 }
805 // Y2K38 bug
806 if ( $year > 2032 ) {
807 $year = 2032;
808 }
809 $ymd = (int)sprintf( "%04d%02d01", $year, $month );
810 if ( $ymd > 20320101 ) {
811 $ymd = 20320101;
812 }
813 $this->mOffset = $this->mDb->timestamp( "${ymd}000000" );
814 }
815 }
816
817 /**
818 * Table-based display with a user-selectable sort order
819 * @ingroup Pager
820 */
821 abstract class TablePager extends IndexPager {
822 var $mSort;
823 var $mCurrentRow;
824
825 function __construct( IContextSource $context = null ) {
826 if ( $context ) {
827 $this->setContext( $context );
828 }
829
830 $this->mSort = $this->getRequest()->getText( 'sort' );
831 if ( !array_key_exists( $this->mSort, $this->getFieldNames() ) ) {
832 $this->mSort = $this->getDefaultSort();
833 }
834 if ( $this->getRequest()->getBool( 'asc' ) ) {
835 $this->mDefaultDirection = false;
836 } elseif ( $this->getRequest()->getBool( 'desc' ) ) {
837 $this->mDefaultDirection = true;
838 } /* Else leave it at whatever the class default is */
839
840 parent::__construct();
841 }
842
843 function getStartBody() {
844 global $wgStylePath;
845 $tableClass = htmlspecialchars( $this->getTableClass() );
846 $sortClass = htmlspecialchars( $this->getSortHeaderClass() );
847
848 $s = "<table style='border:1;' class=\"mw-datatable $tableClass\"><thead><tr>\n";
849 $fields = $this->getFieldNames();
850
851 # Make table header
852 foreach ( $fields as $field => $name ) {
853 if ( strval( $name ) == '' ) {
854 $s .= "<th>&#160;</th>\n";
855 } elseif ( $this->isFieldSortable( $field ) ) {
856 $query = array( 'sort' => $field, 'limit' => $this->mLimit );
857 if ( $field == $this->mSort ) {
858 # This is the sorted column
859 # Prepare a link that goes in the other sort order
860 if ( $this->mDefaultDirection ) {
861 # Descending
862 $image = 'Arr_d.png';
863 $query['asc'] = '1';
864 $query['desc'] = '';
865 $alt = htmlspecialchars( wfMsg( 'descending_abbrev' ) );
866 } else {
867 # Ascending
868 $image = 'Arr_u.png';
869 $query['asc'] = '';
870 $query['desc'] = '1';
871 $alt = htmlspecialchars( wfMsg( 'ascending_abbrev' ) );
872 }
873 $image = htmlspecialchars( "$wgStylePath/common/images/$image" );
874 $link = $this->makeLink(
875 "<img width=\"12\" height=\"12\" alt=\"$alt\" src=\"$image\" />" .
876 htmlspecialchars( $name ), $query );
877 $s .= "<th class=\"$sortClass\">$link</th>\n";
878 } else {
879 $s .= '<th>' . $this->makeLink( htmlspecialchars( $name ), $query ) . "</th>\n";
880 }
881 } else {
882 $s .= '<th>' . htmlspecialchars( $name ) . "</th>\n";
883 }
884 }
885 $s .= "</tr></thead><tbody>\n";
886 return $s;
887 }
888
889 function getEndBody() {
890 return "</tbody></table>\n";
891 }
892
893 function getEmptyBody() {
894 $colspan = count( $this->getFieldNames() );
895 $msgEmpty = wfMsgHtml( 'table_pager_empty' );
896 return "<tr><td colspan=\"$colspan\">$msgEmpty</td></tr>\n";
897 }
898
899 /**
900 * @param $row Array
901 * @return String HTML
902 */
903 function formatRow( $row ) {
904 $this->mCurrentRow = $row; # In case formatValue etc need to know
905 $s = Xml::openElement( 'tr', $this->getRowAttrs( $row ) );
906 $fieldNames = $this->getFieldNames();
907 foreach ( $fieldNames as $field => $name ) {
908 $value = isset( $row->$field ) ? $row->$field : null;
909 $formatted = strval( $this->formatValue( $field, $value ) );
910 if ( $formatted == '' ) {
911 $formatted = '&#160;';
912 }
913 $s .= Xml::tags( 'td', $this->getCellAttrs( $field, $value ), $formatted );
914 }
915 $s .= "</tr>\n";
916 return $s;
917 }
918
919 /**
920 * Get a class name to be applied to the given row.
921 *
922 * @param $row Object: the database result row
923 * @return String
924 */
925 function getRowClass( $row ) {
926 return '';
927 }
928
929 /**
930 * Get attributes to be applied to the given row.
931 *
932 * @param $row Object: the database result row
933 * @return Array of <attr> => <value>
934 */
935 function getRowAttrs( $row ) {
936 $class = $this->getRowClass( $row );
937 if ( $class === '' ) {
938 // Return an empty array to avoid clutter in HTML like class=""
939 return array();
940 } else {
941 return array( 'class' => $this->getRowClass( $row ) );
942 }
943 }
944
945 /**
946 * Get any extra attributes to be applied to the given cell. Don't
947 * take this as an excuse to hardcode styles; use classes and
948 * CSS instead. Row context is available in $this->mCurrentRow
949 *
950 * @param $field String The column
951 * @param $value String The cell contents
952 * @return Array of attr => value
953 */
954 function getCellAttrs( $field, $value ) {
955 return array( 'class' => 'TablePager_col_' . $field );
956 }
957
958 function getIndexField() {
959 return $this->mSort;
960 }
961
962 function getTableClass() {
963 return 'TablePager';
964 }
965
966 function getNavClass() {
967 return 'TablePager_nav';
968 }
969
970 function getSortHeaderClass() {
971 return 'TablePager_sort';
972 }
973
974 /**
975 * A navigation bar with images
976 * @return String HTML
977 */
978 function getNavigationBar() {
979 global $wgStylePath;
980
981 if ( !$this->isNavigationBarShown() ) {
982 return '';
983 }
984
985 $path = "$wgStylePath/common/images";
986 $labels = array(
987 'first' => 'table_pager_first',
988 'prev' => 'table_pager_prev',
989 'next' => 'table_pager_next',
990 'last' => 'table_pager_last',
991 );
992 $images = array(
993 'first' => 'arrow_first_25.png',
994 'prev' => 'arrow_left_25.png',
995 'next' => 'arrow_right_25.png',
996 'last' => 'arrow_last_25.png',
997 );
998 $disabledImages = array(
999 'first' => 'arrow_disabled_first_25.png',
1000 'prev' => 'arrow_disabled_left_25.png',
1001 'next' => 'arrow_disabled_right_25.png',
1002 'last' => 'arrow_disabled_last_25.png',
1003 );
1004 if( $this->getLang()->isRTL() ) {
1005 $keys = array_keys( $labels );
1006 $images = array_combine( $keys, array_reverse( $images ) );
1007 $disabledImages = array_combine( $keys, array_reverse( $disabledImages ) );
1008 }
1009
1010 $linkTexts = array();
1011 $disabledTexts = array();
1012 foreach ( $labels as $type => $label ) {
1013 $msgLabel = wfMsgHtml( $label );
1014 $linkTexts[$type] = "<img src=\"$path/{$images[$type]}\" alt=\"$msgLabel\"/><br />$msgLabel";
1015 $disabledTexts[$type] = "<img src=\"$path/{$disabledImages[$type]}\" alt=\"$msgLabel\"/><br />$msgLabel";
1016 }
1017 $links = $this->getPagingLinks( $linkTexts, $disabledTexts );
1018
1019 $navClass = htmlspecialchars( $this->getNavClass() );
1020 $s = "<table class=\"$navClass\"><tr>\n";
1021 $width = 100 / count( $links ) . '%';
1022 foreach ( $labels as $type => $label ) {
1023 $s .= "<td style='width:$width;'>{$links[$type]}</td>\n";
1024 }
1025 $s .= "</tr></table>\n";
1026 return $s;
1027 }
1028
1029 /**
1030 * Get a <select> element which has options for each of the allowed limits
1031 *
1032 * @return String: HTML fragment
1033 */
1034 function getLimitSelect() {
1035 # Add the current limit from the query string
1036 # to avoid that the limit is lost after clicking Go next time
1037 if ( !in_array( $this->mLimit, $this->mLimitsShown ) ) {
1038 $this->mLimitsShown[] = $this->mLimit;
1039 sort( $this->mLimitsShown );
1040 }
1041 $s = Html::openElement( 'select', array( 'name' => 'limit' ) ) . "\n";
1042 foreach ( $this->mLimitsShown as $key => $value ) {
1043 # The pair is either $index => $limit, in which case the $value
1044 # will be numeric, or $limit => $text, in which case the $value
1045 # will be a string.
1046 if( is_int( $value ) ){
1047 $limit = $value;
1048 $text = $this->getLang()->formatNum( $limit );
1049 } else {
1050 $limit = $key;
1051 $text = $value;
1052 }
1053 $s .= Xml::option( $text, $limit, $limit == $this->mLimit ) . "\n";
1054 }
1055 $s .= Html::closeElement( 'select' );
1056 return $s;
1057 }
1058
1059 /**
1060 * Get <input type="hidden"> elements for use in a method="get" form.
1061 * Resubmits all defined elements of the query string, except for a
1062 * blacklist, passed in the $blacklist parameter.
1063 *
1064 * @param $blacklist Array parameters from the request query which should not be resubmitted
1065 * @return String: HTML fragment
1066 */
1067 function getHiddenFields( $blacklist = array() ) {
1068 $blacklist = (array)$blacklist;
1069 $query = $this->getRequest()->getQueryValues();
1070 foreach ( $blacklist as $name ) {
1071 unset( $query[$name] );
1072 }
1073 $s = '';
1074 foreach ( $query as $name => $value ) {
1075 $encName = htmlspecialchars( $name );
1076 $encValue = htmlspecialchars( $value );
1077 $s .= "<input type=\"hidden\" name=\"$encName\" value=\"$encValue\"/>\n";
1078 }
1079 return $s;
1080 }
1081
1082 /**
1083 * Get a form containing a limit selection dropdown
1084 *
1085 * @return String: HTML fragment
1086 */
1087 function getLimitForm() {
1088 global $wgScript;
1089
1090 return Xml::openElement(
1091 'form',
1092 array(
1093 'method' => 'get',
1094 'action' => $wgScript
1095 ) ) . "\n" . $this->getLimitDropdown() . "</form>\n";
1096 }
1097
1098 /**
1099 * Gets a limit selection dropdown
1100 *
1101 * @return string
1102 */
1103 function getLimitDropdown() {
1104 # Make the select with some explanatory text
1105 $msgSubmit = wfMsgHtml( 'table_pager_limit_submit' );
1106
1107 return wfMsgHtml( 'table_pager_limit', $this->getLimitSelect() ) .
1108 "\n<input type=\"submit\" value=\"$msgSubmit\"/>\n" .
1109 $this->getHiddenFields( array( 'limit' ) );
1110 }
1111
1112 /**
1113 * Return true if the named field should be sortable by the UI, false
1114 * otherwise
1115 *
1116 * @param $field String
1117 */
1118 abstract function isFieldSortable( $field );
1119
1120 /**
1121 * Format a table cell. The return value should be HTML, but use an empty
1122 * string not &#160; for empty cells. Do not include the <td> and </td>.
1123 *
1124 * The current result row is available as $this->mCurrentRow, in case you
1125 * need more context.
1126 *
1127 * @param $name String: the database field name
1128 * @param $value String: the value retrieved from the database
1129 */
1130 abstract function formatValue( $name, $value );
1131
1132 /**
1133 * The database field name used as a default sort order
1134 */
1135 abstract function getDefaultSort();
1136
1137 /**
1138 * An array mapping database field names to a textual description of the
1139 * field name, for use in the table header. The description should be plain
1140 * text, it will be HTML-escaped later.
1141 *
1142 * @return Array
1143 */
1144 abstract function getFieldNames();
1145 }