Files
Cloud-CMS/lib/XTR/ImageProcessingTask.php
Matt Batchelder 05ce0da296 Initial Upload
2025-12-02 10:32:59 -05:00

164 lines
5.4 KiB
PHP

<?php
/*
* Copyright (C) 2024 Xibo Signage Ltd
*
* Xibo - Digital Signage - https://xibosignage.com
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* Xibo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Xibo\XTR;
use Carbon\Carbon;
use Xibo\Factory\DisplayFactory;
use Xibo\Factory\MediaFactory;
use Xibo\Helper\DateFormatHelper;
use Xibo\Service\ImageProcessingServiceInterface;
/**
* Class ImageProcessingTask
* @package Xibo\XTR
*/
class ImageProcessingTask implements TaskInterface
{
use TaskTrait;
/** @var ImageProcessingServiceInterface */
private $imageProcessingService;
/** @var MediaFactory */
private $mediaFactory;
/** @var DisplayFactory */
private $displayFactory;
/** @inheritdoc */
public function setFactories($container)
{
$this->mediaFactory = $container->get('mediaFactory');
$this->displayFactory = $container->get('displayFactory');
$this->imageProcessingService = $container->get('imageProcessingService');
return $this;
}
/** @inheritdoc */
public function run()
{
$this->runMessage = '# ' . __('Image Processing') . PHP_EOL . PHP_EOL;
// Long running task
set_time_limit(0);
$this->runImageProcessing();
}
/**
*
*/
private function runImageProcessing()
{
$images = $this->mediaFactory->query(null, ['released' => 0, 'allModules' => 1, 'imageProcessing' => 1]);
$libraryLocation = $this->config->getSetting('LIBRARY_LOCATION');
$resizeThreshold = $this->config->getSetting('DEFAULT_RESIZE_THRESHOLD');
$count = 0;
// All displayIds
$displayIds = [];
// Get list of Images
foreach ($images as $media) {
$filePath = $libraryLocation . $media->storedAs;
list($imgWidth, $imgHeight) = @getimagesize($filePath);
// Orientation of the image
if ($imgWidth > $imgHeight) { // 'landscape';
$updatedImg = $this->imageProcessingService->resizeImage($filePath, $resizeThreshold, null);
} else { // 'portrait';
$updatedImg = $this->imageProcessingService->resizeImage($filePath, null, $resizeThreshold);
}
// Clears file status cache
clearstatcache(true, $updatedImg['filePath']);
$count++;
// Release image and save
$media->release(
md5_file($updatedImg['filePath']),
filesize($updatedImg['filePath']),
$updatedImg['height'],
$updatedImg['width']
);
$this->store->commitIfNecessary();
$mediaDisplays= [];
$sql = 'SELECT displayId FROM `requiredfile` WHERE itemId = :itemId';
foreach ($this->store->select($sql, ['itemId' => $media->mediaId]) as $row) {
$displayIds[] = $row['displayId'];
$mediaDisplays[] = $row['displayId'];
}
// Update Required Files
foreach ($mediaDisplays as $displayId) {
$this->store->update('UPDATE `requiredfile` SET released = :released, size = :size
WHERE `requiredfile`.displayId = :displayId AND `requiredfile`.itemId = :itemId ', [
'released' => 1,
'size' => $media->fileSize,
'displayId' => $displayId,
'itemId' => $media->mediaId
]);
}
// Mark any effected Layouts to be rebuilt.
$this->store->update('
UPDATE `layout`
SET status = :status, `modifiedDT` = :modifiedDt
WHERE layoutId IN (
SELECT DISTINCT region.layoutId
FROM lkwidgetmedia
INNER JOIN widget
ON widget.widgetId = lkwidgetmedia.widgetId
INNER JOIN lkplaylistplaylist
ON lkplaylistplaylist.childId = widget.playlistId
INNER JOIN playlist
ON lkplaylistplaylist.parentId = playlist.playlistId
INNER JOIN region
ON playlist.regionId = region.regionId
WHERE lkwidgetmedia.mediaId = :mediaId
)
', [
'status' => 3,
'modifiedDt' => Carbon::now()->format(DateFormatHelper::getSystemFormat()),
'mediaId' => $media->mediaId
]);
}
// Notify display
if ($count > 0) {
foreach (array_unique($displayIds) as $displayId) {
// Get display
$display = $this->displayFactory->getById($displayId);
$display->notify();
}
}
$this->appendRunMessage('Released and modified image count. ' . $count);
}
}