mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.8 KiB
PHP
82 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Profile;
|
|
use App\Services\Account\AccountStatService;
|
|
use App\Services\AccountService;
|
|
use App\Status;
|
|
use Illuminate\Console\Command;
|
|
|
|
class AccountPostCountStatUpdate extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'app:account-post-count-stat-update';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Update post counts from recent activities';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle()
|
|
{
|
|
$chunkSize = 100;
|
|
$lastId = 0;
|
|
|
|
while (true) {
|
|
$ids = AccountStatService::getPostCountChunk($lastId, $chunkSize);
|
|
|
|
if (empty($ids)) {
|
|
break;
|
|
}
|
|
|
|
foreach ($ids as $id) {
|
|
$this->processAccount($id);
|
|
$lastId = $id;
|
|
}
|
|
|
|
if (function_exists('gc_collect_cycles')) {
|
|
gc_collect_cycles();
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
private function processAccount($id)
|
|
{
|
|
$acct = AccountService::get($id, true);
|
|
if (! $acct) {
|
|
AccountStatService::removeFromPostCount($id);
|
|
|
|
return;
|
|
}
|
|
|
|
$statusCount = Status::whereProfileId($id)->count();
|
|
if ($statusCount != $acct['statuses_count']) {
|
|
$profile = Profile::find($id);
|
|
if (! $profile) {
|
|
AccountStatService::removeFromPostCount($id);
|
|
|
|
return;
|
|
}
|
|
|
|
$profile->status_count = $statusCount;
|
|
$profile->save();
|
|
|
|
AccountService::del($id);
|
|
}
|
|
|
|
AccountStatService::removeFromPostCount($id);
|
|
}
|
|
}
|