Skip to content

Instantly share code, notes, and snippets.

@ManiruzzamanAkash
Created January 14, 2024 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ManiruzzamanAkash/5f64dd4520681a7d444b7457373a1124 to your computer and use it in GitHub Desktop.
Save ManiruzzamanAkash/5f64dd4520681a7d444b7457373a1124 to your computer and use it in GitHub Desktop.
Image Upoader Trait for Learning
<?php
declare(strict_types=1);
namespace App\Traits;
use Exception;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Str;
use Intervention\Image\ImageManager;
trait ImageUploader
{
/**
* Upload or update an image.
*
* @param array $args
* @return string
*/
public function upload(array $args = []): string
{
$defaultArgs = [
'file' => null,
'target_location' => null, // Where to upload the file.
'create' => true, // create or update.
'name' => null, // name of the image to be uploaded.
'width' => null, // width of the image.
'height' => null, // height of the image.
'webp' => true // convert image to webp.
];
try {
$args = array_merge($defaultArgs, $args);
// Handle mandatory arguments.
if (!$args['target_location']) {
throw new Exception('Target location is required.');
}
if (!$args['file'] && $args['create'] ?? true) {
throw new Exception('File is required.');
}
// If empty name, generate a random name.
if (!$args['name']) {
$args['name'] = uniqid();
}
// If empty file, return name.
if (empty($args['file']) || !($args['file'] instanceof UploadedFile)) {
return $args['name'] ?? '';
}
// For Edit, if the image is not changed, return the old image name.
if (!$args['create'] && !$args['file']) {
return $args['name'] ?? '';
}
// If create is false, means it's for edit.
// So, if the image is changed, delete the old image.
if (!$args['create'] && $args['file']) {
$this->delete($args['target_location'] ?? '', $args['name']);
}
// Truncate the file name to 50 characters and slugify it.
$args['name'] = substr(Str::slug($args['name']), 0, 50) . '-' . uniqid();
$fileName = $args['name'] . '.' . $args['file']->getClientOriginalExtension();
// Check if configuration has width, height and if not, use the original image width and height
$width = $args['width'] ?? $this->getImageWidth($args['file']);
$height = $args['height'] ?? $this->getImageHeight($args['file']);
$manager = ImageManager::gd();
$image = $manager->read($args['file']->getRealPath());
// Resize image if width and height are set.
if ($width && $height) {
$image->scale(
width: $width,
height: $height
);
}
// Convert image to webp if webp is set to true.
$fileLocation = storage_path('app/public/' . $args['target_location']);
if ($args['webp'] && $args['create']) {
$fileName = $args['name'] . '.webp';
} else if ($args['webp'] && !$args['create']) {
$fileName = $args['name']; // Don't add extension if it's for edit.
}
// Copy the original image to the target location. (If someone needs)
// $image->save($fileLocation . '/' . $args['name'] . '.' . $args['file']->getClientOriginalExtension(), quality: 100);
// Copy the webp image to the target location.
$image->save($fileLocation . '/' . $fileName, quality: 100);
Log::info($fileName . ' uploaded successfully');
return $fileName;
} catch (\Throwable $th) {
// Check if error is Intervention\Image\Exceptions\NotWritableException.
// If so, create the directory and try again.
if ($th instanceof \Intervention\Image\Exceptions\NotWritableException) {
$targetLocation = storage_path('app/public/' . $args['target_location']);
if (!file_exists($targetLocation)) {
mkdir($targetLocation, 0777, true);
}
return $this->upload($args);
}
Log::error('Error uploading image');
Log::error($th);
throw $th;
}
}
private function getImageWidth($file): ?int
{
return getimagesize($file->getRealPath())[0] ?? null;
}
private function getImageHeight($file): ?int
{
return getimagesize($file->getRealPath())[1] ?? null;
}
public function delete(string $targetLocation, string $fileName): bool
{
try {
$fileLocation = storage_path('app/public/' . $targetLocation);
// If has the original image, delete it.
// if (file_exists($fileLocation . '/' . $fileName)) {
// unlink($fileLocation . '/' . $fileName);
// }
if (file_exists($fileLocation . '/' . $fileName . '.webp')) {
unlink($fileLocation . '/' . $fileName . '.webp');
}
Log::info($fileName . ' deleted successfully');
return true;
} catch (\Throwable $th) {
Log::error('Error deleting image');
Log::error($th);
throw $th;
}
}
}
@ManiruzzamanAkash
Copy link
Author

Then, How to use that trait

use ImageUploader;

$this->upload(
    [
       'file' => $data['image'],
       'name' => $data['name'],
       'target_location' => 'images/categories'
    ]
);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment