. */ namespace App\Console\Commands; use Illuminate\Console\Command; use League\OAuth2\Client\Token\AccessToken; use Poniverse\Lib\Client; use App\Models\User; class SyncPoniverseAccounts extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'accounts:sync-with-poniverse'; /** * @var Client */ protected $poniverse; /** * The console command description. * * @var string */ protected $description = 'Ensures each Pony.fm account has a valid refresh token and email address from Poniverse on file.'; /** * Create a new command instance. */ public function __construct() { parent::__construct(); $this->poniverse = new Client( config('poniverse.client_id'), config('poniverse.secret'), new \GuzzleHttp\Client()); } /** * Execute the console command. * * @return mixed */ public function handle() { $usersToUpdate = User::whereLinkedToPoniverse(); $progress = $this->output->createProgressBar($usersToUpdate->count()); $progress->setFormat( '%message% %current%/%max% [%bar%] %percent:3s%% %elapsed:6s%'); $usersToUpdate ->orderBy('id', 'ASC') ->chunk(100, function($users) use ($progress) { /** @var User $user */ foreach ($users as $user) { $progress->setMessage("Updating user ID {$user->id}..."); $progress->advance(); $this->poniverse->poniverse()->meta() ->syncAccount( $user->getAccessToken()->getResourceOwnerId(), function(AccessToken $accessTokenInfo) use ($user) { $user->setAccessToken($accessTokenInfo); }, function(string $newEmailAddress) use ($user) { $user->email = $newEmailAddress; $user->save(); }); } }); $progress->finish(); $this->line(''); $this->info('All done!'); return 0; } }