clrghouz/app/Console/Commands/PacketInfo.php

115 lines
3.7 KiB
PHP
Raw Normal View History

2021-08-12 13:15:45 +00:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Storage;
2021-08-12 13:15:45 +00:00
2022-11-13 13:29:55 +00:00
use App\Classes\File;
2021-08-12 13:15:45 +00:00
use App\Classes\FTN\Packet;
use App\Models\{Address,Echomail};
2021-08-12 13:15:45 +00:00
class PacketInfo extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'packet:info'
2022-11-13 13:29:55 +00:00
.' {file : Packet to process}'
.' {ftn? : FTN the packet is from}';
2021-08-12 13:15:45 +00:00
/**
* The console command description.
*
* @var string
*/
protected $description = 'Packet Information';
/**
* Execute the console command.
*
* @return int
* @throws \App\Exceptions\InvalidPacketException
2021-08-12 13:15:45 +00:00
*/
public function handle():int
2021-08-12 13:15:45 +00:00
{
$fs = Storage::disk(config('fido.local_disk'));
$rel_name = sprintf('%s/%s',config('fido.dir'),$this->argument('file'));
$a = NULL;
$f = new File($fs->path($rel_name));
$m = NULL;
if ($this->argument('ftn')) {
$a = Address::findFTN($this->argument('ftn'));
} elseif (preg_match(sprintf('/^%s\.(.{3})$/',Packet::regex),$this->argument('file'),$m)) {
$a = Address::findOrFail(hexdec($m[1]));
}
2021-08-12 13:15:45 +00:00
2022-11-13 13:29:55 +00:00
foreach ($f as $packet) {
$pkt = Packet::process($packet,$x=$f->itemName(),$f->itemSize(),$a?->zone->domain);
2021-08-12 13:15:45 +00:00
2022-11-13 13:29:55 +00:00
$this->alert(sprintf('File Name: %s',$x));
2021-08-12 13:15:45 +00:00
$this->info(sprintf('Packet Type : %s (%s)',$pkt->type,get_class($pkt)));
2024-05-27 23:35:22 +00:00
$this->info(sprintf('From : %s to %s',$pkt->fftn->ftn,$pkt->tftn ? $pkt->tftn->ftn : $pkt->tftn_t));
$this->info(sprintf('Dated : %s (%s) [%s]',$pkt->date,$pkt->date->timestamp,$pkt->date->tz->toOffsetName()));
$this->info(sprintf('Password : %s (%s)',$pkt->password ?: '-',$pkt->password ? 'SET' : 'NOT set'));
$this->info(sprintf('Messages : %d',$pkt->count()));
$this->info(sprintf('Tosser : %d (%s) version %s (%x)',$pkt->software->code,$pkt->software->name,$pkt->software_ver,$pkt->product));
$this->info(sprintf('Capabilities: %s',$pkt->capability));
2023-01-11 02:08:59 +00:00
$this->info(sprintf('Has Errors : %s',$pkt->errors->count() ? 'YES' : 'No'));
$this->info(sprintf('Messages : %d',$pkt->count()));
2022-11-13 13:29:55 +00:00
foreach ($pkt as $msg) {
echo "\n";
2023-01-11 02:08:59 +00:00
try {
$this->warn(sprintf('- Date : %s (%s)',$msg->datetime,$msg->datetime->tz->toOffsetName()));
$this->warn(sprintf(' - Errors : %s',$msg->errors->count() ? 'YES' : 'No'));
$this->warn(sprintf(' - Flags : %s',$msg->flags()->keys()->join(', ')));
$this->warn(sprintf(' - Cost : %d',$msg->cost));
$this->warn(sprintf(' - From : %s (%s)',$msg->from,$msg->fftn->ftn));
if ($msg instanceof Echomail)
$this->warn(sprintf(' - To : %s',$msg->to));
else
$this->warn(sprintf(' - To : %s (%s)',$msg->to,$msg->tftn->ftn));
2023-01-11 02:08:59 +00:00
$this->warn(sprintf(' - Subject: %s',$msg->subject));
if ($msg instanceof Echomail)
$this->warn(sprintf(' - Area : %s',$msg->echoarea->name));
2022-11-13 13:29:55 +00:00
if ($msg->errors->count()) {
echo "\n";
$this->error("Errors:");
foreach ($msg->errors->all() as $error)
$this->error(' - '.$error);
}
2023-01-11 02:08:59 +00:00
} catch (\Exception $e) {
$this->error('! ERROR: '.$e->getMessage());
$this->info('Message dump:');
echo hex_dump($msg->dump);
exit(1);
}
2022-11-13 13:29:55 +00:00
}
foreach ($pkt->errors as $msg) {
$this->error(sprintf('- Date: %s',$msg->datetime));
2022-11-13 13:29:55 +00:00
$this->error(sprintf(' - FLAGS: %s',$msg->flags()->filter()->keys()->join(', ')));
$this->error(sprintf(' - From: %s (%s)',$msg->from,$msg->fftn));
$this->error(sprintf(' - To: %s (%s)',$msg->to,$msg->tftn));
2022-11-13 13:29:55 +00:00
$this->error(sprintf(' - Subject: %s',$msg->subject));
2021-08-13 13:46:48 +00:00
foreach ($msg->errors->all() as $error)
$this->line(' - '.$error);
2022-11-13 13:29:55 +00:00
}
2021-08-13 13:46:48 +00:00
2022-11-13 13:29:55 +00:00
$this->line("\n");
2021-08-12 13:15:45 +00:00
}
return self::SUCCESS;
2021-08-12 13:15:45 +00:00
}
}