123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?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);
- }
- }
|