clrghouz/app/Console/Commands/CommEMSISend.php

55 lines
1.0 KiB
PHP
Raw Normal View History

2021-04-01 10:59:15 +00:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Database\Eloquent\ModelNotFoundException;
2021-04-01 10:59:15 +00:00
use Illuminate\Support\Facades\Log;
use App\Models\{Address,Mailer};
use App\Jobs\AddressPoll as Job;
2021-04-01 10:59:15 +00:00
class CommEMSISend extends Command
2021-04-01 10:59:15 +00:00
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'comm:emsi:send'
.'{--N|now : Dont queue}'
.'{ftn : FTN to Send to}';
2021-04-01 10:59:15 +00:00
/**
* The console command description.
*
* @var string
*/
protected $description = 'EMSI send';
private const ID = 'EMSI';
2021-04-01 10:59:15 +00:00
/**
* Execute the console command.
*
* @throws \Exception
2021-04-01 10:59:15 +00:00
*/
public function handle()
2021-04-01 10:59:15 +00:00
{
$ao = Address::findFTN($this->argument('ftn'));
if (! $ao)
throw new ModelNotFoundException('Unknown node: '.$this->argument('ftn'));
2023-07-26 09:44:07 +00:00
Log::info(sprintf('CES:- Call EMSI send for %s',$ao->ftn));
$mo = Mailer::where('name',self::ID)->singleOrFail();
if ($this->option('now'))
Job::dispatchSync($ao,$mo);
else
Job::dispatch($ao,$mo);
return self::SUCCESS;
2021-04-01 10:59:15 +00:00
}
}