Unused global
[lhc/web/wiklou.git] / includes / api / ApiParse.php
1 <?php
2 /**
3 *
4 *
5 * Created on Dec 01, 2007
6 *
7 * Copyright © 2007 Yuri Astrakhan <Firstname><Lastname>@gmail.com
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( "ApiBase.php" );
30 }
31
32 /**
33 * @ingroup API
34 */
35 class ApiParse extends ApiBase {
36
37 private $section;
38
39 public function __construct( $main, $action ) {
40 parent::__construct( $main, $action );
41 }
42
43 public function execute() {
44 // The data is hot but user-dependent, like page views, so we set vary cookies
45 $this->getMain()->setCacheMode( 'anon-public-user-private' );
46
47 // Get parameters
48 $params = $this->extractRequestParams();
49 $text = $params['text'];
50 $title = $params['title'];
51 $page = $params['page'];
52 $pageid = $params['pageid'];
53 $oldid = $params['oldid'];
54
55 if ( !is_null( $page ) && ( !is_null( $text ) || $title != 'API' ) ) {
56 $this->dieUsage( 'The page parameter cannot be used together with the text and title parameters', 'params' );
57 }
58 $prop = array_flip( $params['prop'] );
59
60 if ( isset( $params['section'] ) ) {
61 $this->section = $params['section'];
62 } else {
63 $this->section = false;
64 }
65
66 // The parser needs $wgTitle to be set, apparently the
67 // $title parameter in Parser::parse isn't enough *sigh*
68 global $wgParser, $wgUser, $wgTitle, $wgLang;
69
70 // Currently unnecessary, code to act as a safeguard against any change in current behaviour of uselang breaks
71 $oldLang = null;
72 if ( isset( $params['uselang'] ) && $params['uselang'] != $wgLang->getCode() ) {
73 $oldLang = $wgLang; // Backup wgLang
74 $wgLang = Language::factory( $params['uselang'] );
75 }
76
77 $popts = new ParserOptions();
78 $popts->setTidy( true );
79 $popts->enableLimitReport( !$params['disablepp'] );
80 $redirValues = null;
81 if ( !is_null( $oldid ) || !is_null( $pageid ) || !is_null( $page ) ) {
82 if ( !is_null( $oldid ) ) {
83 // Don't use the parser cache
84 $rev = Revision::newFromID( $oldid );
85 if ( !$rev ) {
86 $this->dieUsage( "There is no revision ID $oldid", 'missingrev' );
87 }
88 if ( !$rev->userCan( Revision::DELETED_TEXT ) ) {
89 $this->dieUsage( "You don't have permission to view deleted revisions", 'permissiondenied' );
90 }
91
92 $titleObj = $rev->getTitle();
93
94 $wgTitle = $titleObj;
95
96 // If for some reason the "oldid" is actually the current revision, it may be cached
97 if ( $titleObj->getLatestRevID() === intval( $oldid ) ) {
98 $articleObj = new Article( $titleObj );
99
100 $p_result = $this->getParsedSectionOrText( $articleObj, $titleObj, $popts, $pageid ) ;
101
102 } else {
103 $text = $rev->getText( Revision::FOR_THIS_USER );
104
105 $wgTitle = $titleObj;
106
107 if ( $this->section !== false ) {
108 $text = $this->getSectionText( $text, 'r' . $rev );
109 }
110
111 $p_result = $wgParser->parse( $text, $titleObj, $popts );
112 }
113 } else {
114 if ( !is_null ( $pageid ) ) {
115 $titleObj = Title::newFromID( $pageid );
116
117 if ( !$titleObj ) {
118 $this->dieUsageMsg( array( 'nosuchpageid', $pageid ) );
119 }
120 } else {
121 if ( $params['redirects'] ) {
122 $req = new FauxRequest( array(
123 'action' => 'query',
124 'redirects' => '',
125 'titles' => $page
126 ) );
127 $main = new ApiMain( $req );
128 $main->execute();
129 $data = $main->getResultData();
130 $redirValues = @$data['query']['redirects'];
131 $to = $page;
132 foreach ( (array)$redirValues as $r ) {
133 $to = $r['to'];
134 }
135 } else {
136 $to = $page;
137 }
138 $titleObj = Title::newFromText( $to );
139 if ( !$titleObj || !$titleObj->exists() ) {
140 $this->dieUsage( "The page you specified doesn't exist", 'missingtitle' );
141 }
142 }
143 $wgTitle = $titleObj;
144
145 $articleObj = new Article( $titleObj );
146 if ( isset( $prop['revid'] ) ) {
147 $oldid = $articleObj->getRevIdFetched();
148 }
149
150 $p_result = $this->getParsedSectionOrText( $articleObj, $titleObj, $popts, $pageid ) ;
151 }
152 } else {
153 $titleObj = Title::newFromText( $title );
154 if ( !$titleObj ) {
155 $titleObj = Title::newFromText( 'API' );
156 }
157 $wgTitle = $titleObj;
158
159 if ( $this->section !== false ) {
160 $text = $this->getSectionText( $text, $titleObj->getText() );
161 }
162
163 if ( $params['pst'] || $params['onlypst'] ) {
164 $text = $wgParser->preSaveTransform( $text, $titleObj, $wgUser, $popts );
165 }
166 if ( $params['onlypst'] ) {
167 // Build a result and bail out
168 $result_array['text'] = array();
169 $this->getResult()->setContent( $result_array['text'], $text );
170 $this->getResult()->addValue( null, $this->getModuleName(), $result_array );
171 return;
172 }
173 $p_result = $wgParser->parse( $text, $titleObj, $popts );
174 }
175
176 // Return result
177 $result = $this->getResult();
178 $result_array = array();
179
180 $result_array['title'] = $titleObj->getPrefixedText();
181
182 if ( !is_null( $oldid ) ) {
183 $result_array['revid'] = intval( $oldid );
184 }
185
186 if ( $params['redirects'] && !is_null( $redirValues ) ) {
187 $result_array['redirects'] = $redirValues;
188 }
189
190 if ( isset( $prop['text'] ) ) {
191 $result_array['text'] = array();
192 $result->setContent( $result_array['text'], $p_result->getText() );
193 }
194
195 if ( !is_null( $params['summary'] ) ) {
196 $result_array['parsedsummary'] = array();
197 $result->setContent( $result_array['parsedsummary'], $wgUser->getSkin()->formatComment( $params['summary'], $titleObj ) );
198 }
199
200 if ( isset( $prop['langlinks'] ) ) {
201 $result_array['langlinks'] = $this->formatLangLinks( $p_result->getLanguageLinks() );
202 }
203 if ( isset( $prop['languageshtml'] ) ) {
204 $languagesHtml = $this->languagesHtml( $p_result->getLanguageLinks() );
205 $result_array['languageshtml'] = array();
206 $result->setContent( $result_array['languageshtml'], $languagesHtml );
207 }
208 if ( isset( $prop['categories'] ) ) {
209 $result_array['categories'] = $this->formatCategoryLinks( $p_result->getCategories() );
210 }
211 if ( isset( $prop['categorieshtml'] ) ) {
212 $categoriesHtml = $this->categoriesHtml( $p_result->getCategories() );
213 $result_array['categorieshtml'] = array();
214 $result->setContent( $result_array['categorieshtml'], $categoriesHtml );
215 }
216 if ( isset( $prop['links'] ) ) {
217 $result_array['links'] = $this->formatLinks( $p_result->getLinks() );
218 }
219 if ( isset( $prop['templates'] ) ) {
220 $result_array['templates'] = $this->formatLinks( $p_result->getTemplates() );
221 }
222 if ( isset( $prop['images'] ) ) {
223 $result_array['images'] = array_keys( $p_result->getImages() );
224 }
225 if ( isset( $prop['externallinks'] ) ) {
226 $result_array['externallinks'] = array_keys( $p_result->getExternalLinks() );
227 }
228 if ( isset( $prop['sections'] ) ) {
229 $result_array['sections'] = $p_result->getSections();
230 }
231
232 if ( isset( $prop['displaytitle'] ) ) {
233 $result_array['displaytitle'] = $p_result->getDisplayTitle() ?
234 $p_result->getDisplayTitle() :
235 $titleObj->getPrefixedText();
236 }
237
238 if ( isset( $prop['headitems'] ) || isset( $prop['headhtml'] ) ) {
239 $out = new OutputPage;
240 $out->addParserOutputNoText( $p_result );
241 $userSkin = $wgUser->getSkin();
242 }
243
244 if ( isset( $prop['headitems'] ) ) {
245 $headItems = $this->formatHeadItems( $p_result->getHeadItems() );
246
247 $userSkin->setupUserCss( $out );
248 $css = $this->formatCss( $out->buildCssLinksArray() );
249
250 $scripts = array( $out->getHeadScripts( $userSkin ) );
251
252 $result_array['headitems'] = array_merge( $headItems, $css, $scripts );
253 }
254
255 if ( isset( $prop['headhtml'] ) ) {
256 $result_array['headhtml'] = array();
257 $result->setContent( $result_array['headhtml'], $out->headElement( $userSkin ) );
258 }
259
260 if ( isset( $prop['iwlinks'] ) ) {
261 $result_array['iwlinks'] = $this->formatIWLinks( $p_result->getInterwikiLinks() );
262 }
263
264 $result_mapping = array(
265 'redirects' => 'r',
266 'langlinks' => 'll',
267 'categories' => 'cl',
268 'links' => 'pl',
269 'templates' => 'tl',
270 'images' => 'img',
271 'externallinks' => 'el',
272 'iwlinks' => 'iw',
273 'sections' => 's',
274 'headitems' => 'hi',
275 );
276 $this->setIndexedTagNames( $result_array, $result_mapping );
277 $result->addValue( null, $this->getModuleName(), $result_array );
278
279 if ( !is_null( $oldLang ) ) {
280 $wgLang = $oldLang; // Reset $wgLang to $oldLang
281 }
282 }
283
284 /**
285 * @param $articleObj Article
286 * @param $titleObj Title
287 * @param $pageId Int
288 * @param $popts ParserOptions
289 * @return ParserOutput
290 */
291 private function getParsedSectionOrText( $articleObj, $titleObj, $popts, $pageId = null ) {
292 global $wgParser;
293
294 if ( $this->section !== false ) {
295 $text = $this->getSectionText( $text, !is_null ( $pageId )
296 ? 'page id ' . $pageId : $titleObj->getText() );
297
298 return $wgParser->parse( $text, $titleObj, $popts );
299 } else {
300 // Try the parser cache first
301 return $articleObj->getParserOutput();
302 }
303 }
304
305 private function getSectionText( $text, $what ) {
306 global $wgParser;
307 $text = $wgParser->getSection( $text, $this->section, false );
308 if ( $text === false ) {
309 $this->dieUsage( "There is no section {$this->section} in " . $what, 'nosuchsection' );
310 }
311 return $text;
312 }
313
314 private function formatLangLinks( $links ) {
315 $result = array();
316 foreach ( $links as $link ) {
317 $entry = array();
318 $bits = explode( ':', $link, 2 );
319 $entry['lang'] = $bits[0];
320 $this->getResult()->setContent( $entry, $bits[1] );
321 $result[] = $entry;
322 }
323 return $result;
324 }
325
326 private function formatCategoryLinks( $links ) {
327 $result = array();
328 foreach ( $links as $link => $sortkey ) {
329 $entry = array();
330 $entry['sortkey'] = $sortkey;
331 $this->getResult()->setContent( $entry, $link );
332 $result[] = $entry;
333 }
334 return $result;
335 }
336
337 private function categoriesHtml( $categories ) {
338 global $wgOut, $wgUser;
339 $wgOut->addCategoryLinks( $categories );
340 $sk = $wgUser->getSkin();
341 return $sk->getCategories();
342 }
343
344 private function languagesHtml( $languages ) {
345 global $wgOut, $wgUser;
346 $wgOut->setLanguageLinks( $languages );
347 $sk = $wgUser->getSkin();
348 return $sk->otherLanguages();
349 }
350
351 private function formatLinks( $links ) {
352 $result = array();
353 foreach ( $links as $ns => $nslinks ) {
354 foreach ( $nslinks as $title => $id ) {
355 $entry = array();
356 $entry['ns'] = $ns;
357 $this->getResult()->setContent( $entry, Title::makeTitle( $ns, $title )->getFullText() );
358 if ( $id != 0 ) {
359 $entry['exists'] = '';
360 }
361 $result[] = $entry;
362 }
363 }
364 return $result;
365 }
366
367 private function formatIWLinks( $iw ) {
368 $result = array();
369 foreach ( $iw as $prefix => $titles ) {
370 foreach ( array_keys( $titles ) as $title ) {
371 $entry = array();
372 $entry['prefix'] = $prefix;
373
374 $title = Title::newFromText( "{$prefix}:{$title}" );
375 if ( $title ) {
376 $entry['url'] = $title->getFullURL();
377 }
378
379 $this->getResult()->setContent( $entry, $title->getFullText() );
380 $result[] = $entry;
381 }
382 }
383 return $result;
384 }
385
386 private function formatHeadItems( $headItems ) {
387 $result = array();
388 foreach ( $headItems as $tag => $content ) {
389 $entry = array();
390 $entry['tag'] = $tag;
391 $this->getResult()->setContent( $entry, $content );
392 $result[] = $entry;
393 }
394 return $result;
395 }
396
397 private function formatCss( $css ) {
398 $result = array();
399 foreach ( $css as $file => $link ) {
400 $entry = array();
401 $entry['file'] = $file;
402 $this->getResult()->setContent( $entry, $link );
403 $result[] = $entry;
404 }
405 return $result;
406 }
407
408 private function setIndexedTagNames( &$array, $mapping ) {
409 foreach ( $mapping as $key => $name ) {
410 if ( isset( $array[$key] ) ) {
411 $this->getResult()->setIndexedTagName( $array[$key], $name );
412 }
413 }
414 }
415
416 public function getAllowedParams() {
417 return array(
418 'title' => array(
419 ApiBase::PARAM_DFLT => 'API',
420 ),
421 'text' => null,
422 'summary' => null,
423 'page' => null,
424 'pageid' => null,
425 'redirects' => false,
426 'oldid' => null,
427 'prop' => array(
428 ApiBase::PARAM_DFLT => 'text|langlinks|categories|links|templates|images|externallinks|sections|revid|displaytitle',
429 ApiBase::PARAM_ISMULTI => true,
430 ApiBase::PARAM_TYPE => array(
431 'text',
432 'langlinks',
433 'languageshtml',
434 'categories',
435 'categorieshtml',
436 'links',
437 'templates',
438 'images',
439 'externallinks',
440 'sections',
441 'revid',
442 'displaytitle',
443 'headitems',
444 'headhtml',
445 'iwlinks',
446 )
447 ),
448 'pst' => false,
449 'onlypst' => false,
450 'uselang' => null,
451 'section' => null,
452 'disablepp' => false,
453 );
454 }
455
456 public function getParamDescription() {
457 $p = $this->getModulePrefix();
458 return array(
459 'text' => 'Wikitext to parse',
460 'summary' => 'Summary to parse',
461 'redirects' => "If the {$p}page parameter is set to a redirect, resolve it",
462 'title' => 'Title of page the text belongs to',
463 'page' => "Parse the content of this page. Cannot be used together with {$p}text and {$p}title",
464 'pageid' => "Parse the content of this page. Overrides {$p}page",
465 'oldid' => "Parse the content of this revision. Overrides {$p}page and {$p}pageid",
466 'prop' => array(
467 'Which pieces of information to get',
468 ' text - Gives the parsed text of the wikitext',
469 ' langlinks - Gives the language links in the parsed wikitext',
470 ' categories - Gives the categories in the parsed wikitext',
471 ' categorieshtml - Gives the HTML version of the categories',
472 ' languageshtml - Gives the HTML version of the language links',
473 ' links - Gives the internal links in the parsed wikitext',
474 ' templates - Gives the templates in the parsed wikitext',
475 ' images - Gives the images in the parsed wikitext',
476 ' externallinks - Gives the external links in the parsed wikitext',
477 ' sections - Gives the sections in the parsed wikitext',
478 ' revid - Adds the revision ID of the parsed page',
479 ' displaytitle - Adds the title of the parsed wikitext',
480 ' headitems - Gives items to put in the <head> of the page',
481 ' headhtml - Gives parsed <head> of the page',
482 ' iwlinks - Gives interwiki links in the parsed wikitext',
483 'NOTE: Section tree is only generated if there are more than 4 sections, or if the __TOC__ keyword is present'
484 ),
485 'pst' => array(
486 'Do a pre-save transform on the input before parsing it',
487 'Ignored if page, pageid or oldid is used'
488 ),
489 'onlypst' => array(
490 'Do a pre-save transform (PST) on the input, but don\'t parse it',
491 'Returns the same wikitext, after a PST has been applied. Ignored if page, pageid or oldid is used'
492 ),
493 'uselang' => 'Which language to parse the request in',
494 'section' => 'Only retrieve the content of this section number',
495 'disablepp' => 'Disable the PP Report from the parser output',
496 );
497 }
498
499 public function getDescription() {
500 return 'This module parses wikitext and returns parser output';
501 }
502
503 public function getPossibleErrors() {
504 return array_merge( parent::getPossibleErrors(), array(
505 array( 'code' => 'params', 'info' => 'The page parameter cannot be used together with the text and title parameters' ),
506 array( 'code' => 'missingrev', 'info' => 'There is no revision ID oldid' ),
507 array( 'code' => 'permissiondenied', 'info' => 'You don\'t have permission to view deleted revisions' ),
508 array( 'code' => 'missingtitle', 'info' => 'The page you specified doesn\'t exist' ),
509 array( 'code' => 'nosuchsection', 'info' => 'There is no section sectionnumber in page' ),
510 array( 'nosuchpageid' ),
511 ) );
512 }
513
514 protected function getExamples() {
515 return array(
516 'api.php?action=parse&text={{Project:Sandbox}}'
517 );
518 }
519
520 public function getVersion() {
521 return __CLASS__ . ': $Id$';
522 }
523 }