(Bug 16678) localurl/fullurl for Media: titles should return the File: title's path
[lhc/web/wiklou.git] / includes / parser / CoreParserFunctions.php
1 <?php
2
3 /**
4 * Various core parser functions, registered in Parser::firstCallInit()
5 * @ingroup Parser
6 */
7 class CoreParserFunctions {
8 static function register( $parser ) {
9 global $wgAllowDisplayTitle, $wgAllowSlowParserFunctions;
10
11 # Syntax for arguments (see self::setFunctionHook):
12 # "name for lookup in localized magic words array",
13 # function callback,
14 # optional SFH_NO_HASH to omit the hash from calls (e.g. {{int:...}
15 # instead of {{#int:...}})
16
17 $parser->setFunctionHook( 'int', array( __CLASS__, 'intFunction' ), SFH_NO_HASH );
18 $parser->setFunctionHook( 'ns', array( __CLASS__, 'ns' ), SFH_NO_HASH );
19 $parser->setFunctionHook( 'urlencode', array( __CLASS__, 'urlencode' ), SFH_NO_HASH );
20 $parser->setFunctionHook( 'lcfirst', array( __CLASS__, 'lcfirst' ), SFH_NO_HASH );
21 $parser->setFunctionHook( 'ucfirst', array( __CLASS__, 'ucfirst' ), SFH_NO_HASH );
22 $parser->setFunctionHook( 'lc', array( __CLASS__, 'lc' ), SFH_NO_HASH );
23 $parser->setFunctionHook( 'uc', array( __CLASS__, 'uc' ), SFH_NO_HASH );
24 $parser->setFunctionHook( 'localurl', array( __CLASS__, 'localurl' ), SFH_NO_HASH );
25 $parser->setFunctionHook( 'localurle', array( __CLASS__, 'localurle' ), SFH_NO_HASH );
26 $parser->setFunctionHook( 'fullurl', array( __CLASS__, 'fullurl' ), SFH_NO_HASH );
27 $parser->setFunctionHook( 'fullurle', array( __CLASS__, 'fullurle' ), SFH_NO_HASH );
28 $parser->setFunctionHook( 'formatnum', array( __CLASS__, 'formatnum' ), SFH_NO_HASH );
29 $parser->setFunctionHook( 'grammar', array( __CLASS__, 'grammar' ), SFH_NO_HASH );
30 $parser->setFunctionHook( 'plural', array( __CLASS__, 'plural' ), SFH_NO_HASH );
31 $parser->setFunctionHook( 'numberofpages', array( __CLASS__, 'numberofpages' ), SFH_NO_HASH );
32 $parser->setFunctionHook( 'numberofusers', array( __CLASS__, 'numberofusers' ), SFH_NO_HASH );
33 $parser->setFunctionHook( 'numberofarticles', array( __CLASS__, 'numberofarticles' ), SFH_NO_HASH );
34 $parser->setFunctionHook( 'numberoffiles', array( __CLASS__, 'numberoffiles' ), SFH_NO_HASH );
35 $parser->setFunctionHook( 'numberofadmins', array( __CLASS__, 'numberofadmins' ), SFH_NO_HASH );
36 $parser->setFunctionHook( 'numberingroup', array( __CLASS__, 'numberingroup' ), SFH_NO_HASH );
37 $parser->setFunctionHook( 'numberofedits', array( __CLASS__, 'numberofedits' ), SFH_NO_HASH );
38 $parser->setFunctionHook( 'numberofviews', array( __CLASS__, 'numberofviews' ), SFH_NO_HASH );
39 $parser->setFunctionHook( 'language', array( __CLASS__, 'language' ), SFH_NO_HASH );
40 $parser->setFunctionHook( 'padleft', array( __CLASS__, 'padleft' ), SFH_NO_HASH );
41 $parser->setFunctionHook( 'padright', array( __CLASS__, 'padright' ), SFH_NO_HASH );
42 $parser->setFunctionHook( 'anchorencode', array( __CLASS__, 'anchorencode' ), SFH_NO_HASH );
43 $parser->setFunctionHook( 'special', array( __CLASS__, 'special' ) );
44 $parser->setFunctionHook( 'defaultsort', array( __CLASS__, 'defaultsort' ), SFH_NO_HASH );
45 $parser->setFunctionHook( 'filepath', array( __CLASS__, 'filepath' ), SFH_NO_HASH );
46 $parser->setFunctionHook( 'pagesincategory', array( __CLASS__, 'pagesincategory' ), SFH_NO_HASH );
47 $parser->setFunctionHook( 'pagesize', array( __CLASS__, 'pagesize' ), SFH_NO_HASH );
48 $parser->setFunctionHook( 'tag', array( __CLASS__, 'tagObj' ), SFH_OBJECT_ARGS );
49
50 if ( $wgAllowDisplayTitle ) {
51 $parser->setFunctionHook( 'displaytitle', array( __CLASS__, 'displaytitle' ), SFH_NO_HASH );
52 }
53 if ( $wgAllowSlowParserFunctions ) {
54 $parser->setFunctionHook( 'pagesinnamespace', array( __CLASS__, 'pagesinnamespace' ), SFH_NO_HASH );
55 }
56 }
57
58 static function intFunction( $parser, $part1 = '' /*, ... */ ) {
59 if ( strval( $part1 ) !== '' ) {
60 $args = array_slice( func_get_args(), 2 );
61 $message = wfMsgGetKey( $part1, true, false, false );
62 $message = wfMsgReplaceArgs( $message, $args );
63 $message = $parser->replaceVariables( $message ); // like $wgMessageCache->transform()
64 return $message;
65 } else {
66 return array( 'found' => false );
67 }
68 }
69
70 static function ns( $parser, $part1 = '' ) {
71 global $wgContLang;
72 if ( intval( $part1 ) || $part1 == "0" ) {
73 $index = intval( $part1 );
74 } else {
75 $index = $wgContLang->getNsIndex( str_replace( ' ', '_', $part1 ) );
76 }
77 if ( $index !== false ) {
78 return $wgContLang->getFormattedNsText( $index );
79 } else {
80 return array( 'found' => false );
81 }
82 }
83
84 static function urlencode( $parser, $s = '' ) {
85 return urlencode( $s );
86 }
87
88 static function lcfirst( $parser, $s = '' ) {
89 global $wgContLang;
90 return $wgContLang->lcfirst( $s );
91 }
92
93 static function ucfirst( $parser, $s = '' ) {
94 global $wgContLang;
95 return $wgContLang->ucfirst( $s );
96 }
97
98 static function lc( $parser, $s = '' ) {
99 global $wgContLang;
100 if ( is_callable( array( $parser, 'markerSkipCallback' ) ) ) {
101 return $parser->markerSkipCallback( $s, array( $wgContLang, 'lc' ) );
102 } else {
103 return $wgContLang->lc( $s );
104 }
105 }
106
107 static function uc( $parser, $s = '' ) {
108 global $wgContLang;
109 if ( is_callable( array( $parser, 'markerSkipCallback' ) ) ) {
110 return $parser->markerSkipCallback( $s, array( $wgContLang, 'uc' ) );
111 } else {
112 return $wgContLang->uc( $s );
113 }
114 }
115
116 static function localurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getLocalURL', $s, $arg ); }
117 static function localurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeLocalURL', $s, $arg ); }
118 static function fullurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getFullURL', $s, $arg ); }
119 static function fullurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeFullURL', $s, $arg ); }
120
121 static function urlFunction( $func, $s = '', $arg = null ) {
122 $title = Title::newFromText( $s );
123 # Due to order of execution of a lot of bits, the values might be encoded
124 # before arriving here; if that's true, then the title can't be created
125 # and the variable will fail. If we can't get a decent title from the first
126 # attempt, url-decode and try for a second.
127 if( is_null( $title ) )
128 $title = Title::newFromUrl( urldecode( $s ) );
129 if( !is_null( $title ) ) {
130 # Convert NS_MEDIA -> NS_FILE
131 if( $title->getNamespace() == NS_MEDIA ) {
132 $title = Title::makeTitle( NS_FILE, $title->getDBKey() );
133 }
134 if( !is_null( $arg ) ) {
135 $text = $title->$func( $arg );
136 } else {
137 $text = $title->$func();
138 }
139 return $text;
140 } else {
141 return array( 'found' => false );
142 }
143 }
144
145 static function formatNum( $parser, $num = '', $raw = null) {
146 if ( self::israw( $raw ) ) {
147 return $parser->getFunctionLang()->parseFormattedNumber( $num );
148 } else {
149 return $parser->getFunctionLang()->formatNum( $num );
150 }
151 }
152
153 static function grammar( $parser, $case = '', $word = '' ) {
154 return $parser->getFunctionLang()->convertGrammar( $word, $case );
155 }
156
157 static function plural( $parser, $text = '') {
158 $forms = array_slice( func_get_args(), 2);
159 $text = $parser->getFunctionLang()->parseFormattedNumber( $text );
160 return $parser->getFunctionLang()->convertPlural( $text, $forms );
161 }
162
163 /**
164 * Override the title of the page when viewed, provided we've been given a
165 * title which will normalise to the canonical title
166 *
167 * @param Parser $parser Parent parser
168 * @param string $text Desired title text
169 * @return string
170 */
171 static function displaytitle( $parser, $text = '' ) {
172 global $wgRestrictDisplayTitle;
173 $text = trim( Sanitizer::decodeCharReferences( $text ) );
174
175 if ( !$wgRestrictDisplayTitle ) {
176 $parser->mOutput->setDisplayTitle( $text );
177 } else {
178 $title = Title::newFromText( $text );
179 if( $title instanceof Title && $title->getFragment() == '' && $title->equals( $parser->mTitle ) )
180 $parser->mOutput->setDisplayTitle( $text );
181 }
182 return '';
183 }
184
185 static function isRaw( $param ) {
186 static $mwRaw;
187 if ( !$mwRaw ) {
188 $mwRaw =& MagicWord::get( 'rawsuffix' );
189 }
190 if ( is_null( $param ) ) {
191 return false;
192 } else {
193 return $mwRaw->match( $param );
194 }
195 }
196
197 static function formatRaw( $num, $raw ) {
198 if( self::isRaw( $raw ) ) {
199 return $num;
200 } else {
201 global $wgContLang;
202 return $wgContLang->formatNum( $num );
203 }
204 }
205 static function numberofpages( $parser, $raw = null ) {
206 return self::formatRaw( SiteStats::pages(), $raw );
207 }
208 static function numberofusers( $parser, $raw = null ) {
209 return self::formatRaw( SiteStats::users(), $raw );
210 }
211 static function numberofarticles( $parser, $raw = null ) {
212 return self::formatRaw( SiteStats::articles(), $raw );
213 }
214 static function numberoffiles( $parser, $raw = null ) {
215 return self::formatRaw( SiteStats::images(), $raw );
216 }
217 static function numberofadmins( $parser, $raw = null ) {
218 return self::formatRaw( SiteStats::numberingroup('sysop'), $raw );
219 }
220 static function numberofedits( $parser, $raw = null ) {
221 return self::formatRaw( SiteStats::edits(), $raw );
222 }
223 static function numberofviews( $parser, $raw = null ) {
224 return self::formatRaw( SiteStats::views(), $raw );
225 }
226 static function pagesinnamespace( $parser, $namespace = 0, $raw = null ) {
227 return self::formatRaw( SiteStats::pagesInNs( intval( $namespace ) ), $raw );
228 }
229 static function numberingroup( $parser, $name = '', $raw = null) {
230 return self::formatRaw( SiteStats::numberingroup( strtolower( $name ) ), $raw );
231 }
232
233 /**
234 * Return the number of pages in the given category, or 0 if it's nonexis-
235 * tent. This is an expensive parser function and can't be called too many
236 * times per page.
237 */
238 static function pagesincategory( $parser, $name = '', $raw = null ) {
239 static $cache = array();
240 $category = Category::newFromName( $name );
241
242 if( !is_object( $category ) ) {
243 $cache[$name] = 0;
244 return self::formatRaw( 0, $raw );
245 }
246
247 # Normalize name for cache
248 $name = $category->getName();
249
250 $count = 0;
251 if( isset( $cache[$name] ) ) {
252 $count = $cache[$name];
253 } elseif( $parser->incrementExpensiveFunctionCount() ) {
254 $count = $cache[$name] = (int)$category->getPageCount();
255 }
256 return self::formatRaw( $count, $raw );
257 }
258
259 /**
260 * Return the size of the given page, or 0 if it's nonexistent. This is an
261 * expensive parser function and can't be called too many times per page.
262 *
263 * @FIXME This doesn't work correctly on preview for getting the size of
264 * the current page.
265 * @FIXME Title::getLength() documentation claims that it adds things to
266 * the link cache, so the local cache here should be unnecessary, but in
267 * fact calling getLength() repeatedly for the same $page does seem to
268 * run one query for each call?
269 */
270 static function pagesize( $parser, $page = '', $raw = null ) {
271 static $cache = array();
272 $title = Title::newFromText($page);
273
274 if( !is_object( $title ) ) {
275 $cache[$page] = 0;
276 return self::formatRaw( 0, $raw );
277 }
278
279 # Normalize name for cache
280 $page = $title->getPrefixedText();
281
282 $length = 0;
283 if( isset( $cache[$page] ) ) {
284 $length = $cache[$page];
285 } elseif( $parser->incrementExpensiveFunctionCount() ) {
286 $rev = Revision::newFromTitle($title);
287 $id = $rev ? $rev->getPage() : 0;
288 $length = $cache[$page] = $rev ? $rev->getSize() : 0;
289
290 // Register dependency in templatelinks
291 $parser->mOutput->addTemplate( $title, $id, $rev ? $rev->getId() : 0 );
292 }
293 return self::formatRaw( $length, $raw );
294 }
295
296 static function language( $parser, $arg = '' ) {
297 global $wgContLang;
298 $lang = $wgContLang->getLanguageName( strtolower( $arg ) );
299 return $lang != '' ? $lang : $arg;
300 }
301
302 static function pad( $string = '', $length = 0, $char = 0, $direction = STR_PAD_RIGHT ) {
303 $length = min( max( $length, 0 ), 500 );
304 $char = substr( $char, 0, 1 );
305 return ( $string !== '' && (int)$length > 0 && strlen( trim( (string)$char ) ) > 0 )
306 ? str_pad( $string, $length, (string)$char, $direction )
307 : $string;
308 }
309
310 static function padleft( $parser, $string = '', $length = 0, $char = 0 ) {
311 return self::pad( $string, $length, $char, STR_PAD_LEFT );
312 }
313
314 static function padright( $parser, $string = '', $length = 0, $char = 0 ) {
315 return self::pad( $string, $length, $char );
316 }
317
318 static function anchorencode( $parser, $text ) {
319 $a = urlencode( $text );
320 $a = strtr( $a, array( '%' => '.', '+' => '_' ) );
321 # leave colons alone, however
322 $a = str_replace( '.3A', ':', $a );
323 return $a;
324 }
325
326 static function special( $parser, $text ) {
327 $title = SpecialPage::getTitleForAlias( $text );
328 if ( $title ) {
329 return $title->getPrefixedText();
330 } else {
331 return wfMsgForContent( 'nosuchspecialpage' );
332 }
333 }
334
335 public static function defaultsort( $parser, $text ) {
336 $text = trim( $text );
337 if( strlen( $text ) == 0 )
338 return '';
339 $old = $parser->getCustomDefaultSort();
340 $parser->setDefaultSort( $text );
341 if( $old === false || $old == $text )
342 return '';
343 else
344 return( '<span class="error">' .
345 wfMsg( 'duplicate-defaultsort',
346 htmlspecialchars( $old ),
347 htmlspecialchars( $text ) ) .
348 '</span>' );
349 }
350
351 public static function filepath( $parser, $name='', $option='' ) {
352 $file = wfFindFile( $name );
353 if( $file ) {
354 $url = $file->getFullUrl();
355 if( $option == 'nowiki' ) {
356 return array( $url, 'nowiki' => true );
357 }
358 return $url;
359 } else {
360 return '';
361 }
362 }
363
364 /**
365 * Parser function to extension tag adaptor
366 */
367 public static function tagObj( $parser, $frame, $args ) {
368 $xpath = false;
369 if ( !count( $args ) ) {
370 return '';
371 }
372 $tagName = strtolower( trim( $frame->expand( array_shift( $args ) ) ) );
373
374 if ( count( $args ) ) {
375 $inner = $frame->expand( array_shift( $args ) );
376 } else {
377 $inner = null;
378 }
379
380 $stripList = $parser->getStripList();
381 if ( !in_array( $tagName, $stripList ) ) {
382 return '<span class="error">' .
383 wfMsg( 'unknown_extension_tag', $tagName ) .
384 '</span>';
385 }
386
387 $attributes = array();
388 foreach ( $args as $arg ) {
389 $bits = $arg->splitArg();
390 if ( strval( $bits['index'] ) === '' ) {
391 $name = trim( $frame->expand( $bits['name'], PPFrame::STRIP_COMMENTS ) );
392 $value = trim( $frame->expand( $bits['value'] ) );
393 if ( preg_match( '/^(?:["\'](.+)["\']|""|\'\')$/s', $value, $m ) ) {
394 $value = isset( $m[1] ) ? $m[1] : '';
395 }
396 $attributes[$name] = $value;
397 }
398 }
399
400 $params = array(
401 'name' => $tagName,
402 'inner' => $inner,
403 'attributes' => $attributes,
404 'close' => "</$tagName>",
405 );
406 return $parser->extensionSubstitution( $params, $frame );
407 }
408 }