![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/vendor/laravel/passport/src/Console/ |
<?php namespace Laravel\Passport\Console; use Illuminate\Console\Command; use Illuminate\Support\Carbon; use Laravel\Passport\Passport; class PurgeCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'passport:purge {--revoked : Only purge revoked tokens and authentication codes} {--expired : Only purge expired tokens and authentication codes}'; /** * The console command description. * * @var string */ protected $description = 'Purge revoked and / or expired tokens and authentication codes'; /** * Execute the console command. */ public function handle() { $expired = Carbon::now()->subDays(7); if (($this->option('revoked') && $this->option('expired')) || (! $this->option('revoked') && ! $this->option('expired'))) { Passport::token()->where('revoked', 1)->orWhereDate('expires_at', '<', $expired)->delete(); Passport::authCode()->where('revoked', 1)->orWhereDate('expires_at', '<', $expired)->delete(); Passport::refreshToken()->where('revoked', 1)->orWhereDate('expires_at', '<', $expired)->delete(); $this->info('Purged revoked items and items expired for more than seven days.'); } elseif ($this->option('revoked')) { Passport::token()->where('revoked', 1)->delete(); Passport::authCode()->where('revoked', 1)->delete(); Passport::refreshToken()->where('revoked', 1)->delete(); $this->info('Purged revoked items.'); } elseif ($this->option('expired')) { Passport::token()->whereDate('expires_at', '<', $expired)->delete(); Passport::authCode()->whereDate('expires_at', '<', $expired)->delete(); Passport::refreshToken()->whereDate('expires_at', '<', $expired)->delete(); $this->info('Purged items expired for more than seven days.'); } } }