2015-07-28 11:49:17 +00:00
|
|
|
<?php
|
|
|
|
|
2018-08-09 09:49:10 +00:00
|
|
|
namespace PortableInfobox\Helpers;
|
2015-07-28 11:49:17 +00:00
|
|
|
|
2022-03-11 20:35:51 +00:00
|
|
|
use File;
|
2021-09-12 21:07:34 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2022-03-11 20:35:51 +00:00
|
|
|
use Title;
|
2021-09-12 21:07:34 +00:00
|
|
|
|
2016-12-29 10:58:27 +00:00
|
|
|
class PortableInfoboxImagesHelper {
|
2021-09-10 02:52:19 +00:00
|
|
|
private const MAX_DESKTOP_THUMBNAIL_HEIGHT = 500;
|
2015-07-28 11:49:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* extends image data
|
|
|
|
*
|
2022-03-11 20:35:51 +00:00
|
|
|
* @param File|Title|string $file image
|
2017-01-13 12:57:17 +00:00
|
|
|
* @param int $thumbnailFileWidth preferred thumbnail file width
|
2018-08-16 09:25:53 +00:00
|
|
|
* @param int|null $thumbnailImgTagWidth preferred thumbnail img tag width
|
2016-03-17 09:37:18 +00:00
|
|
|
* @return array|bool false on failure
|
2015-07-28 11:49:17 +00:00
|
|
|
*/
|
2018-08-22 14:20:49 +00:00
|
|
|
public function extendImageData( $file, $thumbnailFileWidth, $thumbnailImgTagWidth = null ) {
|
2016-03-17 09:37:18 +00:00
|
|
|
global $wgPortableInfoboxCustomImageWidth;
|
2015-07-28 11:49:17 +00:00
|
|
|
|
2018-08-22 14:20:49 +00:00
|
|
|
$file = $this->getFile( $file );
|
2016-11-21 14:13:13 +00:00
|
|
|
|
2018-08-22 14:20:49 +00:00
|
|
|
if ( !$file || !in_array( $file->getMediaType(), [ MEDIATYPE_BITMAP, MEDIATYPE_DRAWING ] ) ) {
|
2020-06-07 03:58:22 +00:00
|
|
|
return [];
|
2016-03-17 09:37:18 +00:00
|
|
|
}
|
2016-11-21 14:13:13 +00:00
|
|
|
|
2016-03-17 09:37:18 +00:00
|
|
|
// get dimensions
|
2016-03-17 11:12:36 +00:00
|
|
|
$originalWidth = $file->getWidth();
|
2018-10-02 07:41:19 +00:00
|
|
|
// 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()
|
|
|
|
);
|
2017-01-13 14:27:48 +00:00
|
|
|
$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
|
2017-01-13 12:57:17 +00:00
|
|
|
$ratio =
|
|
|
|
!empty( $wgPortableInfoboxCustomImageWidth ) &&
|
|
|
|
$originalWidth > $wgPortableInfoboxCustomImageWidth
|
2017-01-13 13:19:30 +00:00
|
|
|
? $wgPortableInfoboxCustomImageWidth / $fileDimensions['width'] : 1;
|
2016-03-17 09:37:18 +00:00
|
|
|
// get thumbnail
|
|
|
|
$thumbnail = $file->transform( [
|
2017-01-13 12:57:17 +00:00
|
|
|
'width' => round( $fileDimensions['width'] * $ratio ),
|
|
|
|
'height' => round( $fileDimensions['height'] * $ratio ),
|
2016-03-17 09:37:18 +00:00
|
|
|
] );
|
2016-11-03 13:27:43 +00:00
|
|
|
$thumbnail2x = $file->transform( [
|
2017-01-13 12:57:17 +00:00
|
|
|
'width' => round( $fileDimensions['width'] * $ratio * 2 ),
|
|
|
|
'height' => round( $fileDimensions['height'] * $ratio * 2 ),
|
2016-11-03 13:27:43 +00:00
|
|
|
] );
|
|
|
|
if ( !$thumbnail || $thumbnail->isError() || !$thumbnail2x || $thumbnail2x->isError() ) {
|
2020-06-07 03:58:22 +00:00
|
|
|
return [];
|
2015-07-28 11:49:17 +00:00
|
|
|
}
|
|
|
|
|
2018-08-22 14:20:49 +00:00
|
|
|
return [
|
2018-03-20 15:53:11 +00:00
|
|
|
'height' => intval( $imgTagDimensions['height'] ),
|
|
|
|
'width' => intval( $imgTagDimensions['width'] ),
|
2016-03-17 09:37:18 +00:00
|
|
|
'thumbnail' => $thumbnail->getUrl(),
|
2018-08-07 12:13:14 +00:00
|
|
|
'thumbnail2x' => $thumbnail2x->getUrl()
|
2018-08-22 14:20:49 +00:00
|
|
|
];
|
2015-07-28 11:49:17 +00:00
|
|
|
}
|
|
|
|
|
2016-04-05 15:42:21 +00:00
|
|
|
/**
|
|
|
|
* @param array $images
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function extendImageCollectionData( $images ) {
|
2018-03-02 15:47:26 +00:00
|
|
|
$images = array_map(
|
2021-09-10 02:52:19 +00:00
|
|
|
static function ( $image, $index ) {
|
2018-08-22 14:20:49 +00:00
|
|
|
$image['ref'] = $index + 1;
|
|
|
|
|
|
|
|
if ( empty( $image['caption'] ) ) {
|
|
|
|
$image['caption'] = $image['name'];
|
|
|
|
}
|
2018-03-02 15:47:26 +00:00
|
|
|
|
|
|
|
return $image;
|
|
|
|
},
|
|
|
|
$images,
|
2018-08-16 09:25:53 +00:00
|
|
|
array_keys( $images )
|
2018-03-02 15:47:26 +00:00
|
|
|
);
|
|
|
|
|
2016-04-05 15:42:21 +00:00
|
|
|
$images[0]['isFirst'] = true;
|
2018-08-22 14:20:49 +00:00
|
|
|
return $images;
|
2016-04-05 15:42:21 +00:00
|
|
|
}
|
|
|
|
|
2015-12-11 00:41:07 +00:00
|
|
|
/**
|
2016-03-17 09:37:18 +00:00
|
|
|
* Calculates image dimensions based on preferred width and max acceptable height
|
2015-12-11 10:56:41 +00:00
|
|
|
*
|
2016-03-17 09:37:18 +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
|
|
|
*/
|
2016-03-17 09:37:18 +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 {
|
2016-03-17 09:37:18 +00:00
|
|
|
$width = min( $preferredWidth, $originalWidth );
|
|
|
|
$height = min( $maxHeight, $width * $originalHeight / $originalWidth );
|
2015-12-11 10:56:41 +00:00
|
|
|
}
|
|
|
|
|
2016-03-17 09:37:18 +00:00
|
|
|
return [ 'height' => round( $height ), 'width' => round( $width ) ];
|
2015-12-11 10:56:41 +00:00
|
|
|
}
|
2017-01-13 08:25:46 +00:00
|
|
|
|
|
|
|
/**
|
2018-08-22 14:20:49 +00:00
|
|
|
* Get file
|
2018-08-09 09:49:10 +00:00
|
|
|
*
|
2018-08-22 14:20:49 +00:00
|
|
|
* Note: this method turns a string $file into an object, affecting the calling code version
|
2018-08-09 09:49:10 +00:00
|
|
|
* of this variable
|
|
|
|
*
|
2022-03-11 20:35:51 +00:00
|
|
|
* @param File|Title|string $file
|
|
|
|
* @return File|null file
|
2018-08-08 09:42:22 +00:00
|
|
|
*/
|
2018-08-22 14:20:49 +00:00
|
|
|
public function getFile( $file ) {
|
|
|
|
if ( is_string( $file ) ) {
|
2022-03-11 20:35:51 +00:00
|
|
|
$file = Title::newFromText( $file, NS_FILE );
|
2018-08-22 14:20:49 +00:00
|
|
|
}
|
|
|
|
|
2022-03-11 20:35:51 +00:00
|
|
|
if ( $file instanceof Title ) {
|
2021-09-12 21:07:34 +00:00
|
|
|
$repoGroup = MediaWikiServices::getInstance()->getRepoGroup();
|
|
|
|
|
|
|
|
$file = $repoGroup->findFile( $file );
|
2018-08-09 09:49:10 +00:00
|
|
|
}
|
|
|
|
|
2022-03-11 20:35:51 +00:00
|
|
|
if ( $file instanceof File && $file->exists() ) {
|
2018-08-22 14:20:49 +00:00
|
|
|
return $file;
|
2018-08-09 09:49:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2018-08-08 09:42:22 +00:00
|
|
|
}
|
2015-09-09 08:01:24 +00:00
|
|
|
}
|