mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
commit
d4b3a48782
14 changed files with 244 additions and 25 deletions
|
@ -5,12 +5,36 @@ namespace App\Console\Commands;
|
||||||
use Illuminate\Console\Command;
|
use Illuminate\Console\Command;
|
||||||
|
|
||||||
use App\{
|
use App\{
|
||||||
|
Avatar,
|
||||||
|
Bookmark,
|
||||||
|
Collection,
|
||||||
|
DirectMessage,
|
||||||
|
FollowRequest,
|
||||||
|
Follower,
|
||||||
|
HashtagFollow,
|
||||||
Like,
|
Like,
|
||||||
Media,
|
Media,
|
||||||
|
MediaTag,
|
||||||
|
Mention,
|
||||||
Profile,
|
Profile,
|
||||||
|
Report,
|
||||||
|
ReportComment,
|
||||||
|
ReportLog,
|
||||||
|
StatusArchived,
|
||||||
|
StatusHashtag,
|
||||||
|
StatusView,
|
||||||
Status,
|
Status,
|
||||||
User
|
Story,
|
||||||
|
StoryView,
|
||||||
|
User,
|
||||||
|
UserFilter
|
||||||
};
|
};
|
||||||
|
use App\Models\{
|
||||||
|
Conversation,
|
||||||
|
Portfolio,
|
||||||
|
UserPronoun
|
||||||
|
};
|
||||||
|
use DB, Cache;
|
||||||
|
|
||||||
class FixDuplicateProfiles extends Command
|
class FixDuplicateProfiles extends Command
|
||||||
{
|
{
|
||||||
|
@ -45,31 +69,174 @@ class FixDuplicateProfiles extends Command
|
||||||
*/
|
*/
|
||||||
public function handle()
|
public function handle()
|
||||||
{
|
{
|
||||||
$profiles = Profile::selectRaw('count(user_id) as count,user_id')->whereNotNull('user_id')->groupBy('user_id')->orderBy('user_id', 'desc')->get()->where('count', '>', 1);
|
$duplicates = DB::table('profiles')
|
||||||
$count = $profiles->count();
|
->whereNull('domain')
|
||||||
if($count == 0) {
|
->select('username', DB::raw('COUNT(*) as `count`'))
|
||||||
$this->info("No duplicate profiles found!");
|
->groupBy('username')
|
||||||
return;
|
->havingRaw('COUNT(*) > 1')
|
||||||
}
|
->pluck('username');
|
||||||
$this->info("Found {$count} accounts with duplicate profiles...");
|
|
||||||
$bar = $this->output->createProgressBar($count);
|
|
||||||
$bar->start();
|
|
||||||
|
|
||||||
foreach ($profiles as $profile) {
|
foreach($duplicates as $dupe) {
|
||||||
$dup = Profile::whereUserId($profile->user_id)->get();
|
$ids = Profile::whereNull('domain')->whereUsername($dupe)->pluck('id');
|
||||||
|
if(!$ids || $ids->count() != 2) {
|
||||||
if(
|
continue;
|
||||||
$dup->first()->username === $dup->last()->username &&
|
|
||||||
$dup->last()->statuses()->count() == 0 &&
|
|
||||||
$dup->last()->followers()->count() == 0 &&
|
|
||||||
$dup->last()->likes()->count() == 0 &&
|
|
||||||
$dup->last()->media()->count() == 0
|
|
||||||
) {
|
|
||||||
$dup->last()->avatar->forceDelete();
|
|
||||||
$dup->last()->forceDelete();
|
|
||||||
}
|
}
|
||||||
$bar->advance();
|
$id = $ids->first();
|
||||||
|
$oid = $ids->last();
|
||||||
|
|
||||||
|
$user = User::whereUsername($dupe)->first();
|
||||||
|
if($user) {
|
||||||
|
$user->profile_id = $id;
|
||||||
|
$user->save();
|
||||||
|
} else {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->checkAvatar($id, $oid);
|
||||||
|
$this->checkBookmarks($id, $oid);
|
||||||
|
$this->checkCollections($id, $oid);
|
||||||
|
$this->checkConversations($id, $oid);
|
||||||
|
$this->checkDirectMessages($id, $oid);
|
||||||
|
$this->checkFollowRequest($id, $oid);
|
||||||
|
$this->checkFollowers($id, $oid);
|
||||||
|
$this->checkHashtagFollow($id, $oid);
|
||||||
|
$this->checkLikes($id, $oid);
|
||||||
|
$this->checkMedia($id, $oid);
|
||||||
|
$this->checkMediaTag($id, $oid);
|
||||||
|
$this->checkMention($id, $oid);
|
||||||
|
$this->checkPortfolio($id, $oid);
|
||||||
|
$this->checkReport($id, $oid);
|
||||||
|
$this->checkStatusArchived($id, $oid);
|
||||||
|
$this->checkStatusHashtag($id, $oid);
|
||||||
|
$this->checkStatusView($id, $oid);
|
||||||
|
$this->checkStatus($id, $oid);
|
||||||
|
$this->checkStory($id, $oid);
|
||||||
|
$this->checkStoryView($id, $oid);
|
||||||
|
$this->checkUserFilter($id, $oid);
|
||||||
|
$this->checkUserPronoun($id, $oid);
|
||||||
|
Profile::find($oid)->forceDelete();
|
||||||
}
|
}
|
||||||
$bar->finish();
|
|
||||||
|
Cache::clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function checkAvatar($id, $oid)
|
||||||
|
{
|
||||||
|
Avatar::whereProfileId($oid)->forceDelete();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkBookmarks($id, $oid)
|
||||||
|
{
|
||||||
|
Bookmark::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkCollections($id, $oid)
|
||||||
|
{
|
||||||
|
Collection::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkConversations($id, $oid)
|
||||||
|
{
|
||||||
|
Conversation::whereToId($oid)->update(['to_id' => $id]);
|
||||||
|
Conversation::whereFromId($oid)->update(['from_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkDirectMessages($id, $oid)
|
||||||
|
{
|
||||||
|
DirectMessage::whereToId($oid)->update(['to_id' => $id]);
|
||||||
|
DirectMessage::whereFromId($oid)->update(['from_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkFollowRequest($id, $oid)
|
||||||
|
{
|
||||||
|
FollowRequest::whereFollowerId($oid)->update(['follower_id' => $id]);
|
||||||
|
FollowRequest::whereFollowingId($oid)->update(['following_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkFollowers($id, $oid)
|
||||||
|
{
|
||||||
|
Follower::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
Follower::whereFollowingId($oid)->update(['following_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkHashtagFollow($id, $oid)
|
||||||
|
{
|
||||||
|
HashtagFollow::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkLikes($id, $oid)
|
||||||
|
{
|
||||||
|
Like::whereStatusProfileId($oid)->update(['status_profile_id' => $id]);
|
||||||
|
Like::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkMedia($id, $oid)
|
||||||
|
{
|
||||||
|
Media::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkMediaTag($id, $oid)
|
||||||
|
{
|
||||||
|
MediaTag::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkMention($id, $oid)
|
||||||
|
{
|
||||||
|
Mention::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkPortfolio($id, $oid)
|
||||||
|
{
|
||||||
|
Portfolio::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkReport($id, $oid)
|
||||||
|
{
|
||||||
|
ReportComment::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
ReportLog::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
Report::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkStatusArchived($id, $oid)
|
||||||
|
{
|
||||||
|
StatusArchived::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkStatusHashtag($id, $oid)
|
||||||
|
{
|
||||||
|
StatusHashtag::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkStatusView($id, $oid)
|
||||||
|
{
|
||||||
|
StatusView::whereStatusProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
StatusView::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkStatus($id, $oid)
|
||||||
|
{
|
||||||
|
Status::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkStory($id, $oid)
|
||||||
|
{
|
||||||
|
Story::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkStoryView($id, $oid)
|
||||||
|
{
|
||||||
|
StoryView::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkUserFilter($id, $oid)
|
||||||
|
{
|
||||||
|
UserFilter::whereUserId($oid)->update(['user_id' => $id]);
|
||||||
|
UserFilter::whereFilterableType('App\Profile')->whereFilterableId($oid)->update(['filterable_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function checkUserPronoun($id, $oid)
|
||||||
|
{
|
||||||
|
UserPronoun::whereProfileId($oid)->update(['profile_id' => $id]);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ class Like extends Model
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $dates = ['deleted_at'];
|
protected $dates = ['deleted_at'];
|
||||||
protected $fillable = ['profile_id', 'status_id'];
|
protected $fillable = ['profile_id', 'status_id', 'status_profile_id'];
|
||||||
|
|
||||||
public function actor()
|
public function actor()
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,6 +19,8 @@ class Media extends Model
|
||||||
*/
|
*/
|
||||||
protected $dates = ['deleted_at'];
|
protected $dates = ['deleted_at'];
|
||||||
|
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
protected $casts = [
|
protected $casts = [
|
||||||
'srcset' => 'array'
|
'srcset' => 'array'
|
||||||
];
|
];
|
||||||
|
|
|
@ -6,6 +6,8 @@ use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class MediaTag extends Model
|
class MediaTag extends Model
|
||||||
{
|
{
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
public function status()
|
public function status()
|
||||||
{
|
{
|
||||||
return $this->belongsTo(Status::class);
|
return $this->belongsTo(Status::class);
|
||||||
|
|
|
@ -16,6 +16,8 @@ class Mention extends Model
|
||||||
*/
|
*/
|
||||||
protected $dates = ['deleted_at'];
|
protected $dates = ['deleted_at'];
|
||||||
|
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
public function profile()
|
public function profile()
|
||||||
{
|
{
|
||||||
return $this->belongsTo(Profile::class, 'profile_id', 'id');
|
return $this->belongsTo(Profile::class, 'profile_id', 'id');
|
||||||
|
|
|
@ -8,4 +8,6 @@ use Illuminate\Database\Eloquent\Model;
|
||||||
class Conversation extends Model
|
class Conversation extends Model
|
||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $fillable = ['from_id', 'to_id'];
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@ class Portfolio extends Model
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
public $fillable = [
|
public $fillable = [
|
||||||
|
'profile_id',
|
||||||
'active',
|
'active',
|
||||||
'show_captions',
|
'show_captions',
|
||||||
'show_license',
|
'show_license',
|
||||||
|
|
|
@ -8,4 +8,6 @@ use Illuminate\Database\Eloquent\Model;
|
||||||
class UserPronoun extends Model
|
class UserPronoun extends Model
|
||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $guarded = [];
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,10 @@ class UserObserver
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(Profile::whereUsername($user->username)->exists()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (empty($user->profile)) {
|
if (empty($user->profile)) {
|
||||||
$profile = DB::transaction(function() use($user) {
|
$profile = DB::transaction(function() use($user) {
|
||||||
$profile = new Profile();
|
$profile = new Profile();
|
||||||
|
|
|
@ -8,6 +8,8 @@ class Report extends Model
|
||||||
{
|
{
|
||||||
protected $dates = ['admin_seen'];
|
protected $dates = ['admin_seen'];
|
||||||
|
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
public function url()
|
public function url()
|
||||||
{
|
{
|
||||||
return url('/i/admin/reports/show/'.$this->id);
|
return url('/i/admin/reports/show/'.$this->id);
|
||||||
|
|
|
@ -6,6 +6,8 @@ use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class ReportComment extends Model
|
class ReportComment extends Model
|
||||||
{
|
{
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
public function profile()
|
public function profile()
|
||||||
{
|
{
|
||||||
return $this->belongsTo(Profile::class);
|
return $this->belongsTo(Profile::class);
|
||||||
|
|
|
@ -6,6 +6,8 @@ use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class ReportLog extends Model
|
class ReportLog extends Model
|
||||||
{
|
{
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
public function profile()
|
public function profile()
|
||||||
{
|
{
|
||||||
return $this->belongsTo(Profile::class);
|
return $this->belongsTo(Profile::class);
|
||||||
|
|
|
@ -8,4 +8,6 @@ use Illuminate\Database\Eloquent\Model;
|
||||||
class StatusArchived extends Model
|
class StatusArchived extends Model
|
||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $guarded = [];
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
use Illuminate\Support\Facades\Artisan;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Artisan::call('fix:profile:duplicates');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue