clrghouz/app/Console/Commands/BinkpSend.php

44 lines
820 B
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;
use App\Jobs\AddressPoll as Job;
2021-04-01 10:59:15 +00:00
class BinkpSend extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'binkp:send {ftn : FTN to Send to}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Binkp send';
/**
* Execute the console command.
*
2021-07-02 13:44:01 +00:00
* @throws \Exception
2021-04-01 10:59:15 +00:00
*/
public function handle(): void
2021-04-01 10:59:15 +00:00
{
Log::info('Call BINKP send');
$ao = Address::findFTN($this->argument('ftn'));
if (! $ao)
throw new ModelNotFoundException('Unknown node: '.$this->argument('ftn'));
2021-04-01 10:59:15 +00:00
Job::dispatchSync($ao);
2021-04-01 10:59:15 +00:00
}
}