pixelfed/pixelfed

View on GitHub
app/Console/Commands/AccountPostCountStatUpdate.php

Summary

Maintainability
A
1 hr
Test Coverage
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Services\AccountService;
use App\Services\Account\AccountStatService;
use App\Status;
use App\Profile;

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()
    {
        $ids = AccountStatService::getAllPostCountIncr();
        if(!$ids || !count($ids)) {
            return;
        }
        foreach($ids as $id) {
            $acct = AccountService::get($id, true);
            if(!$acct) {
                AccountStatService::removeFromPostCount($id);
                continue;
            }
            $statusCount = Status::whereProfileId($id)->count();
            if($statusCount != $acct['statuses_count']) {
                $profile = Profile::find($id);
                if(!$profile) {
                    AccountStatService::removeFromPostCount($id);
                    continue;
                }
                $profile->status_count = $statusCount;
                $profile->save();
                AccountService::del($id);
            }
            AccountStatService::removeFromPostCount($id);
        }
        return;
    }
}