mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 07:47:29 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Jobs\Util;
 | 
						|
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Contracts\Queue\ShouldQueue;
 | 
						|
use Illuminate\Foundation\Bus\Dispatchable;
 | 
						|
use Illuminate\Http\File;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use Illuminate\Queue\InteractsWithQueue;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
use Illuminate\Support\Facades\Storage;
 | 
						|
use Intervention\Image\ImageManager;
 | 
						|
 | 
						|
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, 0755);
 | 
						|
 | 
						|
        $tmp_file = sha1(time()).".png";
 | 
						|
 | 
						|
        $file_png = imagepng( imagecreatefromstring(file_get_contents($this->file)) , sys_get_temp_dir().'/'.$tmp_file);
 | 
						|
    	
 | 
						|
    	$path = Storage::putFile('public/' . $this->directory, new File( sys_get_temp_dir().'/'.$tmp_file ));
 | 
						|
 | 
						|
        $url = Storage::url($path);
 | 
						|
        
 | 
						|
    	//return file path
 | 
						|
    	if($url)
 | 
						|
    		return $url;
 | 
						|
    	else
 | 
						|
    		return null;
 | 
						|
    	
 | 
						|
    }
 | 
						|
} |