clrghouz/app/Console/Commands/EMSIReceive.php

52 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\Support\Facades\Log;
2021-07-02 13:44:01 +00:00
use App\Classes\Protocol\EMSI;
2021-04-01 10:59:15 +00:00
use App\Classes\Sock\SocketException;
use App\Classes\Sock\SocketServer;
use App\Models\Setup;
2021-04-01 10:59:15 +00:00
class EMSIReceive extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'emsi:receive';
/**
* The console command description.
*
* @var string
*/
protected $description = 'EMSI receive';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
Log::info('Listening for EMSI connections...');
$server = new SocketServer(Setup::EMSI_PORT,Setup::EMSI_BIND);
2021-07-02 13:44:01 +00:00
$server->setConnectionHandler([new EMSI(Setup::findOrFail(config('app.id'))),'onConnect']);
2021-04-01 10:59:15 +00:00
try {
$server->listen();
} catch (SocketException $e) {
if ($e->getMessage() == 'Can\'t accept connections: "Success"')
Log::debug('Server Terminated');
else
Log::emergency('Uncaught Message: '.$e->getMessage());
}
}
}