Update UserVerifyEmail command

This commit is contained in:
Daniel Supernault 2024-12-06 00:44:16 -07:00
parent 222d577c91
commit 77da9ad8e9
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -5,8 +5,9 @@ namespace App\Console\Commands;
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Illuminate\Support\Str; use Illuminate\Support\Str;
use App\User; use App\User;
use Illuminate\Contracts\Console\PromptsForMissingInput;
class UserVerifyEmail extends Command class UserVerifyEmail extends Command implements PromptsForMissingInput
{ {
/** /**
* The name and signature of the console command. * The name and signature of the console command.
@ -39,13 +40,19 @@ class UserVerifyEmail extends Command
*/ */
public function handle() public function handle()
{ {
$user = User::whereUsername($this->argument('username'))->first(); $username = $this->argument('username');
$user = User::whereUsername($username)->first();
if(!$user) { if(!$user) {
$this->error('Username not found'); $this->error('Username not found');
return; return;
} }
if($user->email_verified_at) {
$this->error('Email already verified ' . $user->email_verified_at->diffForHumans());
return;
}
$user->email_verified_at = now(); $user->email_verified_at = now();
$user->save(); $user->save();
$this->info('Successfully verified email address for ' . $user->username); $this->info('Successfully verified email address for ' . $user->username);