mediawiki-extensions-Scribunto/includes/engines/LuaCommon/UriLibrary.php
Kunal Mehta f76ba3c465 Disable Squiz.Classes.ValidClassName.NotCamelCaps globally
Instead of per-file. This happens to also fix a false positive with the
PhpunitAnnotations sniff.

Change-Id: I22621c37217ed2db9d8b3591df1a1421c25fa7f6
2018-05-24 22:26:11 -07:00

56 lines
1.3 KiB
PHP

<?php
class Scribunto_LuaUriLibrary extends Scribunto_LuaLibraryBase {
function register() {
$lib = [
'anchorEncode' => [ $this, 'anchorEncode' ],
'localUrl' => [ $this, 'localUrl' ],
'fullUrl' => [ $this, 'fullUrl' ],
'canonicalUrl' => [ $this, 'canonicalUrl' ],
];
return $this->getEngine()->registerInterface( 'mw.uri.lua', $lib, [
'defaultUrl' => $this->getTitle()->getFullUrl(),
] );
}
public function anchorEncode( $s ) {
return [ 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 [ $text ];
} else {
return [ 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 );
}
}