mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 12:35:31 +00:00
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
namespace Wikia\PortableInfobox\Parser\Nodes;
|
|
|
|
use Wikia\PortableInfobox\Helpers\ImageFilenameSanitizer;
|
|
|
|
class NodeImage extends Node {
|
|
const ALT_TAG_NAME = 'alt';
|
|
|
|
public function getData() {
|
|
$title = $this->getImageAsTitleObject( $this->getRawValueWithDefault( $this->xmlNode ) );
|
|
$ref = null;
|
|
$alt = $this->getValueWithDefault( $this->xmlNode->{self::ALT_TAG_NAME} );
|
|
|
|
wfRunHooks( 'PortableInfoboxNodeImage::getData', [ $title, &$ref, $alt ] );
|
|
|
|
return [
|
|
'url' => $this->resolveImageUrl( $title ),
|
|
'name' => ( $title ) ? $title->getDBkey() : '',
|
|
'alt' => $alt,
|
|
'ref' => $ref
|
|
];
|
|
}
|
|
|
|
public function isEmpty( $data ) {
|
|
return !( isset( $data[ 'url' ] ) ) || empty( $data[ 'url' ] );
|
|
}
|
|
|
|
private function getImageAsTitleObject( $imageName ) {
|
|
global $wgContLang;
|
|
$title = \Title::newFromText(
|
|
ImageFilenameSanitizer::getInstance()->sanitizeImageFileName( $imageName, $wgContLang ),
|
|
NS_FILE
|
|
);
|
|
return $title;
|
|
}
|
|
|
|
/**
|
|
* @desc returns image url for given image title
|
|
* @param string $title
|
|
* @return string url or '' if image doesn't exist
|
|
*/
|
|
public function resolveImageUrl( $title ) {
|
|
if ( $title && $title->exists() ) {
|
|
return \WikiaFileHelper::getFileFromTitle( $title )->getUrlGenerator()->url();
|
|
} else if ( $title ) {
|
|
$file = wfFindFile( $title );
|
|
return $file->getUrl();
|
|
}
|
|
return '';
|
|
}
|
|
}
|