2012-01-28 16:22:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Wikitext scripting infrastructure for MediaWiki: hooks.
|
|
|
|
* Copyright (C) 2009-2012 Victor Vasiliev <vasilvv@gmail.com>
|
|
|
|
* http://www.mediawiki.org/
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hooks for Scripting extension.
|
|
|
|
*/
|
|
|
|
class ScriptingHooks {
|
|
|
|
/**
|
|
|
|
* Register parser hooks.
|
|
|
|
* @param $parser Parser
|
|
|
|
*/
|
|
|
|
public static function setupParserHook( &$parser ) {
|
|
|
|
$parser->setFunctionHook( 'invoke', 'ScriptingHooks::callHook', SFH_OBJECT_ARGS );
|
|
|
|
$parser->setFunctionHook( 'script', 'ScriptingHooks::transcludeHook', SFH_NO_HASH | SFH_OBJECT_ARGS );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when interpreter is to be reset.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @param $parser Parser
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function clearState( &$parser ) {
|
|
|
|
Scripting::resetEngine( $parser );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds scriptlinks table to parser tests.
|
|
|
|
*/
|
|
|
|
public static function addTestTables( &$tables ) {
|
|
|
|
$tables[] = 'scriptlinks';
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles the {{#invoke:module|func}} construction.
|
2012-01-28 16:46:15 +00:00
|
|
|
*
|
|
|
|
* @param $parser Parser
|
|
|
|
* @param $frame PPFrame
|
|
|
|
* @param $args array
|
2012-01-28 16:22:18 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function callHook( &$parser, $frame, $args ) {
|
|
|
|
if( count( $args ) < 2 ) {
|
2012-01-28 16:46:15 +00:00
|
|
|
throw new ScriptingException( 'nofunction', 'common' ); // scripting-exceptions-common-nofunction
|
2012-01-28 16:22:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$module = $parser->mStripState->unstripBoth( array_shift( $args ) );
|
|
|
|
$function = $frame->expand( array_shift( $args ) );
|
|
|
|
return self::doRunHook( $parser, $frame, $module, $function, $args );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles the transclusion of the script ({{script:module}} hook).
|
2012-01-28 16:46:15 +00:00
|
|
|
*
|
|
|
|
* @param $parser Parser
|
|
|
|
* @param $frame PPFrame
|
|
|
|
* @param $args
|
2012-01-28 16:22:18 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function transcludeHook( &$parser, $frame, $args ) {
|
|
|
|
$module = $parser->mStripState->unstripBoth( array_shift( $args ) );
|
|
|
|
return self::doRunHook( $parser, $frame, $module, 'main', $args );
|
|
|
|
}
|
|
|
|
|
2012-01-28 16:46:15 +00:00
|
|
|
/**
|
|
|
|
* @param $parser Parser
|
|
|
|
* @param $frame PPFrame
|
|
|
|
* @param $module
|
|
|
|
* @param $function
|
|
|
|
* @param $args
|
|
|
|
* @return string
|
|
|
|
* @throws ScriptingException
|
|
|
|
*/
|
2012-01-28 16:22:18 +00:00
|
|
|
private static function doRunHook( &$parser, $frame, $module, $function, $args ) {
|
|
|
|
wfProfileIn( __METHOD__ );
|
|
|
|
|
|
|
|
try {
|
|
|
|
$engine = Scripting::getEngine( $parser );
|
|
|
|
|
|
|
|
foreach( $args as &$arg ) {
|
|
|
|
$arg = $frame->expand( $arg );
|
|
|
|
}
|
|
|
|
|
|
|
|
$module = $engine->getModule( $module, Scripting::Local );
|
|
|
|
|
|
|
|
$functionObj = $module->getFunction( $function );
|
|
|
|
if( !$functionObj ) {
|
|
|
|
throw new ScriptingException( 'nosuchfunction', 'common' ); // scripting-exceptions-common-nosuchfunction
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = $functionObj->call( $args, $frame );
|
|
|
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
return trim( $result );
|
|
|
|
} catch( ScriptingException $e ) {
|
|
|
|
$msg = $e->getMessage();
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
return "<strong class=\"error\">{$msg}</strong>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides the standard view for modules. Enables syntax highlighting when
|
|
|
|
* possible.
|
2012-01-28 16:46:15 +00:00
|
|
|
*
|
|
|
|
* @param $text string
|
|
|
|
* @param $title Title
|
|
|
|
* @param $output OutputPage
|
2012-01-28 16:22:18 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function handleScriptView( $text, $title, $output ) {
|
|
|
|
global $wgScriptingUseGeSHi, $wgParser;
|
|
|
|
|
|
|
|
if( $title->getNamespace() == NS_MODULE ) {
|
|
|
|
$engine = Scripting::getEngine( $wgParser );
|
|
|
|
$language = $engine->getGeSHiLangauge();
|
|
|
|
|
|
|
|
if( $wgScriptingUseGeSHi && $language ) {
|
|
|
|
$geshi = SyntaxHighlight_GeSHi::prepare( $text, $language );
|
|
|
|
$geshi->set_language( $language );
|
|
|
|
if( $geshi instanceof GeSHi && !$geshi->error() ) {
|
|
|
|
$code = $geshi->parse_code();
|
|
|
|
if( $code ) {
|
|
|
|
$output->addHeadItem( "source-{$language}", SyntaxHighlight_GeSHi::buildHeadItem( $geshi ) );
|
|
|
|
$output->addHTML( "<div dir=\"ltr\">{$code}</div>" );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No GeSHi, or GeSHi can't parse it, use plain <pre>
|
|
|
|
$output->addHTML( "<pre class=\"mw-code mw-script\" dir=\"ltr\">\n" );
|
|
|
|
$output->addHTML( htmlspecialchars( $text ) );
|
|
|
|
$output->addHTML( "\n</pre>\n" );
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2012-02-06 22:14:47 +00:00
|
|
|
|
|
|
|
public static function getCodeLangauge( $title, &$lang ) {
|
|
|
|
global $wgParser, $wgScriptingUseCodeEditor;
|
|
|
|
if( $wgScriptingUseCodeEditor && $title->getNamespace() == NS_MODULE ) {
|
|
|
|
$engine = Scripting::getEngine( $wgParser );
|
|
|
|
if( $engine->getCodeEditorLanguage() ) {
|
|
|
|
$lang = $engine->getCodeEditorLanguage();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2012-01-28 16:22:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates that modules are not wikitext.
|
2012-01-28 16:46:15 +00:00
|
|
|
* @param $title Title
|
|
|
|
* @param $result
|
|
|
|
* @return bool
|
2012-01-28 16:22:18 +00:00
|
|
|
*/
|
|
|
|
public static function isWikitextPage( $title, &$result ) {
|
|
|
|
if( $title->getNamespace() == NS_MODULE ) {
|
|
|
|
$result = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds report of number of evaluations by the single wikitext page.
|
|
|
|
*
|
2012-01-28 16:46:15 +00:00
|
|
|
* @param $parser Parser
|
|
|
|
* @param $report
|
2012-01-28 16:22:18 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function reportLimits( $parser, &$report ) {
|
|
|
|
# FIXME
|
|
|
|
global $wgScriptsLimits;
|
|
|
|
$engine = Scripting::getEngine( $parser );
|
|
|
|
$report .= $engine->getLimitsReport();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds the module namespaces.
|
|
|
|
*/
|
|
|
|
public static function addCanonicalNamespaces( &$list ) {
|
|
|
|
$list[NS_MODULE] = 'Module';
|
|
|
|
$list[NS_MODULE_TALK] = 'Module_talk';
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function validateScript( $editor, $text, $section, &$error ) {
|
|
|
|
global $wgUser, $wgParser;
|
|
|
|
$title = $editor->mTitle;
|
|
|
|
|
|
|
|
if( $title->getNamespace() == NS_MODULE ) {
|
|
|
|
$engine = Scripting::getEngine( $wgParser );
|
|
|
|
$errors = $engine->validate( $text, $title );
|
|
|
|
if( !$errors ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$errmsg = wfMsgExt( 'scripting-error', array( 'parsemag' ), array( count( $errors ) ) );
|
|
|
|
if( count( $errors ) == 1 ) {
|
|
|
|
$errlines = ': ' . wfEscapeWikiText( $errors[0] );
|
|
|
|
} else {
|
|
|
|
$errlines = '* ' . implode( "\n* ", array_map( 'wfEscapeWikiText', $errors ) );
|
|
|
|
}
|
|
|
|
$error = <<<HTML
|
|
|
|
<div class="errorbox">
|
|
|
|
{$errmsg}
|
|
|
|
{$errlines}
|
|
|
|
</div>
|
|
|
|
<br clear="all" />
|
|
|
|
HTML;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2012-01-28 16:46:15 +00:00
|
|
|
|
2012-01-28 16:22:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|