2019-05-06 12:29:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2021-07-15 14:54:23 +00:00
|
|
|
use Carbon\Carbon;
|
2022-01-01 05:59:35 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2021-08-15 09:25:04 +00:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2021-07-15 14:54:23 +00:00
|
|
|
|
|
|
|
use App\Classes\FTN\Message;
|
2021-07-30 14:35:52 +00:00
|
|
|
use App\Interfaces\Packet;
|
2022-03-14 11:28:54 +00:00
|
|
|
use App\Traits\{EncodeUTF8,MsgID};
|
2019-05-06 12:29:29 +00:00
|
|
|
|
2021-08-15 09:25:04 +00:00
|
|
|
final class Netmail extends Model implements Packet
|
2019-05-06 12:29:29 +00:00
|
|
|
{
|
2021-08-15 09:25:04 +00:00
|
|
|
private const LOGKEY = 'MN-';
|
|
|
|
|
2022-03-14 11:28:54 +00:00
|
|
|
use SoftDeletes,EncodeUTF8,MsgID;
|
2021-08-26 12:32:32 +00:00
|
|
|
|
|
|
|
private const cast_utf8 = [
|
2021-12-01 11:45:51 +00:00
|
|
|
'to',
|
|
|
|
'from',
|
2021-08-26 12:32:32 +00:00
|
|
|
'subject',
|
|
|
|
'msg',
|
2022-02-19 05:33:14 +00:00
|
|
|
'msg_src',
|
2021-09-12 13:06:17 +00:00
|
|
|
'origin',
|
|
|
|
'tearline',
|
|
|
|
'tagline',
|
2021-08-26 12:32:32 +00:00
|
|
|
];
|
2021-07-15 14:54:23 +00:00
|
|
|
|
2021-07-18 12:10:21 +00:00
|
|
|
protected $dates = ['datetime','sent_at'];
|
|
|
|
|
2021-07-15 14:54:23 +00:00
|
|
|
/* RELATIONS */
|
2019-05-06 12:29:29 +00:00
|
|
|
|
2021-07-15 14:54:23 +00:00
|
|
|
public function fftn()
|
2019-05-06 12:29:29 +00:00
|
|
|
{
|
2021-07-15 14:54:23 +00:00
|
|
|
return $this
|
2021-07-17 05:48:07 +00:00
|
|
|
->belongsTo(Address::class)
|
|
|
|
->withTrashed();
|
2019-05-06 12:29:29 +00:00
|
|
|
}
|
|
|
|
|
2021-07-15 14:54:23 +00:00
|
|
|
public function tftn()
|
2019-05-06 12:29:29 +00:00
|
|
|
{
|
2021-07-15 14:54:23 +00:00
|
|
|
return $this
|
|
|
|
->belongsTo(Address::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* METHODS */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return this model as a packet
|
|
|
|
*/
|
2021-07-30 14:35:52 +00:00
|
|
|
public function packet(Address $ao): Message
|
2021-07-15 14:54:23 +00:00
|
|
|
{
|
2021-08-15 09:25:04 +00:00
|
|
|
Log::debug(sprintf('%s:Bundling [%s]',self::LOGKEY,$this->id));
|
|
|
|
|
2021-07-17 05:48:07 +00:00
|
|
|
// @todo Dont bundle mail to nodes that have been disabled, or addresses that have been deleted
|
2021-07-30 14:35:52 +00:00
|
|
|
$o = new Message;
|
2021-07-17 05:48:07 +00:00
|
|
|
|
2021-08-15 09:25:04 +00:00
|
|
|
try {
|
|
|
|
$o->header = [
|
|
|
|
'onode' => $this->fftn->node_id,
|
|
|
|
'dnode' => $ao->node_id,
|
|
|
|
'onet' => $this->fftn->host_id,
|
|
|
|
'dnet' => $ao->host_id,
|
|
|
|
'flags' => 0, // @todo?
|
|
|
|
'cost' => 0,
|
|
|
|
'date'=>$this->datetime->format('d M y H:i:s'),
|
|
|
|
];
|
|
|
|
|
|
|
|
$o->tzutc = $this->datetime->utcOffset($this->tzoffset)->getOffsetString('');
|
|
|
|
$o->user_to = $this->to;
|
|
|
|
$o->user_from = $this->from;
|
|
|
|
$o->subject = $this->subject;
|
|
|
|
|
|
|
|
// INTL kludge
|
|
|
|
// @todo Point handling FMPT/TOPT
|
|
|
|
$o->intl = sprintf('%s %s',$this->tftn->ftn3d,$this->fftn->ftn3d);
|
|
|
|
$o->flags = $this->flags;
|
|
|
|
|
|
|
|
$o->msgid = sprintf('%s %08x',$this->fftn->ftn3d,crc32($this->id));
|
2022-01-01 05:59:35 +00:00
|
|
|
if ($this->replyid)
|
|
|
|
$o->replyid = $this->replyid;
|
2021-08-15 09:25:04 +00:00
|
|
|
|
2022-02-16 12:01:55 +00:00
|
|
|
$o->kludge->put('dbid',$this->id);
|
|
|
|
|
2021-08-15 09:25:04 +00:00
|
|
|
$o->message = $this->msg;
|
2021-08-19 07:24:56 +00:00
|
|
|
$o->tagline = $this->tagline;
|
|
|
|
$o->tearline = $this->tearline;
|
2021-08-15 09:25:04 +00:00
|
|
|
|
|
|
|
// VIA kludge
|
2022-02-16 12:01:55 +00:00
|
|
|
$sysaddress = Setup::findOrFail(config('app.id'))->system->match($this->fftn->zone)->first();
|
2021-08-15 09:25:04 +00:00
|
|
|
$via = $this->via ?: collect();
|
|
|
|
$via->push(
|
|
|
|
sprintf('%s @%s.UTC %s %d.%d/%s %s',
|
2022-02-16 12:01:55 +00:00
|
|
|
$sysaddress->ftn3d,
|
2021-08-15 09:25:04 +00:00
|
|
|
Carbon::now()->utc()->format('Ymd.His'),
|
2022-02-16 12:01:55 +00:00
|
|
|
str_replace(' ','_',Setup::PRODUCT_NAME),
|
2021-08-15 09:25:04 +00:00
|
|
|
Setup::PRODUCT_VERSION_MAJ,
|
|
|
|
Setup::PRODUCT_VERSION_MIN,
|
|
|
|
(new Setup)->version,
|
|
|
|
Carbon::now()->format('Y-m-d'),
|
|
|
|
));
|
|
|
|
|
|
|
|
$o->via = $via;
|
|
|
|
|
2021-08-16 12:30:34 +00:00
|
|
|
$o->packed = TRUE;
|
|
|
|
|
2021-08-15 09:25:04 +00:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
Log::error(sprintf('%s:Error converting netmail [%s] to a message (%d:%s)',self::LOGKEY,$this->id,$e->getLine(),$e->getMessage()));
|
|
|
|
dump($this);
|
|
|
|
}
|
2021-07-15 14:54:23 +00:00
|
|
|
|
|
|
|
return $o;
|
2019-05-06 12:29:29 +00:00
|
|
|
}
|
|
|
|
}
|