2023-09-16 12:12:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
|
|
|
use App\Models\Address;
|
|
|
|
|
|
|
|
class MailList extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $signature = 'mail:list {ftn : FTN address}';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'List mail waiting for a node';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2024-05-27 05:08:39 +00:00
|
|
|
public function handle(): int
|
2023-09-16 12:12:19 +00:00
|
|
|
{
|
2024-05-23 10:30:03 +00:00
|
|
|
$ao = Address::findFTN($this->argument('ftn'),TRUE);
|
|
|
|
|
|
|
|
if (! $ao) {
|
|
|
|
$this->error(sprintf('%s not found?',$this->argument('ftn')));
|
|
|
|
|
|
|
|
return self::FAILURE;
|
|
|
|
}
|
2023-09-16 12:12:19 +00:00
|
|
|
|
|
|
|
$this->info('Netmail');
|
|
|
|
$this->table([
|
|
|
|
'id' => 'ID',
|
|
|
|
'msgid' => 'MSGID',
|
|
|
|
'from' => 'FROM',
|
|
|
|
'to' => 'TO',
|
|
|
|
'subject' => 'SUBJECT',
|
2024-06-07 00:51:28 +00:00
|
|
|
],$ao->netmailWaiting()->get()->map(function($item) {
|
2023-09-16 12:12:19 +00:00
|
|
|
return [
|
|
|
|
'id'=>$item->id,
|
|
|
|
'msgid'=>$item->msgid,
|
|
|
|
'from'=>$item->from,
|
|
|
|
'to'=>$item->to,
|
|
|
|
'subject'=>$item->subject,
|
|
|
|
];
|
|
|
|
}));
|
|
|
|
|
|
|
|
$this->info('Echomail');
|
|
|
|
$this->table([
|
|
|
|
'id' => 'ID',
|
|
|
|
'msgid' => 'MSGID',
|
|
|
|
'from' => 'FROM',
|
|
|
|
'to' => 'TO',
|
|
|
|
'subject' => 'SUBJECT',
|
|
|
|
'area' => 'AREA',
|
2024-06-07 00:51:28 +00:00
|
|
|
],$ao->echomailWaiting()->get()->map(function($item) {
|
2023-09-16 12:12:19 +00:00
|
|
|
return [
|
|
|
|
'id'=>$item->id,
|
|
|
|
'msgid'=>$item->msgid,
|
|
|
|
'from'=>$item->from,
|
|
|
|
'to'=>$item->to,
|
|
|
|
'subject'=>$item->subject,
|
|
|
|
'area'=>$item->echoarea->name,
|
|
|
|
];
|
|
|
|
}));
|
|
|
|
|
2024-05-23 10:30:03 +00:00
|
|
|
return self::SUCCESS;
|
2023-09-16 12:12:19 +00:00
|
|
|
}
|
|
|
|
}
|