mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
commit
5645c40089
3 changed files with 145 additions and 20 deletions
140
app/Jobs/DeletePipeline/DeleteRemoteProfilePipeline.php
Normal file
140
app/Jobs/DeletePipeline/DeleteRemoteProfilePipeline.php
Normal file
|
@ -0,0 +1,140 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Jobs\DeletePipeline;
|
||||||
|
|
||||||
|
use Illuminate\Bus\Queueable;
|
||||||
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
use Illuminate\Queue\InteractsWithQueue;
|
||||||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||||||
|
use DB;
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
use App\{
|
||||||
|
AccountInterstitial,
|
||||||
|
AccountLog,
|
||||||
|
Activity,
|
||||||
|
Avatar,
|
||||||
|
Bookmark,
|
||||||
|
Collection,
|
||||||
|
CollectionItem,
|
||||||
|
Contact,
|
||||||
|
DirectMessage,
|
||||||
|
EmailVerification,
|
||||||
|
Follower,
|
||||||
|
FollowRequest,
|
||||||
|
Hashtag,
|
||||||
|
HashtagFollow,
|
||||||
|
ImportData,
|
||||||
|
ImportJob,
|
||||||
|
Like,
|
||||||
|
Media,
|
||||||
|
MediaTag,
|
||||||
|
Mention,
|
||||||
|
Notification,
|
||||||
|
OauthClient,
|
||||||
|
Profile,
|
||||||
|
ProfileSponsor,
|
||||||
|
Report,
|
||||||
|
ReportComment,
|
||||||
|
ReportLog,
|
||||||
|
StatusHashtag,
|
||||||
|
Status,
|
||||||
|
Story,
|
||||||
|
StoryView,
|
||||||
|
User,
|
||||||
|
UserDevice,
|
||||||
|
UserFilter,
|
||||||
|
UserSetting,
|
||||||
|
};
|
||||||
|
|
||||||
|
class DeleteRemoteProfilePipeline implements ShouldQueue
|
||||||
|
{
|
||||||
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||||
|
|
||||||
|
protected $profile;
|
||||||
|
|
||||||
|
public function __construct(Profile $profile)
|
||||||
|
{
|
||||||
|
$this->profile = $profile;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$profile = $this->profile;
|
||||||
|
|
||||||
|
if($profile->domain == null || $profile->private_key) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
DB::transaction(function() use ($profile) {
|
||||||
|
$profile->avatar->forceDelete();
|
||||||
|
|
||||||
|
$id = $profile->id;
|
||||||
|
|
||||||
|
MediaTag::whereProfileId($id)->delete();
|
||||||
|
StatusHashtag::whereProfileId($id)->delete();
|
||||||
|
DirectMessage::whereFromId($id)->delete();
|
||||||
|
FollowRequest::whereFollowingId($id)
|
||||||
|
->orWhere('follower_id', $id)
|
||||||
|
->forceDelete();
|
||||||
|
Follower::whereProfileId($id)
|
||||||
|
->orWhere('following_id', $id)
|
||||||
|
->forceDelete();
|
||||||
|
Like::whereProfileId($id)->forceDelete();
|
||||||
|
});
|
||||||
|
|
||||||
|
DB::transaction(function() use ($profile) {
|
||||||
|
$pid = $profile->id;
|
||||||
|
StoryView::whereProfileId($pid)->delete();
|
||||||
|
$stories = Story::whereProfileId($pid)->get();
|
||||||
|
foreach($stories as $story) {
|
||||||
|
$path = storage_path('app/'.$story->path);
|
||||||
|
if(is_file($path)) {
|
||||||
|
unlink($path);
|
||||||
|
}
|
||||||
|
$story->forceDelete();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
DB::transaction(function() use ($profile) {
|
||||||
|
$medias = Media::whereProfileId($profile->id)->get();
|
||||||
|
foreach($medias as $media) {
|
||||||
|
$path = storage_path('app/'.$media->media_path);
|
||||||
|
$thumb = storage_path('app/'.$media->thumbnail_path);
|
||||||
|
if(is_file($path)) {
|
||||||
|
unlink($path);
|
||||||
|
}
|
||||||
|
if(is_file($thumb)) {
|
||||||
|
unlink($thumb);
|
||||||
|
}
|
||||||
|
$media->forceDelete();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
DB::transaction(function() use ($profile) {
|
||||||
|
Mention::whereProfileId($profile->id)->forceDelete();
|
||||||
|
Notification::whereProfileId($profile->id)
|
||||||
|
->orWhere('actor_id', $profile->id)
|
||||||
|
->forceDelete();
|
||||||
|
});
|
||||||
|
|
||||||
|
DB::transaction(function() use ($profile) {
|
||||||
|
Status::whereProfileId($profile->id)
|
||||||
|
->cursor()
|
||||||
|
->each(function($status) {
|
||||||
|
AccountInterstitial::where('item_type', 'App\Status')
|
||||||
|
->where('item_id', $status->id)
|
||||||
|
->delete();
|
||||||
|
$status->forceDelete();
|
||||||
|
});
|
||||||
|
Report::whereProfileId($profile->id)->forceDelete();
|
||||||
|
$this->deleteProfile($profile);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function deleteProfile($profile) {
|
||||||
|
DB::transaction(function() use ($profile) {
|
||||||
|
Profile::findOrFail($profile->id)->delete();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -41,7 +41,7 @@ class AdminStatsService
|
||||||
return Cache::remember('admin:dashboard:home:data:v0:24hr', now()->addHours(24), function() use ($day) {
|
return Cache::remember('admin:dashboard:home:data:v0:24hr', now()->addHours(24), function() use ($day) {
|
||||||
return [
|
return [
|
||||||
'failedjobs' => PrettyNumber::convert(FailedJob::where('failed_at', '>=', \Carbon\Carbon::now()->subDay())->count()),
|
'failedjobs' => PrettyNumber::convert(FailedJob::where('failed_at', '>=', \Carbon\Carbon::now()->subDay())->count()),
|
||||||
'statuses' => PrettyNumber::convert(Status::whereNull('in_reply_to_id')->whereNull('reblog_of_id')->count()),
|
'statuses' => PrettyNumber::convert(Status::count()),
|
||||||
'profiles' => PrettyNumber::convert(Profile::count()),
|
'profiles' => PrettyNumber::convert(Profile::count()),
|
||||||
'users' => PrettyNumber::convert(User::count()),
|
'users' => PrettyNumber::convert(User::count()),
|
||||||
'instances' => PrettyNumber::convert(Instance::count()),
|
'instances' => PrettyNumber::convert(Instance::count()),
|
||||||
|
|
|
@ -21,6 +21,7 @@ use App\Util\ActivityPub\Helpers;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
use App\Jobs\LikePipeline\LikePipeline;
|
use App\Jobs\LikePipeline\LikePipeline;
|
||||||
use App\Jobs\FollowPipeline\FollowPipeline;
|
use App\Jobs\FollowPipeline\FollowPipeline;
|
||||||
|
use App\Jobs\DeletePipeline\DeleteRemoteProfilePipeline;
|
||||||
|
|
||||||
use App\Util\ActivityPub\Validator\Accept as AcceptValidator;
|
use App\Util\ActivityPub\Validator\Accept as AcceptValidator;
|
||||||
use App\Util\ActivityPub\Validator\Add as AddValidator;
|
use App\Util\ActivityPub\Validator\Add as AddValidator;
|
||||||
|
@ -470,15 +471,7 @@ class Inbox
|
||||||
if(!$profile || $profile->private_key != null) {
|
if(!$profile || $profile->private_key != null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Notification::whereActorId($profile->id)->delete();
|
DeleteRemoteProfilePipeline::dispatchNow($profile);
|
||||||
$profile->avatar()->delete();
|
|
||||||
$profile->followers()->delete();
|
|
||||||
$profile->following()->delete();
|
|
||||||
$profile->likes()->delete();
|
|
||||||
$profile->media()->delete();
|
|
||||||
$profile->hashtags()->delete();
|
|
||||||
$profile->statuses()->delete();
|
|
||||||
$profile->delete();
|
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
$type = $this->payload['object']['type'];
|
$type = $this->payload['object']['type'];
|
||||||
|
@ -496,16 +489,8 @@ class Inbox
|
||||||
if(!$profile || $profile->private_key != null) {
|
if(!$profile || $profile->private_key != null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Notification::whereActorId($profile->id)->delete();
|
DeleteRemoteProfilePipeline::dispatchNow($profile);
|
||||||
$profile->avatar()->delete();
|
return;
|
||||||
$profile->followers()->delete();
|
|
||||||
$profile->following()->delete();
|
|
||||||
$profile->likes()->delete();
|
|
||||||
$profile->media()->delete();
|
|
||||||
$profile->hashtags()->delete();
|
|
||||||
$profile->statuses()->delete();
|
|
||||||
$profile->delete();
|
|
||||||
return;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'Tombstone':
|
case 'Tombstone':
|
||||||
|
|
Loading…
Reference in a new issue