mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
43 lines
1022 B
PHP
43 lines
1022 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Jobs\GenerateTemporaryInvite;
|
|
use App\Jobs\SendLoginNotify;
|
|
use Illuminate\Console\Command;
|
|
|
|
class UserLoginNotify extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'user:login_notify {--this_id=} {--last_id=}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Send login notify, option: --this_id, --last_id';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function handle()
|
|
{
|
|
$thisId = $this->option('this_id');
|
|
$lastId = $this->option('last_id');
|
|
$this->info("thisId: $thisId, lastId: $lastId");
|
|
if (!$thisId || !$lastId) {
|
|
$this->error("require option --this_id=? and --last_id=?");
|
|
return Command::FAILURE;
|
|
}
|
|
SendLoginNotify::dispatch($thisId, $lastId);
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|