⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
olasjoys
/
src
/
Adapter
/
Image
/
Uploader
/
View File Name :
CategoryCoverImageUploader.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Adapter\Image\Uploader; use Category; use ImageManager; use ImageType; use PrestaShop\PrestaShop\Core\Image\Exception\ImageOptimizationException; use PrestaShop\PrestaShop\Core\Image\Uploader\Exception\ImageUploadException; use PrestaShop\PrestaShop\Core\Image\Uploader\Exception\MemoryLimitException; use PrestaShop\PrestaShop\Core\Image\Uploader\Exception\UploadedImageConstraintException; use PrestaShop\PrestaShop\Core\Image\Uploader\ImageUploaderInterface; use Symfony\Component\HttpFoundation\File\UploadedFile; /** * Class CategoryCoverImageUploader. * * @internal */ final class CategoryCoverImageUploader extends AbstractImageUploader implements ImageUploaderInterface { /** * {@inheritdoc} * * @throws MemoryLimitException * @throws ImageOptimizationException * @throws ImageUploadException * @throws UploadedImageConstraintException */ public function upload($id, UploadedFile $uploadedImage) { $this->checkImageIsAllowedForUpload($uploadedImage); $this->deleteOldImage($id); $this->uploadImage($id, $uploadedImage); $this->generateDifferentTypes($id); } /** * Delete old category image. * * @param int $id */ private function deleteOldImage($id) { $category = new Category($id); $category->deleteImage(); } /** * @param int $id * @param UploadedFile $image * * @throws ImageOptimizationException * @throws ImageUploadException * @throws MemoryLimitException */ private function uploadImage($id, UploadedFile $image) { $temporaryImageName = tempnam(_PS_TMP_IMG_DIR_, 'PS'); if (!$temporaryImageName) { throw new ImageUploadException('Failed to create temporary image file'); } // move_uploaded_file - also checks that the given file is a file that was uploaded via the POST, // this prevents for example that a local file is moved if (!move_uploaded_file($image->getPathname(), $temporaryImageName)) { throw new ImageUploadException('Failed to upload image'); } if (!ImageManager::checkImageMemoryLimit($temporaryImageName)) { throw new MemoryLimitException('Cannot upload image due to memory restrictions'); } $optimizationSucceeded = ImageManager::resize( $temporaryImageName, _PS_IMG_DIR_ . 'c' . DIRECTORY_SEPARATOR . $id . '.jpg', null, null, 'jpg' ); if (!$optimizationSucceeded) { throw new ImageOptimizationException('Failed to optimize image after uploading'); } unlink($temporaryImageName); } /** * @param int $id * * @throws ImageUploadException */ private function generateDifferentTypes($id) { if (!file_exists(_PS_CAT_IMG_DIR_ . $id . '.jpg')) { return; } $imagesTypes = ImageType::getImagesTypes('categories'); foreach ($imagesTypes as $k => $imageType) { $generated = ImageManager::resize( _PS_CAT_IMG_DIR_ . $id . '.jpg', _PS_CAT_IMG_DIR_ . $id . '-' . stripslashes($imageType['name']) . '.jpg', (int) $imageType['width'], (int) $imageType['height'] ); if (!$generated) { throw new ImageUploadException('Error occurred when uploading image'); } } } }