mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-12 09:36:10 +00:00
3055ac6aa3
getParser() sometimes returns null (eg: on saving edits), so use the engine's title instead. Change-Id: I62259b76d6960a934b5e208fdaacbbfc7c2d057c
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
|
|
class Scribunto_LuaUriLibrary extends Scribunto_LuaLibraryBase {
|
|
function register( $pureLua = false ) {
|
|
$lib = array(
|
|
'anchorEncode' => array( $this, 'anchorEncode' ),
|
|
'localUrl' => array( $this, 'localUrl' ),
|
|
'fullUrl' => array( $this, 'fullUrl' ),
|
|
'canonicalUrl' => array( $this, 'canonicalUrl' ),
|
|
);
|
|
|
|
$this->getEngine()->registerInterface( 'mw.uri.lua', $lib, array(
|
|
'defaultUrl' => $this->getTitle()->getFullUrl(),
|
|
) );
|
|
}
|
|
|
|
public function anchorEncode( $s ) {
|
|
return array( CoreParserFunctions::anchorencode(
|
|
$this->getParser(), $s
|
|
) );
|
|
}
|
|
|
|
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 array( $text );
|
|
} else {
|
|
return array( null );
|
|
}
|
|
}
|
|
|
|
public function localUrl( $page, $query ) {
|
|
return $this->getUrl( 'getLocalURL', $page, $query );
|
|
}
|
|
|
|
public function fullUrl( $page, $query ) {
|
|
return $this->getUrl( 'getFullURL', $page, $query );
|
|
}
|
|
|
|
public function canonicalUrl( $page, $query ) {
|
|
return $this->getUrl( 'getCanonicalURL', $page, $query );
|
|
}
|
|
}
|