2013-01-26 00:09:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Scribunto_LuaUriLibrary extends Scribunto_LuaLibraryBase {
|
2013-03-04 19:55:46 +00:00
|
|
|
function register() {
|
2013-01-26 00:09:50 +00:00
|
|
|
$lib = array(
|
|
|
|
'anchorEncode' => array( $this, 'anchorEncode' ),
|
|
|
|
'localUrl' => array( $this, 'localUrl' ),
|
|
|
|
'fullUrl' => array( $this, 'fullUrl' ),
|
|
|
|
'canonicalUrl' => array( $this, 'canonicalUrl' ),
|
|
|
|
);
|
2013-02-07 18:51:41 +00:00
|
|
|
|
2013-01-26 00:09:50 +00:00
|
|
|
$this->getEngine()->registerInterface( 'mw.uri.lua', $lib, array(
|
2013-02-07 18:51:41 +00:00
|
|
|
'defaultUrl' => $this->getTitle()->getFullUrl(),
|
2013-01-26 00:09:50 +00:00
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
|
|
|
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 );
|
|
|
|
}
|
|
|
|
}
|