X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fparser%2FCoreParserFunctions.php;h=cd5e0a5665ba6ec97cd190e41af2b00c5d35aab6;hb=8ede0ad20e50fb45f1b8024a0e9b15b015791f68;hp=e6b613cee0a919a661f582d945a9d9d3bb6fc79b;hpb=19a90fd8a7a9cc55756a3385e31f15f5f0b08415;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/parser/CoreParserFunctions.php b/includes/parser/CoreParserFunctions.php index e6b613cee0..cd5e0a5665 100644 --- a/includes/parser/CoreParserFunctions.php +++ b/includes/parser/CoreParserFunctions.php @@ -1,21 +1,31 @@ setFunctionHook( 'int', array( __CLASS__, 'intFunction' ), SFH_NO_HASH ); $parser->setFunctionHook( 'ns', array( __CLASS__, 'ns' ), SFH_NO_HASH ); + $parser->setFunctionHook( 'nse', array( __CLASS__, 'nse' ), SFH_NO_HASH ); $parser->setFunctionHook( 'urlencode', array( __CLASS__, 'urlencode' ), SFH_NO_HASH ); $parser->setFunctionHook( 'lcfirst', array( __CLASS__, 'lcfirst' ), SFH_NO_HASH ); $parser->setFunctionHook( 'ucfirst', array( __CLASS__, 'ucfirst' ), SFH_NO_HASH ); @@ -25,6 +35,8 @@ class CoreParserFunctions { $parser->setFunctionHook( 'localurle', array( __CLASS__, 'localurle' ), SFH_NO_HASH ); $parser->setFunctionHook( 'fullurl', array( __CLASS__, 'fullurl' ), SFH_NO_HASH ); $parser->setFunctionHook( 'fullurle', array( __CLASS__, 'fullurle' ), SFH_NO_HASH ); + $parser->setFunctionHook( 'canonicalurl', array( __CLASS__, 'canonicalurl' ), SFH_NO_HASH ); + $parser->setFunctionHook( 'canonicalurle', array( __CLASS__, 'canonicalurle' ), SFH_NO_HASH ); $parser->setFunctionHook( 'formatnum', array( __CLASS__, 'formatnum' ), SFH_NO_HASH ); $parser->setFunctionHook( 'grammar', array( __CLASS__, 'grammar' ), SFH_NO_HASH ); $parser->setFunctionHook( 'gender', array( __CLASS__, 'gender' ), SFH_NO_HASH ); @@ -38,7 +50,6 @@ class CoreParserFunctions { $parser->setFunctionHook( 'numberingroup', array( __CLASS__, 'numberingroup' ), SFH_NO_HASH ); $parser->setFunctionHook( 'numberofedits', array( __CLASS__, 'numberofedits' ), SFH_NO_HASH ); $parser->setFunctionHook( 'numberofviews', array( __CLASS__, 'numberofviews' ), SFH_NO_HASH ); - $parser->setFunctionHook( 'numberofcontribs', array( __CLASS__, 'numberofcontribs' ), SFH_NO_HASH ); $parser->setFunctionHook( 'language', array( __CLASS__, 'language' ), SFH_NO_HASH ); $parser->setFunctionHook( 'padleft', array( __CLASS__, 'padleft' ), SFH_NO_HASH ); $parser->setFunctionHook( 'padright', array( __CLASS__, 'padright' ), SFH_NO_HASH ); @@ -67,16 +78,8 @@ class CoreParserFunctions { $parser->setFunctionHook( 'talkpagenamee', array( __CLASS__, 'talkpagenamee' ), SFH_NO_HASH ); $parser->setFunctionHook( 'subjectpagename', array( __CLASS__, 'subjectpagename' ), SFH_NO_HASH ); $parser->setFunctionHook( 'subjectpagenamee', array( __CLASS__, 'subjectpagenamee' ), SFH_NO_HASH ); - $parser->setFunctionHook( 'revisionid', array( __CLASS__, 'revisionid' ), SFH_NO_HASH ); - $parser->setFunctionHook( 'revisiontimestamp',array( __CLASS__, 'revisiontimestamp'), SFH_NO_HASH ); - $parser->setFunctionHook( 'revisionday', array( __CLASS__, 'revisionday' ), SFH_NO_HASH ); - $parser->setFunctionHook( 'revisionday2', array( __CLASS__, 'revisionday2' ), SFH_NO_HASH ); - $parser->setFunctionHook( 'revisionmonth', array( __CLASS__, 'revisionmonth' ), SFH_NO_HASH ); - $parser->setFunctionHook( 'revisionyear', array( __CLASS__, 'revisionyear' ), SFH_NO_HASH ); - $parser->setFunctionHook( 'revisionuser', array( __CLASS__, 'revisionuser' ), SFH_NO_HASH ); $parser->setFunctionHook( 'tag', array( __CLASS__, 'tagObj' ), SFH_OBJECT_ARGS ); - $parser->setFunctionHook( 'formatdate', array( __CLASS__, 'formatDate' ) ); - $parser->setFunctionHook( 'groupconvert', array( __CLASS__, 'groupconvert' ), SFH_NO_HASH ); + $parser->setFunctionHook( 'formatdate', array( __CLASS__, 'formatDate' ) ); if ( $wgAllowDisplayTitle ) { $parser->setFunctionHook( 'displaytitle', array( __CLASS__, 'displaytitle' ), SFH_NO_HASH ); @@ -86,34 +89,43 @@ class CoreParserFunctions { } } + /** + * @param $parser Parser + * @param string $part1 + * @return array + */ static function intFunction( $parser, $part1 = '' /*, ... */ ) { if ( strval( $part1 ) !== '' ) { $args = array_slice( func_get_args(), 2 ); - $message = wfMsgGetKey( $part1, true, false, false ); - $message = wfMsgReplaceArgs( $message, $args ); - $message = $parser->replaceVariables( $message ); // like $wgMessageCache->transform() - return $message; + $message = wfMessage( $part1, $args )->inLanguage( $parser->getOptions()->getUserLangObj() )->plain(); + return array( $message, 'noparse' => false ); } else { return array( 'found' => false ); } } - + + /** + * @param $parser Parser + * @param $date + * @param null $defaultPref + * @return mixed|string + */ static function formatDate( $parser, $date, $defaultPref = null ) { $df = DateFormatter::getInstance(); - - $date = trim($date); - - $pref = $parser->mOptions->getDateFormat(); - + + $date = trim( $date ); + + $pref = $parser->getOptions()->getDateFormat(); + // Specify a different default date format other than the the normal default - // iff the user has 'default' for their setting - if ($pref == 'default' && $defaultPref) + // iff the user has 'default' for their setting + if ( $pref == 'default' && $defaultPref ) $pref = $defaultPref; - - $date = $df->reformat( $pref, $date, array('match-whole') ); + + $date = $df->reformat( $pref, $date, array( 'match-whole' ) ); return $date; } - + static function ns( $parser, $part1 = '' ) { global $wgContLang; if ( intval( $part1 ) || $part1 == "0" ) { @@ -128,8 +140,41 @@ class CoreParserFunctions { } } - static function urlencode( $parser, $s = '' ) { - return urlencode( $s ); + static function nse( $parser, $part1 = '' ) { + return wfUrlencode( str_replace( ' ', '_', self::ns( $parser, $part1 ) ) ); + } + + /** + * urlencodes a string according to one of three patterns: (bug 22474) + * + * By default (for HTTP "query" strings), spaces are encoded as '+'. + * Or to encode a value for the HTTP "path", spaces are encoded as '%20'. + * For links to "wiki"s, or similar software, spaces are encoded as '_', + * + * @param $parser Parser object + * @param $s String: The text to encode. + * @param $arg String (optional): The type of encoding. + */ + static function urlencode( $parser, $s = '', $arg = null ) { + static $magicWords = null; + if ( is_null( $magicWords ) ) { + $magicWords = new MagicWordArray( array( 'url_path', 'url_query', 'url_wiki' ) ); + } + switch( $magicWords->matchStartToEnd( $arg ) ) { + + // Encode as though it's a wiki page, '_' for ' '. + case 'url_wiki': + return wfUrlencode( str_replace( ' ', '_', $s ) ); + + // Encode for an HTTP Path, '%20' for ' '. + case 'url_path': + return rawurlencode( $s ); + + // Encode for HTTP query, '+' for ' '. + case 'url_query': + default: + return urlencode( $s ); + } } static function lcfirst( $parser, $s = '' ) { @@ -142,6 +187,11 @@ class CoreParserFunctions { return $wgContLang->ucfirst( $s ); } + /** + * @param $parser Parser + * @param string $s + * @return + */ static function lc( $parser, $s = '' ) { global $wgContLang; if ( is_callable( array( $parser, 'markerSkipCallback' ) ) ) { @@ -151,6 +201,11 @@ class CoreParserFunctions { } } + /** + * @param $parser Parser + * @param string $s + * @return + */ static function uc( $parser, $s = '' ) { global $wgContLang; if ( is_callable( array( $parser, 'markerSkipCallback' ) ) ) { @@ -164,6 +219,8 @@ class CoreParserFunctions { static function localurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeLocalURL', $s, $arg ); } static function fullurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getFullURL', $s, $arg ); } static function fullurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeFullURL', $s, $arg ); } + static function canonicalurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getCanonicalURL', $s, $arg ); } + static function canonicalurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeCanonicalURL', $s, $arg ); } static function urlFunction( $func, $s = '', $arg = null ) { $title = Title::newFromText( $s ); @@ -172,7 +229,7 @@ class CoreParserFunctions { # and the variable will fail. If we can't get a decent title from the first # attempt, url-decode and try for a second. if( is_null( $title ) ) - $title = Title::newFromUrl( urldecode( $s ) ); + $title = Title::newFromURL( urldecode( $s ) ); if( !is_null( $title ) ) { # Convert NS_MEDIA -> NS_FILE if( $title->getNamespace() == NS_MEDIA ) { @@ -189,6 +246,12 @@ class CoreParserFunctions { } } + /** + * @param $parser Parser + * @param string $num + * @param null $raw + * @return + */ static function formatNum( $parser, $num = '', $raw = null) { if ( self::israw( $raw ) ) { return $parser->getFunctionLang()->parseFormattedNumber( $num ); @@ -197,34 +260,56 @@ class CoreParserFunctions { } } + /** + * @param $parser Parser + * @param string $case + * @param string $word + * @return + */ static function grammar( $parser, $case = '', $word = '' ) { return $parser->getFunctionLang()->convertGrammar( $word, $case ); } - static function gender( $parser, $user ) { + /** + * @param $parser Parser + * @param $username string + * @return + */ + static function gender( $parser, $username ) { + wfProfileIn( __METHOD__ ); $forms = array_slice( func_get_args(), 2); + $username = trim( $username ); + // default $gender = User::getDefaultOption( 'gender' ); - + // allow prefix. - $title = Title::newFromText( $user ); - - if (is_object( $title ) && $title->getNamespace() == NS_USER) - $user = $title->getText(); + $title = Title::newFromText( $username ); - // check parameter, or use $wgUser if in interface message - $user = User::newFromName( $user ); + if ( $title && $title->getNamespace() == NS_USER ) { + $username = $title->getText(); + } + + // check parameter, or use the ParserOptions if in interface message + $user = User::newFromName( $username ); if ( $user ) { $gender = $user->getOption( 'gender' ); - } elseif ( $parser->mOptions->getInterfaceMessage() ) { - global $wgUser; - $gender = $wgUser->getOption( 'gender' ); + } elseif ( $username === '' && $parser->getOptions()->getInterfaceMessage() ) { + $gender = $parser->getOptions()->getUser()->getOption( 'gender' ); } - return $parser->getFunctionLang()->gender( $gender, $forms ); + $ret = $parser->getFunctionLang()->gender( $gender, $forms ); + wfProfileOut( __METHOD__ ); + return $ret; } - static function plural( $parser, $text = '') { - $forms = array_slice( func_get_args(), 2); + + /** + * @param $parser Parser + * @param string $text + * @return + */ + static function plural( $parser, $text = '' ) { + $forms = array_slice( func_get_args(), 2 ); $text = $parser->getFunctionLang()->parseFormattedNumber( $text ); return $parser->getFunctionLang()->convertPlural( $text, $forms ); } @@ -233,19 +318,27 @@ class CoreParserFunctions { * Override the title of the page when viewed, provided we've been given a * title which will normalise to the canonical title * - * @param Parser $parser Parent parser - * @param string $text Desired title text - * @return string + * @param $parser Parser: parent parser + * @param $text String: desired title text + * @return String */ static function displaytitle( $parser, $text = '' ) { global $wgRestrictDisplayTitle; - + + #parse a limited subset of wiki markup (just the single quote items) + $text = $parser->doQuotes( $text ); + + #remove stripped text (e.g. the UNIQ-QINU stuff) that was generated by tag extensions/whatever + $text = preg_replace( '/' . preg_quote( $parser->uniqPrefix(), '/' ) . '.*?' + . preg_quote( Parser::MARKER_SUFFIX, '/' ) . '/', '', $text ); + #list of disallowed tags for DISPLAYTITLE #these will be escaped even though they are allowed in normal wiki text - $bad = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'div', 'blockquote', 'ol', 'ul', 'li', - 'table', 'tr', 'th', 'td', 'dl', 'dd', 'caption', 'p', 'ruby', 'rb', 'rt', 'rp' ); - + $bad = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'div', 'blockquote', 'ol', 'ul', 'li', 'hr', + 'table', 'tr', 'th', 'td', 'dl', 'dd', 'caption', 'p', 'ruby', 'rb', 'rt', 'rp', 'br' ); + #only requested titles that normalize to the actual title are allowed through + #if $wgRestrictDisplayTitle is true (it is by default) #mimic the escaping process that occurs in OutputPage::setPageTitle $text = Sanitizer::normalizeCharReferences( Sanitizer::removeHTMLtags( $text, null, array(), array(), $bad ) ); $title = Title::newFromText( Sanitizer::stripAllTags( $text ) ); @@ -310,9 +403,9 @@ class CoreParserFunctions { } static function numberingroup( $parser, $name = '', $raw = null) { return self::formatRaw( SiteStats::numberingroup( strtolower( $name ) ), $raw ); - } + } + - /** * Given a title, return the namespace name that would be given by the * corresponding magic word @@ -321,201 +414,118 @@ class CoreParserFunctions { */ static function mwnamespace( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; return str_replace( '_', ' ', $t->getNsText() ); } static function namespacee( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; return wfUrlencode( $t->getNsText() ); } static function talkspace( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) || !$t->canTalk() ) + if ( is_null( $t ) || !$t->canTalk() ) return ''; return str_replace( '_', ' ', $t->getTalkNsText() ); } static function talkspacee( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) || !$t->canTalk() ) + if ( is_null( $t ) || !$t->canTalk() ) return ''; return wfUrlencode( $t->getTalkNsText() ); } static function subjectspace( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; return str_replace( '_', ' ', $t->getSubjectNsText() ); } static function subjectspacee( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; return wfUrlencode( $t->getSubjectNsText() ); } - /* + + /** * Functions to get and normalize pagenames, corresponding to the magic words * of the same names - */ + */ static function pagename( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; return wfEscapeWikiText( $t->getText() ); } static function pagenamee( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; - return $t->getPartialURL(); + return wfEscapeWikiText( $t->getPartialURL() ); } static function fullpagename( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) || !$t->canTalk() ) + if ( is_null( $t ) || !$t->canTalk() ) return ''; return wfEscapeWikiText( $t->getPrefixedText() ); } static function fullpagenamee( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) || !$t->canTalk() ) + if ( is_null( $t ) || !$t->canTalk() ) return ''; - return $t->getPrefixedURL(); + return wfEscapeWikiText( $t->getPrefixedURL() ); } static function subpagename( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; - return $t->getSubpageText(); + return wfEscapeWikiText( $t->getSubpageText() ); } static function subpagenamee( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; - return $t->getSubpageUrlForm(); + return wfEscapeWikiText( $t->getSubpageUrlForm() ); } static function basepagename( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; - return $t->getBaseText(); + return wfEscapeWikiText( $t->getBaseText() ); } static function basepagenamee( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; - return wfUrlEncode( str_replace( ' ', '_', $t->getBaseText() ) ); - } + return wfEscapeWikiText( wfUrlEncode( str_replace( ' ', '_', $t->getBaseText() ) ) ); + } static function talkpagename( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) || !$t->canTalk() ) + if ( is_null( $t ) || !$t->canTalk() ) return ''; return wfEscapeWikiText( $t->getTalkPage()->getPrefixedText() ); } static function talkpagenamee( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) || !$t->canTalk() ) + if ( is_null( $t ) || !$t->canTalk() ) return ''; - return $t->getTalkPage()->getPrefixedUrl(); + return wfEscapeWikiText( $t->getTalkPage()->getPrefixedUrl() ); } static function subjectpagename( $parser, $title = null ) { $t = Title::newFromText( $title ); - if ( is_null($t) ) + if ( is_null( $t ) ) return ''; return wfEscapeWikiText( $t->getSubjectPage()->getPrefixedText() ); } static function subjectpagenamee( $parser, $title = null ) { - $t = Title::newFromText( $title ); - if ( is_null($t) ) - return ''; - return $t->getSubjectPage()->getPrefixedUrl(); - } - /* - * Functions to get revision informations, corresponding to the magic words - * of the same names - */ - static function revisionid( $parser, $title = null ) { - static $cache = array (); $t = Title::newFromText( $title ); if ( is_null( $t ) ) return ''; - if ( $t->equals( $parser->getTitle() ) ) { - // Let the edit saving system know we should parse the page - // *after* a revision ID has been assigned. - $parser->mOutput->setFlag( 'vary-revision' ); - wfDebug( __METHOD__ . ": {{REVISIONID}} used, setting vary-revision...\n" ); - return $parser->getRevisionId(); - } - if ( isset( $cache[$t->getPrefixedText()] ) ) - return $cache[$t->getPrefixedText()]; - elseif ( $parser->incrementExpensiveFunctionCount() ) { - $a = new Article( $t ); - return $cache[$t->getPrefixedText()] = $a->getRevIdFetched(); - } - return ''; - } - static function revisiontimestamp( $parser, $title = null ) { - static $cache = array (); - $t = Title::newFromText( $title ); - if ( is_null( $t ) ) - return ''; - if ( $t->equals( $parser->getTitle() ) ) { - // Let the edit saving system know we should parse the page - // *after* a revision ID has been assigned. This is for null edits. - $parser->mOutput->setFlag( 'vary-revision' ); - wfDebug( __METHOD__ . ": {{REVISIONTIMESTAMP}} or related parser function used, setting vary-revision...\n" ); - return $parser->getRevisionTimestamp(); - } - if ( isset( $cache[$t->getPrefixedText()] ) ) - return $cache[$t->getPrefixedText()]; - elseif ( $parser->incrementExpensiveFunctionCount() ) { - $a = new Article( $t ); - return $cache[$t->getPrefixedText()] = $a->getTimestamp(); - } - return ''; - } - static function revisionday( $parser, $title = null ) { - $timestamp = self::revisiontimestamp( $parser, $title ); - if ( $timestamp == '' ) return ''; - return intval( substr( $timestamp, 6, 2 ) ); - } - static function revisionday2( $parser, $title = null ) { - $timestamp = self::revisiontimestamp( $parser, $title ); - if ( $timestamp == '' ) return ''; - return substr( $timestamp, 6, 2 ); - } - static function revisionmonth( $parser, $title = null ) { - $timestamp = self::revisiontimestamp( $parser, $title ); - if ( $timestamp == '' ) return ''; - return intval( substr( $timestamp, 4, 2 ) ); - } - static function revisionyear( $parser, $title = null ) { - $timestamp = self::revisiontimestamp( $parser, $title ); - if ( $timestamp == '' ) return ''; - return substr( $timestamp, 0, 4 ); + return wfEscapeWikiText( $t->getSubjectPage()->getPrefixedUrl() ); } - static function revisionuser( $parser, $title = null ) { - static $cache = array(); - $t = Title::newFromText( $title ); - if ( is_null( $t ) ) - return ''; - if ( $t->equals( $parser->getTitle() ) ) { - // Let the edit saving system know we should parse the page - // *after* a revision ID has been assigned. This is for null edits. - $parser->mOutput->setFlag( 'vary-revision' ); - wfDebug( __METHOD__ . ": {{REVISIONUSER}} used, setting vary-revision...\n" ); - return $parser->getRevisionUser(); - } - if ( isset( $cache[$t->getPrefixedText()] ) ) - return $cache[$t->getPrefixedText()]; - elseif ( $parser->incrementExpensiveFunctionCount() ) { - $a = new Article( $t ); - return $cache[$t->getPrefixedText()] = $a->getUserText(); - } - return ''; - } - + /** * Return the number of pages in the given category, or 0 if it's nonexis- * tent. This is an expensive parser function and can't be called too many @@ -546,16 +556,17 @@ class CoreParserFunctions { * Return the size of the given page, or 0 if it's nonexistent. This is an * expensive parser function and can't be called too many times per page. * - * @FIXME This doesn't work correctly on preview for getting the size of - * the current page. - * @FIXME Title::getLength() documentation claims that it adds things to - * the link cache, so the local cache here should be unnecessary, but in - * fact calling getLength() repeatedly for the same $page does seem to + * @todo FIXME: This doesn't work correctly on preview for getting the size + * of the current page. + * @todo FIXME: Title::getLength() documentation claims that it adds things + * to the link cache, so the local cache here should be unnecessary, but + * in fact calling getLength() repeatedly for the same $page does seem to * run one query for each call? + * @param $parser Parser */ static function pagesize( $parser, $page = '', $raw = null ) { static $cache = array(); - $title = Title::newFromText($page); + $title = Title::newFromText( $page ); if( !is_object( $title ) ) { $cache[$page] = 0; @@ -569,16 +580,16 @@ class CoreParserFunctions { if( isset( $cache[$page] ) ) { $length = $cache[$page]; } elseif( $parser->incrementExpensiveFunctionCount() ) { - $rev = Revision::newFromTitle($title); + $rev = Revision::newFromTitle( $title ); $id = $rev ? $rev->getPage() : 0; $length = $cache[$page] = $rev ? $rev->getSize() : 0; - + // Register dependency in templatelinks $parser->mOutput->addTemplate( $title, $id, $rev ? $rev->getId() : 0 ); - } + } return self::formatRaw( $length, $raw ); } - + /** * Returns the requested protection level for the current page */ @@ -589,38 +600,37 @@ class CoreParserFunctions { return implode( $restrictions, ',' ); } - static function language( $parser, $arg = '' ) { - global $wgContLang; - $lang = $wgContLang->getLanguageName( strtolower( $arg ) ); - return $lang != '' ? $lang : $arg; - } - /** - * Returns the number of contributions by a certain user. This is an - * expensive parser function and can't be called too many times per page - */ - static function numberofcontribs( $parser, $user = null, $raw = null ) { - if ( is_null($user) || !User::isValidUserName( $user ) ) { - return ''; - } - if ( !$parser->incrementExpensiveFunctionCount() ) { - return ''; + * Gives language names. + * @param $parser Parser + * @param $code String Language code + * @param $language String Language code + * @return String + */ + static function language( $parser, $code = '', $language = '' ) { + global $wgContLang; + $code = strtolower( $code ); + $language = strtolower( $language ); + + if ( $language !== '' ) { + $names = Language::getTranslatedLanguageNames( $language ); + return isset( $names[$code] ) ? $names[$code] : wfBCP47( $code ); } - $u = User::newFromName( $user ); - $id = User::idFromName( $u->mName ); - return self::formatRaw( User::edits( $id ), $raw ); + + $lang = $wgContLang->getLanguageName( $code ); + return $lang !== '' ? $lang : wfBCP47( $code ); } /** * Unicode-safe str_pad with the restriction that $length is forced to be <= 500 - */ + */ static function pad( $string, $length, $padding = '0', $direction = STR_PAD_RIGHT ) { - $lengthOfPadding = mb_strlen( $padding ); + $lengthOfPadding = mb_strlen( $padding ); if ( $lengthOfPadding == 0 ) return $string; - + # The remaining length to add counts down to 0 as padding is added $length = min( $length, 500 ) - mb_strlen( $string ); - # $finalPadding is just $padding repeated enough times so that + # $finalPadding is just $padding repeated enough times so that # mb_strlen( $string ) + mb_strlen( $finalPadding ) == $length $finalPadding = ''; while ( $length > 0 ) { @@ -629,7 +639,7 @@ class CoreParserFunctions { $finalPadding .= mb_substr( $padding, 0, $length ); $length -= $lengthOfPadding; } - + if ( $direction == STR_PAD_LEFT ) { return $finalPadding . $string; } else { @@ -645,44 +655,94 @@ class CoreParserFunctions { return self::pad( $string, $length, $padding ); } + /** + * @param $parser Parser + * @param $text + * @return string + */ static function anchorencode( $parser, $text ) { - $a = urlencode( $text ); - $a = strtr( $a, array( '%' => '.', '+' => '_' ) ); - # leave colons alone, however - $a = str_replace( '.3A', ':', $a ); - return $a; + return substr( $parser->guessSectionNameFromWikiText( $text ), 1); } static function special( $parser, $text ) { - $title = SpecialPage::getTitleForAlias( $text ); - if ( $title ) { - return $title->getPrefixedText(); + list( $page, $subpage ) = SpecialPageFactory::resolveAlias( $text ); + if ( $page ) { + $title = SpecialPage::getTitleFor( $page, $subpage ); + return $title; } else { return wfMsgForContent( 'nosuchspecialpage' ); } } - public static function defaultsort( $parser, $text ) { + /** + * @param $parser Parser + * @param $text String The sortkey to use + * @param $uarg String Either "noreplace" or "noerror" (in en) + * both suppress errors, and noreplace does nothing if + * a default sortkey already exists. + * @return string + */ + public static function defaultsort( $parser, $text, $uarg = '' ) { + static $magicWords = null; + if ( is_null( $magicWords ) ) { + $magicWords = new MagicWordArray( array( 'defaultsort_noerror', 'defaultsort_noreplace' ) ); + } + $arg = $magicWords->matchStartToEnd( $uarg ); + $text = trim( $text ); if( strlen( $text ) == 0 ) return ''; $old = $parser->getCustomDefaultSort(); - $parser->setDefaultSort( $text ); - if( $old === false || $old == $text ) + if ( $old === false || $arg !== 'defaultsort_noreplace' ) { + $parser->setDefaultSort( $text ); + } + + if( $old === false || $old == $text || $arg ) { return ''; - else + } else { return( '' . - wfMsg( 'duplicate-defaultsort', + wfMsgForContent( 'duplicate-defaultsort', htmlspecialchars( $old ), htmlspecialchars( $text ) ) . '' ); + } } - public static function filepath( $parser, $name='', $option='' ) { + // Usage {{filepath|300}}, {{filepath|nowiki}}, {{filepath|nowiki|300}} or {{filepath|300|nowiki}} + public static function filepath( $parser, $name='', $argA='', $argB='' ) { $file = wfFindFile( $name ); - if( $file ) { + $size = ''; + $argA_int = intval( $argA ); + $argB_int = intval( $argB ); + + if ( $argB_int > 0 ) { + // {{filepath: | option | size }} + $size = $argB_int; + $option = $argA; + + } elseif ( $argA_int > 0 ) { + // {{filepath: | size [|option] }} + $size = $argA_int; + $option = $argB; + + } else { + // {{filepath: [|option] }} + $option = $argA; + } + + if ( $file ) { $url = $file->getFullUrl(); - if( $option == 'nowiki' ) { + + // If a size is requested... + if ( is_integer( $size ) ) { + $mto = $file->transform( array( 'width' => $size ) ); + // ... and we can + if ( $mto && !$mto->isError() ) { + // ... change the URL to point to a thumbnail. + $url = wfExpandUrl( $mto->getUrl(), PROTO_RELATIVE ); + } + } + if ( $option == 'nowiki' ) { return array( $url, 'nowiki' => true ); } return $url; @@ -695,7 +755,6 @@ class CoreParserFunctions { * Parser function to extension tag adaptor */ public static function tagObj( $parser, $frame, $args ) { - $xpath = false; if ( !count( $args ) ) { return ''; } @@ -710,7 +769,7 @@ class CoreParserFunctions { $stripList = $parser->getStripList(); if ( !in_array( $tagName, $stripList ) ) { return '' . - wfMsg( 'unknown_extension_tag', $tagName ) . + wfMsgForContent( 'unknown_extension_tag', $tagName ) . ''; } @@ -735,12 +794,4 @@ class CoreParserFunctions { ); return $parser->extensionSubstitution( $params, $frame ); } - - /** - * magic word call for a group convert from LanguageConverter. - */ - public static function groupconvert( $parser, $group ) { - global $wgContLang; - return $wgContLang->groupConvert( $group ); - } }