58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Jobs\Util;
|
|
|
|
use App\Utils\Ninja;
|
|
use Illuminate\Http\File;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
class UploadAvatar implements ShouldQueue
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithQueue;
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
public function __construct(protected mixed $file, protected string $directory)
|
|
{
|
|
}
|
|
public function handle(): ?string
|
|
{
|
|
|
|
$url = null;
|
|
|
|
try {
|
|
$tmp_file = sha1(time()).'.png'; //@phpstan-ignore-line
|
|
|
|
$disk = Ninja::isHosted() ? 'backup' : config('filesystems.default');
|
|
|
|
$im = imagecreatefromstring(file_get_contents($this->file));
|
|
imagealphablending($im, false);
|
|
imagesavealpha($im, true);
|
|
$file_png = imagepng($im, sys_get_temp_dir().'/'.$tmp_file);
|
|
|
|
$path = Storage::disk($disk)->putFile($this->directory, new File(sys_get_temp_dir().'/'.$tmp_file));
|
|
|
|
$url = Storage::disk($disk)->url($path);
|
|
} catch (\Exception $e) {
|
|
nlog($e->getMessage());
|
|
}
|
|
|
|
return $url;
|
|
}
|
|
}
|