12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- namespace App\Jobs\StatusPipeline;
- use App\{Media, Notification, StatusHashtag, Status};
- use Illuminate\Bus\Queueable;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Bus\Dispatchable;
- 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)
- {
- if($status->media()->count() == 0) {
- return;
- }
- foreach($status->media as $media) {
- $thumbnail = storage_path("app/{$media->thumbnail_path}");
- $photo = storage_path("app/{$media->media_path}");
- try {
- if(is_file($thumbnail)) {
- unlink($thumbnail);
- }
- if(is_file($photo)) {
- unlink($photo);
- }
- $media->delete();
- } catch (Exception $e) {
-
- }
- }
- $comments = Status::where('in_reply_to_id', $status->id)->get();
- foreach($comments as $comment) {
- $comment->in_reply_to_id = null;
- $comment->save();
- Notification::whereItemType('App\Status')
- ->whereItemId($comment->id)
- ->delete();
- }
- $status->likes()->delete();
- Notification::whereItemType('App\Status')
- ->whereItemId($status->id)
- ->delete();
- StatusHashtag::whereStatusId($status->id)->delete();
- $status->delete();
- return true;
- }
- }
|