pixelfed/app/Jobs/StatusPipeline/StatusDelete.php

81 lines
2.0 KiB
PHP
Raw Normal View History

2018-06-01 21:04:33 +00:00
<?php
namespace App\Jobs\StatusPipeline;
2018-08-28 03:07:36 +00:00
use App\Notification;
use App\Status;
use App\StatusHashtag;
2018-06-01 21:04:33 +00:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
2018-08-28 03:07:36 +00:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2018-06-01 21:04:33 +00:00
class StatusDelete implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $status;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Status $status)
{
$this->status = $status;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$status = $this->status;
$this->unlinkRemoveMedia($status);
}
public function unlinkRemoveMedia($status)
{
2018-08-28 03:07:36 +00:00
if ($status->media()->count() == 0) {
2018-06-01 21:04:33 +00:00
return;
}
2018-08-28 03:07:36 +00:00
foreach ($status->media as $media) {
2018-06-01 21:04:33 +00:00
$thumbnail = storage_path("app/{$media->thumbnail_path}");
$photo = storage_path("app/{$media->media_path}");
try {
2018-08-28 03:07:36 +00:00
if (is_file($thumbnail)) {
2018-06-01 21:04:33 +00:00
unlink($thumbnail);
}
2018-08-28 03:07:36 +00:00
if (is_file($photo)) {
2018-06-01 21:04:33 +00:00
unlink($photo);
}
$media->delete();
} catch (Exception $e) {
}
}
2018-06-14 03:29:20 +00:00
$comments = Status::where('in_reply_to_id', $status->id)->get();
2018-08-28 03:07:36 +00:00
foreach ($comments as $comment) {
2018-06-14 03:29:20 +00:00
$comment->in_reply_to_id = null;
$comment->save();
Notification::whereItemType('App\Status')
->whereItemId($comment->id)
->delete();
}
2018-06-01 21:04:33 +00:00
$status->likes()->delete();
2018-06-14 00:52:42 +00:00
Notification::whereItemType('App\Status')
->whereItemId($status->id)
->delete();
2018-06-01 21:04:33 +00:00
StatusHashtag::whereStatusId($status->id)->delete();
$status->delete();
return true;
}
}