123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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;
- }
- }
|