2020-02-24 11:15:30 +01:00
|
|
|
<?php
|
2020-04-30 13:45:47 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-04-30 13:45:47 +02:00
|
|
|
*/
|
2020-02-24 11:15:30 +01:00
|
|
|
|
|
|
|
namespace App\Jobs\Util;
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
|
|
|
|
class UnlinkFile implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
2023-02-22 07:37:16 +01:00
|
|
|
public function __construct(protected string $disk = '', protected ?string $file_path = '')
|
|
|
|
{
|
|
|
|
}
|
2020-02-24 11:15:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2022-03-04 03:08:18 +01:00
|
|
|
/* Do not delete files if we are on the sync queue*/
|
2023-02-22 07:37:16 +01:00
|
|
|
if (config('queue.default') == 'sync') {
|
2023-01-31 13:00:04 +01:00
|
|
|
return;
|
2023-02-22 07:37:16 +01:00
|
|
|
}
|
2023-01-31 13:00:04 +01:00
|
|
|
|
|
|
|
|
2023-02-22 07:37:16 +01:00
|
|
|
if (!$this->file_path) {
|
2022-03-04 03:08:18 +01:00
|
|
|
return;
|
2023-02-22 07:37:16 +01:00
|
|
|
}
|
2022-03-04 03:08:18 +01:00
|
|
|
|
2023-07-23 01:58:54 +02:00
|
|
|
try {
|
|
|
|
Storage::disk($this->disk)->delete($this->file_path);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
|
|
|
|
}
|
2020-02-24 11:15:30 +01:00
|
|
|
}
|
|
|
|
}
|