PortableInfobox/services/Helpers/PortableInfoboxImagesHelper.php

130 lines
3.8 KiB
PHP
Raw Normal View History

<?php
namespace Wikia\PortableInfobox\Helpers;
2016-12-29 10:58:27 +00:00
class PortableInfoboxImagesHelper {
2015-09-09 08:16:00 +00:00
const MAX_DESKTOP_THUMBNAIL_HEIGHT = 500;
protected static $count = 0;
/**
* extends image data
*
* @param array $data image data
* @param int $thumbnailFileWidth preferred thumbnail file width
* @param int $thumbnailImgTagWidth preferred thumbnail img tag width
* @return array|bool false on failure
*/
public function extendImageData( $data, $thumbnailFileWidth, $thumbnailImgTagWidth = null ) {
global $wgPortableInfoboxCustomImageWidth;
// title param is provided through reference in WikiaFileHelper::getFileFromTitle
2016-12-29 10:28:26 +00:00
$title = $data['name'];
$file = \WikiaFileHelper::getFileFromTitle( $title );
2016-12-29 10:28:26 +00:00
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();
// we need to have different thumbnail file dimensions to support (not to have pixelated images) wider infoboxes than default width
$fileDimensions = $this->getThumbnailSizes( $thumbnailFileWidth, self::MAX_DESKTOP_THUMBNAIL_HEIGHT,
$originalWidth, $file->getHeight() );
$imgTagDimensions =
empty( $thumbnailImgTagWidth )
? $fileDimensions
: $this->getThumbnailSizes( $thumbnailImgTagWidth,
self::MAX_DESKTOP_THUMBNAIL_HEIGHT, $originalWidth, $file->getHeight() );
2016-03-17 11:12:36 +00:00
// if custom and big enough, scale thumbnail size
$ratio =
!empty( $wgPortableInfoboxCustomImageWidth ) &&
$originalWidth > $wgPortableInfoboxCustomImageWidth
? $wgPortableInfoboxCustomImageWidth / $fileDimensions['width'] : 1;
// get thumbnail
$thumbnail = $file->transform( [
'width' => round( $fileDimensions['width'] * $ratio ),
'height' => round( $fileDimensions['height'] * $ratio ),
] );
$thumbnail2x = $file->transform( [
'width' => round( $fileDimensions['width'] * $ratio * 2 ),
'height' => round( $fileDimensions['height'] * $ratio * 2 ),
] );
if ( !$thumbnail || $thumbnail->isError() || !$thumbnail2x || $thumbnail2x->isError() ) {
return false;
}
return array_merge( $data, [
'ref' => ++$this->count,
'height' => intval( $imgTagDimensions['height'] ),
'width' => intval( $imgTagDimensions['width'] ),
'originalHeight' => $dataAttrs['height'] ?? '',
'originalWidth' => $dataAttrs['width'] ?? '',
'thumbnail' => $thumbnail->getUrl(),
'thumbnail2x' => $thumbnail2x->getUrl(),
'fileName' => $dataAttrs['fileName'] ?? ''
] );
}
/**
* @param array $images
* @return array
*/
public function extendImageCollectionData( $images ) {
$images = array_map(
function ( $image, $index ) {
$image['dataRef'] = $index;
return $image;
},
$images,
array_keys($images)
);
$images[0]['isFirst'] = true;
2016-12-29 13:17:48 +00:00
return [
'images' => $images
];
}
/**
* 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
}
/**
* return real width of the image.
* @param \Title $title
* @return int number
*/
public function getFileWidth( $title ) {
$file = \WikiaFileHelper::getFileFromTitle( $title );
if ( $file ) {
return $file->getWidth();
}
return 0;
}
2015-09-09 08:01:24 +00:00
}