2015-04-27 14:05:31 +00:00
|
|
|
<?php
|
|
|
|
namespace Wikia\PortableInfobox\Parser\Nodes;
|
|
|
|
|
2015-05-07 12:37:13 +00:00
|
|
|
use Wikia\PortableInfobox\Helpers\ImageFilenameSanitizer;
|
|
|
|
|
2015-04-27 14:05:31 +00:00
|
|
|
class NodeImage extends Node {
|
|
|
|
const ALT_TAG_NAME = 'alt';
|
2015-05-19 07:56:57 +00:00
|
|
|
const CAPTION_TAG_NAME = 'caption';
|
2015-04-27 14:05:31 +00:00
|
|
|
|
|
|
|
public function getData() {
|
2015-06-11 09:34:28 +00:00
|
|
|
if ( !isset( $this->data ) ) {
|
|
|
|
$imageName = $this->getRawValueWithDefault( $this->xmlNode );
|
|
|
|
$title = $this->getImageAsTitleObject( $imageName );
|
|
|
|
$this->getExternalParser()->addImage( $title ? $title->getDBkey() : $imageName );
|
|
|
|
$ref = null;
|
|
|
|
$alt = $this->getValueWithDefault( $this->xmlNode->{self::ALT_TAG_NAME} );
|
|
|
|
$caption = $this->getValueWithDefault( $this->xmlNode->{self::CAPTION_TAG_NAME} );
|
|
|
|
|
|
|
|
wfRunHooks( 'PortableInfoboxNodeImage::getData', [ $title, &$ref, $alt ] );
|
|
|
|
|
|
|
|
$this->data = [
|
|
|
|
'url' => $this->resolveImageUrl( $title ),
|
|
|
|
'name' => ( $title ) ? $title->getText() : '',
|
|
|
|
'key' => ( $title ) ? $title->getDBKey() : '',
|
|
|
|
'alt' => $alt,
|
|
|
|
'caption' => $caption,
|
|
|
|
'ref' => $ref
|
|
|
|
];
|
|
|
|
}
|
2015-06-10 09:28:33 +00:00
|
|
|
|
|
|
|
return $this->data;
|
2015-04-27 14:05:31 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 09:28:33 +00:00
|
|
|
public function isEmpty() {
|
2015-06-11 09:34:28 +00:00
|
|
|
$data = $this->getData();
|
|
|
|
return !( isset( $data[ 'url' ] ) ) || empty( $data[ 'url' ] );
|
2015-05-06 14:11:04 +00:00
|
|
|
}
|
|
|
|
|
2015-05-11 12:36:23 +00:00
|
|
|
private function getImageAsTitleObject( $imageName ) {
|
2015-05-04 15:43:09 +00:00
|
|
|
global $wgContLang;
|
2015-05-07 12:37:13 +00:00
|
|
|
$title = \Title::newFromText(
|
2015-05-11 12:36:23 +00:00
|
|
|
ImageFilenameSanitizer::getInstance()->sanitizeImageFileName( $imageName, $wgContLang ),
|
2015-05-07 12:37:13 +00:00
|
|
|
NS_FILE
|
|
|
|
);
|
2015-06-03 14:53:31 +00:00
|
|
|
|
2015-05-11 12:36:23 +00:00
|
|
|
return $title;
|
|
|
|
}
|
|
|
|
|
2015-05-22 15:27:20 +00:00
|
|
|
/**
|
|
|
|
* @desc returns image url for given image title
|
2015-06-03 14:53:31 +00:00
|
|
|
*
|
2015-05-22 15:27:20 +00:00
|
|
|
* @param string $title
|
2015-06-03 14:53:31 +00:00
|
|
|
*
|
2015-05-22 15:27:20 +00:00
|
|
|
* @return string url or '' if image doesn't exist
|
|
|
|
*/
|
2015-05-11 11:56:18 +00:00
|
|
|
public function resolveImageUrl( $title ) {
|
2015-05-22 16:25:21 +00:00
|
|
|
if ( $title ) {
|
2015-05-25 11:02:35 +00:00
|
|
|
$file = \WikiaFileHelper::getFileFromTitle( $title );
|
|
|
|
if ( $file ) {
|
2015-05-22 16:25:21 +00:00
|
|
|
return $file->getUrl();
|
|
|
|
}
|
2015-04-27 14:05:31 +00:00
|
|
|
}
|
2015-06-03 14:53:31 +00:00
|
|
|
|
2015-05-22 15:27:20 +00:00
|
|
|
return '';
|
2015-04-27 14:05:31 +00:00
|
|
|
}
|
|
|
|
}
|