2019-04-27 13:57:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2021-07-30 14:35:52 +00:00
|
|
|
use Carbon\Exceptions\Exception;
|
|
|
|
use Jenssegers\Mongodb\Eloquent\Model;
|
|
|
|
use Jenssegers\Mongodb\Eloquent\SoftDeletes;
|
2019-04-27 13:57:39 +00:00
|
|
|
|
2021-07-30 14:35:52 +00:00
|
|
|
use App\Classes\FTN\Message;
|
|
|
|
use App\Interfaces\Packet;
|
|
|
|
use App\Traits\{MsgID,UseMongo};
|
|
|
|
|
|
|
|
class Echomail extends Model implements Packet
|
2019-04-27 13:57:39 +00:00
|
|
|
{
|
2021-07-30 14:35:52 +00:00
|
|
|
use SoftDeletes,MsgID,UseMongo;
|
2019-04-27 13:57:39 +00:00
|
|
|
|
2021-07-30 14:35:52 +00:00
|
|
|
protected $dates = ['datetime'];
|
|
|
|
|
|
|
|
/* RELATIONS */
|
2019-04-27 13:57:39 +00:00
|
|
|
|
2021-07-30 14:35:52 +00:00
|
|
|
public function fftn()
|
2019-04-27 13:57:39 +00:00
|
|
|
{
|
2021-07-30 14:35:52 +00:00
|
|
|
return $this
|
|
|
|
->setConnection('pgsql')
|
|
|
|
->belongsTo(Address::class)
|
|
|
|
->withTrashed();
|
2019-04-27 13:57:39 +00:00
|
|
|
}
|
|
|
|
|
2021-07-30 14:35:52 +00:00
|
|
|
/* METHODS */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return this model as a packet
|
|
|
|
*/
|
|
|
|
public function packet(Address $ao): Message
|
2019-04-27 13:57:39 +00:00
|
|
|
{
|
2021-07-30 14:35:52 +00:00
|
|
|
// @todo Dont bundle mail to nodes that have been disabled, or addresses that have been deleted
|
|
|
|
$o = new Message;
|
|
|
|
|
|
|
|
$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;
|
|
|
|
$o->echoarea = $this->echoarea;
|
|
|
|
$o->flags = $this->flags;
|
|
|
|
|
|
|
|
$o->kludge->put('mid',$this->id);
|
|
|
|
|
|
|
|
$o->msgid = $this->msgid;
|
|
|
|
if ($this->reply)
|
|
|
|
$o->reply = $this->reply;
|
|
|
|
|
|
|
|
$o->message = $this->msg;
|
|
|
|
|
|
|
|
if ($this->tagline)
|
|
|
|
$o->tagline = $this->tagline;
|
|
|
|
|
|
|
|
if ($this->tearline)
|
|
|
|
$o->tearline = $this->tearline;
|
|
|
|
|
|
|
|
if ($this->origin)
|
|
|
|
$o->origin = $this->origin;
|
|
|
|
|
|
|
|
// @todo SEENBY
|
|
|
|
// @todo PATH
|
|
|
|
|
|
|
|
return $o;
|
2019-04-27 13:57:39 +00:00
|
|
|
}
|
|
|
|
}
|