PortableInfobox/services/Helpers/PortableInfoboxRenderServiceHelper.php

202 lines
5.5 KiB
PHP
Raw Normal View History

<?php
namespace Wikia\PortableInfobox\Helpers;
class PortableInfoboxRenderServiceHelper {
const DEFAULT_DESKTOP_THUMBNAIL_WIDTH = 270;
const EUROPA_THUMBNAIL_WIDTH = 300;
const MOBILE_THUMBNAIL_WIDTH = 360;
const MINIMAL_HERO_IMG_WIDTH = 300;
2015-09-09 08:16:00 +00:00
const MAX_DESKTOP_THUMBNAIL_HEIGHT = 500;
const EUROPA_THEME_NAME = 'pi-theme-europa';
/**
* creates special data structure for horizontal group from group data
*
* @param array $groupData
* @return array
*/
public function createHorizontalGroupData( $groupData ) {
2015-09-08 14:29:41 +00:00
$horizontalGroupData = [
'labels' => [ ],
'values' => [ ],
'renderLabels' => false
];
foreach ( $groupData as $item ) {
2015-09-09 08:01:24 +00:00
$data = $item[ 'data' ];
2015-09-09 08:01:24 +00:00
if ( $item[ 'type' ] === 'data' ) {
array_push( $horizontalGroupData[ 'labels' ], $data[ 'label' ] );
array_push( $horizontalGroupData[ 'values' ], $data[ 'value' ] );
2015-09-09 08:01:24 +00:00
if ( !empty( $data[ 'label' ] ) ) {
$horizontalGroupData[ 'renderLabels' ] = true;
2015-09-08 14:29:41 +00:00
}
} elseif ( $item[ 'type' ] === 'header' ) {
2015-09-09 14:00:59 +00:00
$horizontalGroupData[ 'header' ] = $data[ 'value' ];
}
}
return $horizontalGroupData;
}
/**
* extends image data
*
* @param array $data image data
* @param int $width preferred thumbnail width
* @return array|bool false on failure
*/
public function extendImageData( $data, $width ) {
global $wgPortableInfoboxCustomImageWidth;
// title param is provided through reference in WikiaFileHelper::getFileFromTitle
$title = $data[ 'name' ];
$file = \WikiaFileHelper::getFileFromTitle( $title );
if ( !$file || !$file->exists() ||
!in_array( $file->getMediaType(), [ MEDIATYPE_BITMAP, MEDIATYPE_DRAWING, MEDIATYPE_VIDEO ] ) ) {
return false;
}
// get dimensions
2016-03-17 11:12:36 +00:00
$originalWidth = $file->getWidth();
$dimensions = $this->getThumbnailSizes(
2016-03-17 11:12:36 +00:00
$width, self::MAX_DESKTOP_THUMBNAIL_HEIGHT, $originalWidth, $file->getHeight() );
// if custom and big enough, scale thumbnail size
$ratio = !empty( $wgPortableInfoboxCustomImageWidth ) && $originalWidth > $wgPortableInfoboxCustomImageWidth ?
$wgPortableInfoboxCustomImageWidth / $dimensions[ 'width' ] : 1;
// get thumbnail
$thumbnail = $file->transform( [
'width' => round( $dimensions[ 'width' ] * $ratio ),
'height' => round( $dimensions[ 'height' ] * $ratio )
] );
$thumbnail2x = $file->transform( [
'width' => round( $dimensions[ 'width' ] * $ratio * 2 ),
'height' => round( $dimensions[ 'height' ] * $ratio * 2 )
] );
if ( !$thumbnail || $thumbnail->isError() || !$thumbnail2x || $thumbnail2x->isError() ) {
return false;
}
$ref = null;
wfRunHooks( 'PortableInfoboxRenderServiceHelper::extendImageData', [ $data, &$ref ] );
return array_merge( $data, [
'ref' => $ref,
'height' => $dimensions[ 'height' ],
'width' => $dimensions[ 'width' ],
'thumbnail' => $thumbnail->getUrl(),
'thumbnail2x' => $thumbnail2x->getUrl(),
'key' => urlencode( $data[ 'key' ] ),
'media-type' => $data[ 'isVideo' ] ? 'video' : 'image',
'mercuryComponentAttrs' => json_encode( [
'itemContext' => 'portable-infobox',
'ref' => $ref
] )
] );
}
/**
* @param array $images
* @return array
*/
public function extendImageCollectionData( $images ) {
$mercuryComponentAttrs = [
'refs' => array_map( function ( $image ) {
return $image['ref'];
}, $images )
];
$images[0]['isFirst'] = true;
$data = [
'images' => $images,
'firstImage' => $images[0],
'mercuryComponentAttrs' => json_encode( $mercuryComponentAttrs )
];
return $data;
}
/**
* checks if infobox data item is valid hero component data.
* If image is smaller than MINIMAL_HERO_IMG_WIDTH const, doesn't render the hero module.
*
* @param array $item - infobox data item
* @param array $heroData - hero component data
*
* @return bool
*/
public function isValidHeroDataItem( $item, $heroData ) {
2015-09-09 08:01:24 +00:00
$type = $item[ 'type' ];
if ( $type === 'title' && !array_key_exists( 'title', $heroData ) ) {
return true;
}
if ( $type === 'image' && !array_key_exists( 'image', $heroData ) && count( $item[ 'data' ] ) === 1 ) {
$imageWidth = $this->getFileWidth( $item[ 'data' ][ 0 ][ 'name' ] );
if ( $imageWidth >= self::MINIMAL_HERO_IMG_WIDTH ) {
return true;
}
}
return false;
}
2016-04-04 11:13:52 +00:00
/**
* @return bool
*/
public function isMercury() {
2016-04-04 15:09:08 +00:00
global $wgArticleAsJson;
2016-04-04 11:13:52 +00:00
return !empty( $wgArticleAsJson );
}
/**
* Checks if europa theme is enabled and used
* @return bool
*/
public function isEuropaTheme() {
global $wgEnablePortableInfoboxEuropaTheme;
2015-09-09 08:01:24 +00:00
return !empty( $wgEnablePortableInfoboxEuropaTheme );
}
2015-09-09 08:16:00 +00:00
/**
* Calculates image dimensions based on preferred width and max acceptable height
2015-12-11 10:56:41 +00:00
*
* @param int $preferredWidth
* @param int $maxHeight
* @param int $originalWidth
* @param int $originalHeight
* @return array [ 'width' => int, 'height' => int ]
2015-09-09 08:16:00 +00:00
*/
public function getThumbnailSizes( $preferredWidth, $maxHeight, $originalWidth, $originalHeight ) {
if ( ( $originalHeight / $originalWidth ) > ( $maxHeight / $preferredWidth ) ) {
$height = min( $maxHeight, $originalHeight );
$width = min( $preferredWidth, $height * $originalWidth / $originalHeight );
2015-12-11 10:56:41 +00:00
} else {
$width = min( $preferredWidth, $originalWidth );
$height = min( $maxHeight, $width * $originalHeight / $originalWidth );
2015-12-11 10:56:41 +00:00
}
return [ 'height' => round( $height ), 'width' => round( $width ) ];
2015-12-11 10:56:41 +00:00
}
2015-12-11 11:06:44 +00:00
/**
* return real width of the image.
* @param \Title $title
* @return int number
2015-12-11 11:06:44 +00:00
*/
private function getFileWidth( $title ) {
$file = \WikiaFileHelper::getFileFromTitle( $title );
2015-12-11 10:56:41 +00:00
if ( $file ) {
return $file->getWidth();
2015-09-09 08:16:00 +00:00
}
}
2015-09-09 08:01:24 +00:00
}