2007-01-05 02:13:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
|
|
|
die( 'This file is a MediaWiki extension, it is not a valid entry point' );
|
|
|
|
}
|
|
|
|
|
|
|
|
$wgExtensionFunctions[] = 'wfSetupParserFunctions';
|
2007-01-07 13:57:35 +00:00
|
|
|
$wgExtensionCredits['parserhook'][] = array(
|
|
|
|
'name' => 'ParserFunctions',
|
|
|
|
'url' => 'http://meta.wikimedia.org/wiki/ParserFunctions',
|
|
|
|
'author' => 'Tim Starling',
|
|
|
|
'description' => 'Enhance parser with logical functions',
|
|
|
|
);
|
2007-01-05 02:13:39 +00:00
|
|
|
|
|
|
|
$wgHooks['LanguageGetMagic'][] = 'wfParserFunctionsLanguageGetMagic';
|
|
|
|
|
|
|
|
class ExtParserFunctions {
|
|
|
|
var $mExprParser;
|
|
|
|
var $mTimeCache = array();
|
|
|
|
var $mTimeChars = 0;
|
|
|
|
var $mMaxTimeChars = 6000; # ~10 seconds
|
|
|
|
|
|
|
|
function clearState() {
|
|
|
|
$this->mTimeChars = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function &getExprParser() {
|
|
|
|
if ( !isset( $this->mExpr ) ) {
|
|
|
|
if ( !class_exists( 'ExprParser' ) ) {
|
|
|
|
require( dirname( __FILE__ ) . '/Expr.php' );
|
|
|
|
ExprParser::addMessages();
|
|
|
|
}
|
|
|
|
$this->mExprParser = new ExprParser;
|
|
|
|
}
|
|
|
|
return $this->mExprParser;
|
|
|
|
}
|
|
|
|
|
|
|
|
function expr( &$parser, $expr = '' ) {
|
|
|
|
try {
|
|
|
|
return $this->getExprParser()->doExpression( $expr );
|
|
|
|
} catch(ExprError $e) {
|
|
|
|
return $e->getMessage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function ifexpr( &$parser, $expr = '', $then = '', $else = '' ) {
|
|
|
|
try{
|
|
|
|
if($this->getExprParser()->doExpression( $expr )) {
|
|
|
|
return $then;
|
|
|
|
} else {
|
|
|
|
return $else;
|
|
|
|
}
|
|
|
|
} catch (ExprError $e){
|
|
|
|
return $e->getMessage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function ifHook( &$parser, $test = '', $then = '', $else = '' ) {
|
|
|
|
if ( $test !== '' ) {
|
|
|
|
return $then;
|
|
|
|
} else {
|
|
|
|
return $else;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function ifeq( &$parser, $left = '', $right = '', $then = '', $else = '' ) {
|
|
|
|
if ( $left == $right ) {
|
|
|
|
return $then;
|
|
|
|
} else {
|
|
|
|
return $else;
|
|
|
|
}
|
|
|
|
}
|
2007-01-06 20:56:46 +00:00
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
function switchHook( &$parser /*,...*/ ) {
|
|
|
|
$args = func_get_args();
|
|
|
|
array_shift( $args );
|
|
|
|
$value = trim(array_shift($args));
|
|
|
|
$found = false;
|
|
|
|
$parts = null;
|
|
|
|
$default = null;
|
|
|
|
foreach( $args as $arg ) {
|
|
|
|
$parts = array_map( 'trim', explode( '=', $arg, 2 ) );
|
|
|
|
if ( count( $parts ) == 2 ) {
|
|
|
|
if ( $found || $parts[0] == $value ) {
|
|
|
|
return $parts[1];
|
|
|
|
} else {
|
|
|
|
$mwDefault =& MagicWord::get( 'default' );
|
|
|
|
if ( $mwDefault->matchStartAndRemove( $parts[0] ) ) {
|
|
|
|
$default = $parts[1];
|
|
|
|
} # else wrong case, continue
|
|
|
|
}
|
|
|
|
} elseif ( count( $parts ) == 1 ) {
|
|
|
|
# Multiple input, single output
|
|
|
|
# If the value matches, set a flag and continue
|
|
|
|
if ( $parts[0] == $value ) {
|
|
|
|
$found = true;
|
|
|
|
}
|
|
|
|
} # else RAM corruption due to cosmic ray?
|
|
|
|
}
|
|
|
|
# Default case
|
|
|
|
# Check if the last item had no = sign, thus specifying the default case
|
|
|
|
if ( count( $parts ) == 1) {
|
|
|
|
return $parts[0];
|
|
|
|
} elseif ( !is_null( $default ) ) {
|
|
|
|
return $default;
|
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the absolute path to a subpage, relative to the current article
|
|
|
|
* title. Treats titles as slash-separated paths.
|
|
|
|
*
|
|
|
|
* Following subpage link syntax instead of standard path syntax, an
|
|
|
|
* initial slash is treated as a relative path, and vice versa.
|
|
|
|
*/
|
|
|
|
public function rel2abs( &$parser , $to = '' , $from = '' ) {
|
|
|
|
|
|
|
|
$from = trim($from);
|
|
|
|
if( $from == '' ) {
|
2007-01-17 22:57:38 +00:00
|
|
|
$from = $parser->getTitle()->getPrefixedText();
|
2007-01-05 02:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$to = rtrim( $to , ' /' );
|
|
|
|
|
|
|
|
// if we have an empty path, or just one containing a dot
|
|
|
|
if( $to == '' || $to == '.' ) {
|
|
|
|
return $from;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the path isn't relative
|
|
|
|
if ( substr( $to , 0 , 1) != '/' &&
|
|
|
|
substr( $to , 0 , 2) != './' &&
|
|
|
|
substr( $to , 0 , 3) != '../' &&
|
|
|
|
$to != '..' )
|
|
|
|
{
|
|
|
|
$from = '';
|
|
|
|
}
|
|
|
|
// Make a long path, containing both, enclose it in /.../
|
2007-01-06 20:56:46 +00:00
|
|
|
$fullPath = '/' . $from . '/' . $to . '/';
|
2007-01-05 02:13:39 +00:00
|
|
|
|
|
|
|
// remove redundant current path dots
|
|
|
|
$fullPath = preg_replace( '!/(\./)+!', '/', $fullPath );
|
|
|
|
|
|
|
|
// remove double slashes
|
|
|
|
$fullPath = preg_replace( '!/{2,}!', '/', $fullPath );
|
|
|
|
|
|
|
|
// remove the enclosing slashes now
|
2007-01-06 20:56:46 +00:00
|
|
|
$fullPath = trim( $fullPath , '/' );
|
2007-01-05 02:13:39 +00:00
|
|
|
$exploded = explode ( '/' , $fullPath );
|
|
|
|
$newExploded = array();
|
|
|
|
|
|
|
|
foreach ( $exploded as $current ) {
|
|
|
|
if( $current == '..' ) { // removing one level
|
|
|
|
if( !count( $newExploded ) ){
|
|
|
|
// attempted to access a node above root node
|
|
|
|
return wfMsgForContent( 'pfunc_rel2abs_invalid_depth', $fullPath );
|
|
|
|
}
|
|
|
|
// remove last level from the stack
|
2007-01-06 20:56:46 +00:00
|
|
|
array_pop( $newExploded );
|
2007-01-05 02:13:39 +00:00
|
|
|
} else {
|
|
|
|
// add the current level to the stack
|
2007-01-06 20:56:46 +00:00
|
|
|
$newExploded[] = $current;
|
2007-01-05 02:13:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// we can now join it again
|
|
|
|
return implode( '/' , $newExploded );
|
|
|
|
}
|
|
|
|
|
|
|
|
function ifexist( &$parser, $title = '', $then = '', $else = '' ) {
|
|
|
|
$title = Title::newFromText( $title );
|
2007-02-12 10:24:23 +00:00
|
|
|
if ( $title ) {
|
|
|
|
$id = $title->getArticleID();
|
|
|
|
$parser->mOutput->addLink( $title, $id );
|
|
|
|
if ( $id ) {
|
|
|
|
return $then;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $else;
|
2007-01-05 02:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function time( &$parser, $format = '', $date = '' ) {
|
|
|
|
global $wgContLang;
|
|
|
|
if ( isset( $this->mTimeCache[$format][$date] ) ) {
|
|
|
|
return $this->mTimeCache[$format][$date];
|
|
|
|
}
|
2007-01-06 20:56:46 +00:00
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
if ( $date !== '' ) {
|
|
|
|
$unix = @strtotime( $date );
|
|
|
|
} else {
|
|
|
|
$unix = time();
|
|
|
|
}
|
2007-01-06 20:56:46 +00:00
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
if ( $unix == -1 || $unix == false ) {
|
|
|
|
$result = wfMsgForContent( 'pfunc_time_error' );
|
|
|
|
} else {
|
|
|
|
$this->mTimeChars += strlen( $format );
|
|
|
|
if ( $this->mTimeChars > $this->mMaxTimeChars ) {
|
|
|
|
return wfMsgForContent( 'pfunc_time_too_long' );
|
|
|
|
} else {
|
|
|
|
$ts = wfTimestamp( TS_MW, $unix );
|
|
|
|
if ( method_exists( $wgContLang, 'sprintfDate' ) ) {
|
|
|
|
$result = $wgContLang->sprintfDate( $format, $ts );
|
|
|
|
} else {
|
|
|
|
if ( !class_exists( 'SprintfDateCompat' ) ) {
|
|
|
|
require( dirname( __FILE__ ) . '/SprintfDateCompat.php' );
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = SprintfDateCompat::sprintfDate( $format, $ts );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->mTimeCache[$format][$date] = $result;
|
|
|
|
return $result;
|
|
|
|
}
|
2007-06-04 17:34:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain a specified number of slash-separated parts of a title,
|
|
|
|
* e.g. {{#titleparts:Hello/World|1}} => "Hello"
|
|
|
|
*
|
|
|
|
* @param Parser $parser Parent parser
|
|
|
|
* @param string $title Title to split
|
|
|
|
* @param int $parts Number of parts to keep
|
2007-06-13 00:26:28 +00:00
|
|
|
* @param int $offset Offset starting at 1
|
2007-06-04 17:34:07 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2007-06-13 00:26:28 +00:00
|
|
|
public function titleparts( $parser, $title = '', $parts = -1, $offset = 1 ) {
|
2007-06-04 17:34:07 +00:00
|
|
|
$parts = intval( $parts );
|
2007-06-13 00:26:28 +00:00
|
|
|
$offset = intval( $offset ) - 1;
|
2007-06-04 17:34:07 +00:00
|
|
|
$ntitle = Title::newFromText( $title );
|
|
|
|
if( $ntitle instanceof Title ) {
|
|
|
|
$bits = explode( '/', $ntitle->getPrefixedText() );
|
|
|
|
if( $parts <= 0 || $parts > count( $bits ) ) {
|
2007-06-04 17:40:47 +00:00
|
|
|
return $ntitle->getPrefixedText();
|
2007-06-13 00:26:28 +00:00
|
|
|
} elseif( $offset < 0 || $offset > count( $bits ) ) {
|
|
|
|
return $ntitle->getPrefixedText();
|
2007-06-04 17:34:07 +00:00
|
|
|
} else {
|
|
|
|
$keep = array();
|
2007-06-13 00:26:28 +00:00
|
|
|
for( $i = 0; $i < $offset; $i++ )
|
|
|
|
array_shift( $bits );
|
2007-06-04 17:34:07 +00:00
|
|
|
for( $i = 0; $i < $parts; $i++ )
|
|
|
|
$keep[] = array_shift( $bits );
|
|
|
|
return implode( '/', $keep );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return $title;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function wfSetupParserFunctions() {
|
|
|
|
global $wgParser, $wgMessageCache, $wgExtParserFunctions, $wgMessageCache, $wgHooks;
|
|
|
|
|
|
|
|
$wgExtParserFunctions = new ExtParserFunctions;
|
|
|
|
|
|
|
|
$wgParser->setFunctionHook( 'expr', array( &$wgExtParserFunctions, 'expr' ) );
|
|
|
|
$wgParser->setFunctionHook( 'if', array( &$wgExtParserFunctions, 'ifHook' ) );
|
|
|
|
$wgParser->setFunctionHook( 'ifeq', array( &$wgExtParserFunctions, 'ifeq' ) );
|
|
|
|
$wgParser->setFunctionHook( 'ifexpr', array( &$wgExtParserFunctions, 'ifexpr' ) );
|
|
|
|
$wgParser->setFunctionHook( 'switch', array( &$wgExtParserFunctions, 'switchHook' ) );
|
2007-01-06 20:56:46 +00:00
|
|
|
$wgParser->setFunctionHook( 'ifexist', array( &$wgExtParserFunctions, 'ifexist' ) );
|
|
|
|
$wgParser->setFunctionHook( 'time', array( &$wgExtParserFunctions, 'time' ) );
|
|
|
|
$wgParser->setFunctionHook( 'rel2abs', array( &$wgExtParserFunctions, 'rel2abs' ) );
|
2007-06-04 17:34:07 +00:00
|
|
|
$wgParser->setFunctionHook( 'titleparts', array( &$wgExtParserFunctions, 'titleparts' ) );
|
2007-01-05 02:13:39 +00:00
|
|
|
|
|
|
|
$wgMessageCache->addMessage( 'pfunc_time_error', "Error: invalid time" );
|
|
|
|
$wgMessageCache->addMessage( 'pfunc_time_too_long', "Error: too many #time calls" );
|
|
|
|
$wgMessageCache->addMessage( 'pfunc_rel2abs_invalid_depth', "Error: Invalid depth in path: \"$1\" (tried to access a node above the root node)" );
|
|
|
|
|
|
|
|
$wgHooks['ParserClearState'][] = array( &$wgExtParserFunctions, 'clearState' );
|
|
|
|
}
|
|
|
|
|
|
|
|
function wfParserFunctionsLanguageGetMagic( &$magicWords, $langCode ) {
|
2007-06-07 19:02:57 +00:00
|
|
|
require_once( dirname( __FILE__ ) . '/ParserFunctions.i18n.php' );
|
|
|
|
foreach( efParserFunctionsWords( $langCode ) as $word => $trans )
|
|
|
|
$magicWords[$word] = $trans;
|
2007-01-05 02:13:39 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-06-29 01:36:09 +00:00
|
|
|
|