mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-28 02:00:01 +00:00
e30641e439
ScribuntoContent now supports content being redirects, if the underlying ScribuntoEngine does so. For Lua, a redirect looks like: return require [[Module:Foo]] which also happens to be perfectly valid Lua. There is intentionally no `#REDIRECT`-style token (like in wikitext/JavaScript/CSS) because no one will create a page with this content except for the purposes of a redirect. Bug: T120794 Co-Authored-By: DannyS712 <DannyS712.enwiki@gmail.com> Co-Authored-By: C. Scott Ananian <cscott@cscott.net> Co-Authored-By: Jackmcbarn <jackmcbarn@gmail.com> Change-Id: I405e7953d00af8a34d5e8addc61a245732c71e8e
96 lines
2.1 KiB
PHP
96 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Scribunto\Engines\LuaCommon;
|
|
|
|
use CoreParserFunctions;
|
|
use MediaWiki\Title\Title;
|
|
|
|
class UriLibrary extends LibraryBase {
|
|
public function register() {
|
|
$lib = [
|
|
'anchorEncode' => [ $this, 'anchorEncode' ],
|
|
'localUrl' => [ $this, 'localUrl' ],
|
|
'fullUrl' => [ $this, 'fullUrl' ],
|
|
'canonicalUrl' => [ $this, 'canonicalUrl' ],
|
|
];
|
|
|
|
$title = $this->getTitle();
|
|
return $this->getEngine()->registerInterface( 'mw.uri.lua', $lib, [
|
|
'defaultUrl' => $title ? $title->getFullUrl() : null,
|
|
] );
|
|
}
|
|
|
|
/**
|
|
* Handler for anchorEncode
|
|
* @internal
|
|
* @param string $s
|
|
* @return string[]
|
|
*/
|
|
public function anchorEncode( $s ) {
|
|
return [ CoreParserFunctions::anchorencode(
|
|
$this->getParser(), $s
|
|
) ];
|
|
}
|
|
|
|
/**
|
|
* Get a URL (helper for handlers)
|
|
* @param string $func Title class method to call
|
|
* @param string $page Page title
|
|
* @param array $query Query string
|
|
* @return string[]|null[]
|
|
*/
|
|
private function getUrl( $func, $page, $query ) {
|
|
$title = Title::newFromText( $page );
|
|
if ( !$title ) {
|
|
$title = Title::newFromURL( urldecode( $page ) );
|
|
}
|
|
if ( $title ) {
|
|
# Convert NS_MEDIA -> NS_FILE
|
|
if ( $title->getNamespace() === NS_MEDIA ) {
|
|
$title = Title::makeTitle( NS_FILE, $title->getDBkey() );
|
|
}
|
|
if ( $query !== null ) {
|
|
$text = $title->$func( $query );
|
|
} else {
|
|
$text = $title->$func();
|
|
}
|
|
return [ $text ];
|
|
} else {
|
|
return [ null ];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handler for localUrl
|
|
* @internal
|
|
* @param string $page
|
|
* @param array $query
|
|
* @return string[]|null[]
|
|
*/
|
|
public function localUrl( $page, $query ) {
|
|
return $this->getUrl( 'getLocalURL', $page, $query );
|
|
}
|
|
|
|
/**
|
|
* Handler for fullUrl
|
|
* @internal
|
|
* @param string $page
|
|
* @param array $query
|
|
* @return string[]|null[]
|
|
*/
|
|
public function fullUrl( $page, $query ) {
|
|
return $this->getUrl( 'getFullURL', $page, $query );
|
|
}
|
|
|
|
/**
|
|
* Handler for canonicalUrl
|
|
* @internal
|
|
* @param string $page
|
|
* @param array $query
|
|
* @return string[]|null[]
|
|
*/
|
|
public function canonicalUrl( $page, $query ) {
|
|
return $this->getUrl( 'getCanonicalURL', $page, $query );
|
|
}
|
|
}
|