2023-08-01 10:30:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs\StatusPipeline;
|
|
|
|
|
|
|
|
use DB, Cache, Storage;
|
|
|
|
use App\{
|
|
|
|
AccountInterstitial,
|
|
|
|
Bookmark,
|
|
|
|
CollectionItem,
|
|
|
|
DirectMessage,
|
|
|
|
Like,
|
|
|
|
Media,
|
|
|
|
MediaTag,
|
|
|
|
Mention,
|
|
|
|
Notification,
|
|
|
|
Report,
|
|
|
|
Status,
|
|
|
|
StatusArchived,
|
|
|
|
StatusHashtag,
|
|
|
|
StatusView
|
|
|
|
};
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
2023-10-11 10:56:39 +00:00
|
|
|
use Illuminate\Contracts\Queue\ShouldBeUniqueUntilProcessing;
|
2023-08-01 10:30:50 +00:00
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2023-10-11 11:24:34 +00:00
|
|
|
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
2023-08-01 10:30:50 +00:00
|
|
|
use League\Fractal;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use League\Fractal\Serializer\ArraySerializer;
|
|
|
|
use App\Transformer\ActivityPub\Verb\DeleteNote;
|
|
|
|
use App\Util\ActivityPub\Helpers;
|
|
|
|
use GuzzleHttp\Pool;
|
|
|
|
use GuzzleHttp\Client;
|
|
|
|
use GuzzleHttp\Promise;
|
|
|
|
use App\Util\ActivityPub\HttpSignature;
|
|
|
|
use App\Services\AccountService;
|
|
|
|
use App\Services\CollectionService;
|
|
|
|
use App\Services\StatusService;
|
|
|
|
use App\Jobs\MediaPipeline\MediaDeletePipeline;
|
2023-12-08 11:44:45 +00:00
|
|
|
use App\Services\NotificationService;
|
2024-02-04 09:50:48 +00:00
|
|
|
use App\Services\Account\AccountStatService;
|
2023-08-01 10:30:50 +00:00
|
|
|
|
2023-10-11 10:56:39 +00:00
|
|
|
class RemoteStatusDelete implements ShouldQueue, ShouldBeUniqueUntilProcessing
|
2023-08-01 10:30:50 +00:00
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
protected $status;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete the job if its models no longer exist.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $deleteWhenMissingModels = true;
|
|
|
|
|
2023-10-11 10:56:39 +00:00
|
|
|
public $tries = 3;
|
|
|
|
public $maxExceptions = 3;
|
2023-10-11 10:42:40 +00:00
|
|
|
public $timeout = 180;
|
2023-10-11 10:56:39 +00:00
|
|
|
public $failOnTimeout = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of seconds after which the job's unique lock will be released.
|
|
|
|
*
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public $uniqueFor = 3600;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the unique ID for the job.
|
|
|
|
*/
|
|
|
|
public function uniqueId(): string
|
|
|
|
{
|
|
|
|
return 'status:remote:delete:' . $this->status->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the middleware the job should pass through.
|
|
|
|
*
|
|
|
|
* @return array<int, object>
|
|
|
|
*/
|
|
|
|
public function middleware(): array
|
|
|
|
{
|
|
|
|
return [(new WithoutOverlapping("status-remote-delete-{$this->status->id}"))->shared()->dontRelease()];
|
|
|
|
}
|
2023-08-01 10:30:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Status $status)
|
|
|
|
{
|
2023-10-11 10:42:40 +00:00
|
|
|
$this->status = $status->withoutRelations();
|
2023-08-01 10:30:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$status = $this->status;
|
2023-08-01 11:07:58 +00:00
|
|
|
|
|
|
|
if($status->deleted_at) {
|
|
|
|
return;
|
|
|
|
}
|
2023-08-01 10:30:50 +00:00
|
|
|
|
|
|
|
StatusService::del($status->id, true);
|
2024-02-04 09:50:48 +00:00
|
|
|
AccountStatService::decrementPostCount($status->profile_id);
|
2023-08-01 10:30:50 +00:00
|
|
|
return $this->unlinkRemoveMedia($status);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function unlinkRemoveMedia($status)
|
|
|
|
{
|
|
|
|
|
|
|
|
if($status->in_reply_to_id) {
|
2023-08-07 03:52:01 +00:00
|
|
|
$parent = Status::find($status->in_reply_to_id);
|
|
|
|
if($parent) {
|
|
|
|
--$parent->reply_count;
|
|
|
|
$parent->save();
|
|
|
|
StatusService::del($parent->id);
|
|
|
|
}
|
2023-08-01 10:30:50 +00:00
|
|
|
}
|
|
|
|
|
2023-08-01 10:40:39 +00:00
|
|
|
AccountInterstitial::where('item_type', 'App\Status')
|
|
|
|
->where('item_id', $status->id)
|
|
|
|
->delete();
|
2023-08-01 10:30:50 +00:00
|
|
|
Bookmark::whereStatusId($status->id)->delete();
|
|
|
|
CollectionItem::whereObjectType('App\Status')
|
|
|
|
->whereObjectId($status->id)
|
|
|
|
->get()
|
|
|
|
->each(function($col) {
|
|
|
|
CollectionService::removeItem($col->collection_id, $col->object_id);
|
|
|
|
$col->delete();
|
|
|
|
});
|
2023-12-08 11:44:45 +00:00
|
|
|
$dms = DirectMessage::whereStatusId($status->id)->get();
|
|
|
|
foreach($dms as $dm) {
|
|
|
|
$not = Notification::whereItemType('App\DirectMessage')
|
|
|
|
->whereItemId($dm->id)
|
|
|
|
->first();
|
|
|
|
if($not) {
|
|
|
|
NotificationService::del($not->profile_id, $not->id);
|
|
|
|
$not->forceDeleteQuietly();
|
|
|
|
}
|
|
|
|
$dm->delete();
|
|
|
|
}
|
2023-08-01 10:40:39 +00:00
|
|
|
Like::whereStatusId($status->id)->forceDelete();
|
|
|
|
Media::whereStatusId($status->id)
|
|
|
|
->get()
|
|
|
|
->each(function($media) {
|
|
|
|
MediaDeletePipeline::dispatch($media)->onQueue('mmo');
|
|
|
|
});
|
2023-12-08 11:44:45 +00:00
|
|
|
$mediaTags = MediaTag::where('status_id', $status->id)->get();
|
|
|
|
foreach($mediaTags as $mtag) {
|
|
|
|
$not = Notification::whereItemType('App\MediaTag')
|
|
|
|
->whereItemId($mtag->id)
|
|
|
|
->first();
|
|
|
|
if($not) {
|
|
|
|
NotificationService::del($not->profile_id, $not->id);
|
|
|
|
$not->forceDeleteQuietly();
|
|
|
|
}
|
|
|
|
$mtag->delete();
|
|
|
|
}
|
2023-08-01 10:30:50 +00:00
|
|
|
Mention::whereStatusId($status->id)->forceDelete();
|
|
|
|
Notification::whereItemType('App\Status')
|
|
|
|
->whereItemId($status->id)
|
|
|
|
->forceDelete();
|
|
|
|
Report::whereObjectType('App\Status')
|
|
|
|
->whereObjectId($status->id)
|
|
|
|
->delete();
|
|
|
|
StatusArchived::whereStatusId($status->id)->delete();
|
2023-12-21 13:18:51 +00:00
|
|
|
StatusHashtag::whereStatusId($status->id)->delete();
|
2023-08-01 10:30:50 +00:00
|
|
|
StatusView::whereStatusId($status->id)->delete();
|
|
|
|
Status::whereInReplyToId($status->id)->update(['in_reply_to_id' => null]);
|
|
|
|
|
2023-08-06 21:31:37 +00:00
|
|
|
$status->delete();
|
2023-08-01 10:30:50 +00:00
|
|
|
|
|
|
|
StatusService::del($status->id, true);
|
|
|
|
AccountService::del($status->profile_id);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|