(bug 23936) - Add "displaytitle" to query/info API
[lhc/web/wiklou.git] / includes / api / ApiQueryInfo.php
1 <?php
2
3 /**
4 * Created on Sep 25, 2006
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once( 'ApiQueryBase.php' );
29 }
30
31 /**
32 * A query module to show basic page information.
33 *
34 * @ingroup API
35 */
36 class ApiQueryInfo extends ApiQueryBase {
37
38 private $fld_protection = false, $fld_talkid = false,
39 $fld_subjectid = false, $fld_url = false,
40 $fld_readable = false, $fld_watched = false,
41 $fld_preload = false;
42
43 public function __construct( $query, $moduleName ) {
44 parent::__construct( $query, $moduleName, 'in' );
45 }
46
47 public function requestExtraData( $pageSet ) {
48 $pageSet->requestField( 'page_restrictions' );
49 $pageSet->requestField( 'page_is_redirect' );
50 $pageSet->requestField( 'page_is_new' );
51 $pageSet->requestField( 'page_counter' );
52 $pageSet->requestField( 'page_touched' );
53 $pageSet->requestField( 'page_latest' );
54 $pageSet->requestField( 'page_len' );
55 }
56
57 /**
58 * Get an array mapping token names to their handler functions.
59 * The prototype for a token function is func($pageid, $title)
60 * it should return a token or false (permission denied)
61 * @return array(tokenname => function)
62 */
63 protected function getTokenFunctions() {
64 // Don't call the hooks twice
65 if ( isset( $this->tokenFunctions ) ) {
66 return $this->tokenFunctions;
67 }
68
69 // If we're in JSON callback mode, no tokens can be obtained
70 if ( !is_null( $this->getMain()->getRequest()->getVal( 'callback' ) ) ) {
71 return array();
72 }
73
74 $this->tokenFunctions = array(
75 'edit' => array( 'ApiQueryInfo', 'getEditToken' ),
76 'delete' => array( 'ApiQueryInfo', 'getDeleteToken' ),
77 'protect' => array( 'ApiQueryInfo', 'getProtectToken' ),
78 'move' => array( 'ApiQueryInfo', 'getMoveToken' ),
79 'block' => array( 'ApiQueryInfo', 'getBlockToken' ),
80 'unblock' => array( 'ApiQueryInfo', 'getUnblockToken' ),
81 'email' => array( 'ApiQueryInfo', 'getEmailToken' ),
82 'import' => array( 'ApiQueryInfo', 'getImportToken' ),
83 );
84 wfRunHooks( 'APIQueryInfoTokens', array( &$this->tokenFunctions ) );
85 return $this->tokenFunctions;
86 }
87
88 public static function getEditToken( $pageid, $title ) {
89 // We could check for $title->userCan('edit') here,
90 // but that's too expensive for this purpose
91 // and would break caching
92 global $wgUser;
93 if ( !$wgUser->isAllowed( 'edit' ) ) {
94 return false;
95 }
96
97 // The edit token is always the same, let's exploit that
98 static $cachedEditToken = null;
99 if ( !is_null( $cachedEditToken ) ) {
100 return $cachedEditToken;
101 }
102
103 $cachedEditToken = $wgUser->editToken();
104 return $cachedEditToken;
105 }
106
107 public static function getDeleteToken( $pageid, $title ) {
108 global $wgUser;
109 if ( !$wgUser->isAllowed( 'delete' ) ) {
110 return false;
111 }
112
113 static $cachedDeleteToken = null;
114 if ( !is_null( $cachedDeleteToken ) ) {
115 return $cachedDeleteToken;
116 }
117
118 $cachedDeleteToken = $wgUser->editToken();
119 return $cachedDeleteToken;
120 }
121
122 public static function getProtectToken( $pageid, $title ) {
123 global $wgUser;
124 if ( !$wgUser->isAllowed( 'protect' ) ) {
125 return false;
126 }
127
128 static $cachedProtectToken = null;
129 if ( !is_null( $cachedProtectToken ) ) {
130 return $cachedProtectToken;
131 }
132
133 $cachedProtectToken = $wgUser->editToken();
134 return $cachedProtectToken;
135 }
136
137 public static function getMoveToken( $pageid, $title ) {
138 global $wgUser;
139 if ( !$wgUser->isAllowed( 'move' ) ) {
140 return false;
141 }
142
143 static $cachedMoveToken = null;
144 if ( !is_null( $cachedMoveToken ) ) {
145 return $cachedMoveToken;
146 }
147
148 $cachedMoveToken = $wgUser->editToken();
149 return $cachedMoveToken;
150 }
151
152 public static function getBlockToken( $pageid, $title ) {
153 global $wgUser;
154 if ( !$wgUser->isAllowed( 'block' ) ) {
155 return false;
156 }
157
158 static $cachedBlockToken = null;
159 if ( !is_null( $cachedBlockToken ) ) {
160 return $cachedBlockToken;
161 }
162
163 $cachedBlockToken = $wgUser->editToken();
164 return $cachedBlockToken;
165 }
166
167 public static function getUnblockToken( $pageid, $title ) {
168 // Currently, this is exactly the same as the block token
169 return self::getBlockToken( $pageid, $title );
170 }
171
172 public static function getEmailToken( $pageid, $title ) {
173 global $wgUser;
174 if ( !$wgUser->canSendEmail() || $wgUser->isBlockedFromEmailUser() ) {
175 return false;
176 }
177
178 static $cachedEmailToken = null;
179 if ( !is_null( $cachedEmailToken ) ) {
180 return $cachedEmailToken;
181 }
182
183 $cachedEmailToken = $wgUser->editToken();
184 return $cachedEmailToken;
185 }
186
187 public static function getImportToken( $pageid, $title ) {
188 global $wgUser;
189 if ( !$wgUser->isAllowed( 'import' ) ) {
190 return false;
191 }
192
193 static $cachedImportToken = null;
194 if ( !is_null( $cachedImportToken ) ) {
195 return $cachedImportToken;
196 }
197
198 $cachedImportToken = $wgUser->editToken();
199 return $cachedImportToken;
200 }
201
202 public function execute() {
203 $this->params = $this->extractRequestParams();
204 if ( !is_null( $this->params['prop'] ) ) {
205 $prop = array_flip( $this->params['prop'] );
206 $this->fld_protection = isset( $prop['protection'] );
207 $this->fld_watched = isset( $prop['watched'] );
208 $this->fld_talkid = isset( $prop['talkid'] );
209 $this->fld_subjectid = isset( $prop['subjectid'] );
210 $this->fld_url = isset( $prop['url'] );
211 $this->fld_readable = isset( $prop['readable'] );
212 $this->fld_preload = isset( $prop['preload'] );
213 $this->fld_displaytitle = isset( $prop['displaytitle'] );
214 }
215
216 $pageSet = $this->getPageSet();
217 $this->titles = $pageSet->getGoodTitles();
218 $this->missing = $pageSet->getMissingTitles();
219 $this->everything = $this->titles + $this->missing;
220 $result = $this->getResult();
221
222 uasort( $this->everything, array( 'Title', 'compare' ) );
223 if ( !is_null( $this->params['continue'] ) ) {
224 // Throw away any titles we're gonna skip so they don't
225 // clutter queries
226 $cont = explode( '|', $this->params['continue'] );
227 if ( count( $cont ) != 2 ) {
228 $this->dieUsage( 'Invalid continue param. You should pass the original ' .
229 'value returned by the previous query', '_badcontinue' );
230 }
231 $conttitle = Title::makeTitleSafe( $cont[0], $cont[1] );
232 foreach ( $this->everything as $pageid => $title ) {
233 if ( Title::compare( $title, $conttitle ) >= 0 ) {
234 break;
235 }
236 unset( $this->titles[$pageid] );
237 unset( $this->missing[$pageid] );
238 unset( $this->everything[$pageid] );
239 }
240 }
241
242 $this->pageRestrictions = $pageSet->getCustomField( 'page_restrictions' );
243 $this->pageIsRedir = $pageSet->getCustomField( 'page_is_redirect' );
244 $this->pageIsNew = $pageSet->getCustomField( 'page_is_new' );
245 $this->pageCounter = $pageSet->getCustomField( 'page_counter' );
246 $this->pageTouched = $pageSet->getCustomField( 'page_touched' );
247 $this->pageLatest = $pageSet->getCustomField( 'page_latest' );
248 $this->pageLength = $pageSet->getCustomField( 'page_len' );
249
250 $db = $this->getDB();
251 // Get protection info if requested
252 if ( $this->fld_protection ) {
253 $this->getProtectionInfo();
254 }
255
256 if ( $this->fld_watched ) {
257 $this->getMain()->setVaryCookie();
258 $this->getWatchedInfo();
259 }
260
261 // Run the talkid/subjectid query if requested
262 if ( $this->fld_talkid || $this->fld_subjectid ) {
263 $this->getTSIDs();
264 }
265
266 if ( $this->fld_displaytitle ) {
267 $this->getDisplayTitle();
268 }
269
270 foreach ( $this->everything as $pageid => $title ) {
271 $pageInfo = $this->extractPageInfo( $pageid, $title );
272 $fit = $result->addValue( array(
273 'query',
274 'pages'
275 ), $pageid, $pageInfo );
276 if ( !$fit ) {
277 $this->setContinueEnumParameter( 'continue',
278 $title->getNamespace() . '|' .
279 $title->getText() );
280 break;
281 }
282 }
283 }
284
285 /**
286 * Get a result array with information about a title
287 * @param $pageid int Page ID (negative for missing titles)
288 * @param $title Title object
289 * @return array
290 */
291 private function extractPageInfo( $pageid, $title ) {
292 $pageInfo = array();
293 if ( $title->exists() ) {
294 $pageInfo['touched'] = wfTimestamp( TS_ISO_8601, $this->pageTouched[$pageid] );
295 $pageInfo['lastrevid'] = intval( $this->pageLatest[$pageid] );
296 $pageInfo['counter'] = intval( $this->pageCounter[$pageid] );
297 $pageInfo['length'] = intval( $this->pageLength[$pageid] );
298
299 if ( $this->pageIsRedir[$pageid] ) {
300 $pageInfo['redirect'] = '';
301 }
302 if ( $this->pageIsNew[$pageid] ) {
303 $pageInfo['new'] = '';
304 }
305 }
306
307 if ( !is_null( $this->params['token'] ) ) {
308 // Don't cache tokens
309 $this->getMain()->setCachePrivate();
310
311 $tokenFunctions = $this->getTokenFunctions();
312 $pageInfo['starttimestamp'] = wfTimestamp( TS_ISO_8601, time() );
313 foreach ( $this->params['token'] as $t ) {
314 $val = call_user_func( $tokenFunctions[$t], $pageid, $title );
315 if ( $val === false ) {
316 $this->setWarning( "Action '$t' is not allowed for the current user" );
317 } else {
318 $pageInfo[$t . 'token'] = $val;
319 }
320 }
321 }
322
323 if ( $this->fld_protection ) {
324 $pageInfo['protection'] = array();
325 if ( isset( $this->protections[$title->getNamespace()][$title->getDBkey()] ) ) {
326 $pageInfo['protection'] =
327 $this->protections[$title->getNamespace()][$title->getDBkey()];
328 }
329 $this->getResult()->setIndexedTagName( $pageInfo['protection'], 'pr' );
330 }
331
332 if ( $this->fld_watched && isset( $this->watched[$title->getNamespace()][$title->getDBkey()] ) ) {
333 $pageInfo['watched'] = '';
334 }
335
336 if ( $this->fld_talkid && isset( $this->talkids[$title->getNamespace()][$title->getDBkey()] ) ) {
337 $pageInfo['talkid'] = $this->talkids[$title->getNamespace()][$title->getDBkey()];
338 }
339
340 if ( $this->fld_subjectid && isset( $this->subjectids[$title->getNamespace()][$title->getDBkey()] ) ) {
341 $pageInfo['subjectid'] = $this->subjectids[$title->getNamespace()][$title->getDBkey()];
342 }
343
344 if ( $this->fld_url ) {
345 $pageInfo['fullurl'] = $title->getFullURL();
346 $pageInfo['editurl'] = $title->getFullURL( 'action=edit' );
347 }
348 if ( $this->fld_readable && $title->userCanRead() ) {
349 $pageInfo['readable'] = '';
350 }
351
352 if ( $this->fld_preload ) {
353 if ( $title->exists() ) {
354 $pageInfo['preload'] = '';
355 } else {
356 $text = null;
357 wfRunHooks( 'EditFormPreloadText', array( &$text, &$title ) );
358
359 $pageInfo['preload'] = $text;
360 }
361 }
362
363 if ( $this->fld_displaytitle ) {
364 if ( isset( $this->displaytitles[$title->getArticleId()] ) ) {
365 $pageInfo['displaytitle'] = $this->displaytitles[$title->getArticleId()];
366 } else {
367 $pageInfo['displaytitle'] = $title;
368 }
369 }
370
371 return $pageInfo;
372 }
373
374 /**
375 * Get information about protections and put it in $protections
376 */
377 private function getProtectionInfo() {
378 $this->protections = array();
379 $db = $this->getDB();
380
381 // Get normal protections for existing titles
382 if ( count( $this->titles ) ) {
383 $this->resetQueryParams();
384 $this->addTables( array( 'page_restrictions', 'page' ) );
385 $this->addWhere( 'page_id=pr_page' );
386 $this->addFields( array( 'pr_page', 'pr_type', 'pr_level',
387 'pr_expiry', 'pr_cascade', 'page_namespace',
388 'page_title' ) );
389 $this->addWhereFld( 'pr_page', array_keys( $this->titles ) );
390
391 $res = $this->select( __METHOD__ );
392 foreach ( $res as $row ) {
393 $a = array(
394 'type' => $row->pr_type,
395 'level' => $row->pr_level,
396 'expiry' => Block::decodeExpiry( $row->pr_expiry, TS_ISO_8601 )
397 );
398 if ( $row->pr_cascade ) {
399 $a['cascade'] = '';
400 }
401 $this->protections[$row->page_namespace][$row->page_title][] = $a;
402
403 // Also check old restrictions
404 if ( $this->pageRestrictions[$row->pr_page] ) {
405 $restrictions = explode( ':', trim( $this->pageRestrictions[$row->pr_page] ) );
406 foreach ( $restrictions as $restrict ) {
407 $temp = explode( '=', trim( $restrict ) );
408 if ( count( $temp ) == 1 ) {
409 // old old format should be treated as edit/move restriction
410 $restriction = trim( $temp[0] );
411
412 if ( $restriction == '' ) {
413 continue;
414 }
415 $this->protections[$row->page_namespace][$row->page_title][] = array(
416 'type' => 'edit',
417 'level' => $restriction,
418 'expiry' => 'infinity',
419 );
420 $this->protections[$row->page_namespace][$row->page_title][] = array(
421 'type' => 'move',
422 'level' => $restriction,
423 'expiry' => 'infinity',
424 );
425 } else {
426 $restriction = trim( $temp[1] );
427 if ( $restriction == '' ) {
428 continue;
429 }
430 $this->protections[$row->page_namespace][$row->page_title][] = array(
431 'type' => $temp[0],
432 'level' => $restriction,
433 'expiry' => 'infinity',
434 );
435 }
436 }
437 }
438 }
439 }
440
441 // Get protections for missing titles
442 if ( count( $this->missing ) ) {
443 $this->resetQueryParams();
444 $lb = new LinkBatch( $this->missing );
445 $this->addTables( 'protected_titles' );
446 $this->addFields( array( 'pt_title', 'pt_namespace', 'pt_create_perm', 'pt_expiry' ) );
447 $this->addWhere( $lb->constructSet( 'pt', $db ) );
448 $res = $this->select( __METHOD__ );
449 foreach ( $res as $row ) {
450 $this->protections[$row->pt_namespace][$row->pt_title][] = array(
451 'type' => 'create',
452 'level' => $row->pt_create_perm,
453 'expiry' => Block::decodeExpiry( $row->pt_expiry, TS_ISO_8601 )
454 );
455 }
456 }
457
458 // Cascading protections
459 $images = $others = array();
460 foreach ( $this->everything as $title ) {
461 if ( $title->getNamespace() == NS_FILE ) {
462 $images[] = $title->getDBkey();
463 } else {
464 $others[] = $title;
465 }
466 }
467
468 if ( count( $others ) ) {
469 // Non-images: check templatelinks
470 $lb = new LinkBatch( $others );
471 $this->resetQueryParams();
472 $this->addTables( array( 'page_restrictions', 'page', 'templatelinks' ) );
473 $this->addFields( array( 'pr_type', 'pr_level', 'pr_expiry',
474 'page_title', 'page_namespace',
475 'tl_title', 'tl_namespace' ) );
476 $this->addWhere( $lb->constructSet( 'tl', $db ) );
477 $this->addWhere( 'pr_page = page_id' );
478 $this->addWhere( 'pr_page = tl_from' );
479 $this->addWhereFld( 'pr_cascade', 1 );
480
481 $res = $this->select( __METHOD__ );
482 foreach ( $res as $row ) {
483 $source = Title::makeTitle( $row->page_namespace, $row->page_title );
484 $this->protections[$row->tl_namespace][$row->tl_title][] = array(
485 'type' => $row->pr_type,
486 'level' => $row->pr_level,
487 'expiry' => Block::decodeExpiry( $row->pr_expiry, TS_ISO_8601 ),
488 'source' => $source->getPrefixedText()
489 );
490 }
491 }
492
493 if ( count( $images ) ) {
494 // Images: check imagelinks
495 $this->resetQueryParams();
496 $this->addTables( array( 'page_restrictions', 'page', 'imagelinks' ) );
497 $this->addFields( array( 'pr_type', 'pr_level', 'pr_expiry',
498 'page_title', 'page_namespace', 'il_to' ) );
499 $this->addWhere( 'pr_page = page_id' );
500 $this->addWhere( 'pr_page = il_from' );
501 $this->addWhereFld( 'pr_cascade', 1 );
502 $this->addWhereFld( 'il_to', $images );
503
504 $res = $this->select( __METHOD__ );
505 foreach ( $res as $row ) {
506 $source = Title::makeTitle( $row->page_namespace, $row->page_title );
507 $this->protections[NS_FILE][$row->il_to][] = array(
508 'type' => $row->pr_type,
509 'level' => $row->pr_level,
510 'expiry' => Block::decodeExpiry( $row->pr_expiry, TS_ISO_8601 ),
511 'source' => $source->getPrefixedText()
512 );
513 }
514 }
515 }
516
517 /**
518 * Get talk page IDs (if requested) and subject page IDs (if requested)
519 * and put them in $talkids and $subjectids
520 */
521 private function getTSIDs() {
522 $getTitles = $this->talkids = $this->subjectids = array();
523
524 foreach ( $this->everything as $t ) {
525 if ( MWNamespace::isTalk( $t->getNamespace() ) ) {
526 if ( $this->fld_subjectid ) {
527 $getTitles[] = $t->getSubjectPage();
528 }
529 } elseif ( $this->fld_talkid ) {
530 $getTitles[] = $t->getTalkPage();
531 }
532 }
533 if ( !count( $getTitles ) ) {
534 return;
535 }
536
537 $db = $this->getDB();
538
539 // Construct a custom WHERE clause that matches
540 // all titles in $getTitles
541 $lb = new LinkBatch( $getTitles );
542 $this->resetQueryParams();
543 $this->addTables( 'page' );
544 $this->addFields( array( 'page_title', 'page_namespace', 'page_id' ) );
545 $this->addWhere( $lb->constructSet( 'page', $db ) );
546 $res = $this->select( __METHOD__ );
547 foreach ( $res as $row ) {
548 if ( MWNamespace::isTalk( $row->page_namespace ) ) {
549 $this->talkids[MWNamespace::getSubject( $row->page_namespace )][$row->page_title] =
550 intval( $row->page_id );
551 } else {
552 $this->subjectids[MWNamespace::getTalk( $row->page_namespace )][$row->page_title] =
553 intval( $row->page_id );
554 }
555 }
556 }
557
558 private function getDisplayTitle() {
559 $pageIds = $this->displaytitles = array();
560
561 foreach ( $this->everything as $t ) {
562 $pageIds = $t->getArticleID();
563 }
564
565 if ( !count( $pageIds ) ) {
566 return;
567 }
568
569 $db = $this->getDB();
570
571 $this->resetQueryParams();
572 $this->addTables( 'page_props' );
573 $this->addFields( array( 'pp_page', 'pp_value' ) );
574 $this->addWhereFld( 'pp_page', $pageIds );
575 $this->addWhereFld( 'pp_propname', 'displaytitle' );
576 $res = $this->select( __METHOD__ );
577
578 foreach ( $res as $row ) {
579 $this->displaytitles[$row->pp_page] = $row->pp_value;
580 }
581 }
582
583 /**
584 * Get information about watched status and put it in $this->watched
585 */
586 private function getWatchedInfo() {
587 global $wgUser;
588
589 if ( $wgUser->isAnon() || count( $this->titles ) == 0 ) {
590 return;
591 }
592
593 $this->watched = array();
594 $db = $this->getDB();
595
596 $lb = new LinkBatch( $this->titles );
597
598 $this->resetQueryParams();
599 $this->addTables( array( 'page', 'watchlist' ) );
600 $this->addFields( array( 'page_title', 'page_namespace' ) );
601 $this->addWhere( array(
602 $lb->constructSet( 'page', $db ),
603 'wl_namespace=page_namespace',
604 'wl_title=page_title',
605 'wl_user' => $wgUser->getID()
606 ) );
607
608 $res = $this->select( __METHOD__ );
609
610 foreach ( $res as $row ) {
611 $this->watched[$row->page_namespace][$row->page_title] = true;
612 }
613 }
614
615 public function getAllowedParams() {
616 return array(
617 'prop' => array(
618 ApiBase::PARAM_DFLT => null,
619 ApiBase::PARAM_ISMULTI => true,
620 ApiBase::PARAM_TYPE => array(
621 'protection',
622 'talkid',
623 'watched',
624 'subjectid',
625 'url',
626 'readable',
627 'preload',
628 'displaytitle',
629 ) ),
630 'token' => array(
631 ApiBase::PARAM_DFLT => null,
632 ApiBase::PARAM_ISMULTI => true,
633 ApiBase::PARAM_TYPE => array_keys( $this->getTokenFunctions() )
634 ),
635 'continue' => null,
636 );
637 }
638
639 public function getParamDescription() {
640 return array(
641 'prop' => array(
642 'Which additional properties to get:',
643 ' protection - List the protection level of each page',
644 ' talkid - The page ID of the talk page for each non-talk page',
645 ' watched - List the watched status of each page',
646 ' subjectid - The page ID of the parent page for each talk page',
647 ' url - Gives a full URL to the page, and also an edit URL',
648 ' readable - Whether the user can read this page',
649 ' preload - Gives the text returned by EditFormPreloadText',
650 ' displaytitle - Gives the way the page title is actually displayed',
651 ),
652 'token' => 'Request a token to perform a data-modifying action on a page',
653 'continue' => 'When more results are available, use this to continue',
654 );
655 }
656
657 public function getDescription() {
658 return 'Get basic page information such as namespace, title, last touched date, ...';
659 }
660
661 public function getPossibleErrors() {
662 return array_merge( parent::getPossibleErrors(), array(
663 array( 'code' => '_badcontinue', 'info' => 'Invalid continue param. You should pass the original value returned by the previous query' ),
664 ) );
665 }
666
667 protected function getExamples() {
668 return array(
669 'api.php?action=query&prop=info&titles=Main%20Page',
670 'api.php?action=query&prop=info&inprop=protection&titles=Main%20Page'
671 );
672 }
673
674 public function getVersion() {
675 return __CLASS__ . ': $Id$';
676 }
677 }