mirror of https://github.com/pixelfed/pixelfed.git
72 lines
1.4 KiB
PHP
72 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\MediaPipeline;
|
|
|
|
use App\Media;
|
|
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\Redis;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class MediaDeletePipeline implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $media;
|
|
|
|
public $timeout = 300;
|
|
public $tries = 3;
|
|
public $maxExceptions = 1;
|
|
public $deleteWhenMissingModels = true;
|
|
|
|
public function __construct(Media $media)
|
|
{
|
|
$this->media = $media;
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
$media = $this->media;
|
|
$path = $media->media_path;
|
|
$thumb = $media->thumbnail_path;
|
|
|
|
if(!$path) {
|
|
return 1;
|
|
}
|
|
|
|
$e = explode('/', $path);
|
|
array_pop($e);
|
|
$i = implode('/', $e);
|
|
|
|
if(config_cache('pixelfed.cloud_storage') == true) {
|
|
$disk = Storage::disk(config('filesystems.cloud'));
|
|
|
|
if($path && $disk->exists($path)) {
|
|
$disk->delete($path);
|
|
}
|
|
|
|
if($thumb && $disk->exists($thumb)) {
|
|
$disk->delete($thumb);
|
|
}
|
|
}
|
|
|
|
$disk = Storage::disk(config('filesystems.local'));
|
|
|
|
if($path && $disk->exists($path)) {
|
|
$disk->delete($path);
|
|
}
|
|
|
|
if($thumb && $disk->exists($thumb)) {
|
|
$disk->delete($thumb);
|
|
}
|
|
|
|
$media->delete();
|
|
|
|
return 1;
|
|
}
|
|
|
|
}
|