1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Jobs/Util/UploadAvatar.php

63 lines
1.5 KiB
PHP
Raw Normal View History

2019-08-13 01:56:46 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-08-13 01:56:46 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-08-13 01:56:46 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Jobs\Util;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
2019-10-05 05:55:25 +02:00
use Illuminate\Http\File;
use Illuminate\Http\Request;
2019-08-13 01:56:46 +02:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2019-10-05 05:55:25 +02:00
use Illuminate\Support\Facades\Storage;
use Intervention\Image\ImageManager;
2019-08-13 01:56:46 +02:00
class UploadAvatar implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $file;
protected $directory;
public function __construct($file, $directory)
{
$this->file = $file;
$this->directory = $directory;
}
public function handle() : ?string
{
//make dir
Storage::makeDirectory('public/'.$this->directory, 0775);
2019-08-13 01:56:46 +02:00
$tmp_file = sha1(time()).'.png';
2019-10-05 05:55:25 +02:00
$file_png = imagepng(imagecreatefromstring(file_get_contents($this->file)), sys_get_temp_dir().'/'.$tmp_file);
2019-08-13 01:56:46 +02:00
$path = Storage::putFile('public/'.$this->directory, new File(sys_get_temp_dir().'/'.$tmp_file));
info($path);
info($tmp_file);
2020-06-15 08:06:32 +02:00
2019-08-13 01:56:46 +02:00
$url = Storage::url($path);
//return file path
if ($url) {
return $url;
} else {
return null;
}
2019-08-13 01:56:46 +02:00
}
}