2023-07-15 12:10:05 +00:00
|
|
|
@php
|
|
|
|
use App\Classes\FTN\Message;
|
|
|
|
@endphp
|
|
|
|
|
2021-08-29 01:48:27 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-4">
|
2023-07-15 12:10:05 +00:00
|
|
|
TO: <strong class="highlight">{!! Message::tr($msg->to) !!}</strong> @if ($msg instanceof \App\Models\Netmail)(<strong class="highlight">{{ $msg->tftn->ftn }}</strong>)@endif
|
2021-08-29 01:48:27 +00:00
|
|
|
</div>
|
|
|
|
<div class="col-4">
|
2022-01-01 05:59:35 +00:00
|
|
|
DATE: <strong class="highlight">{{ $msg->datetime->format('Y-m-d H:i:s') }}</strong>
|
2021-08-29 01:48:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-01-01 05:59:35 +00:00
|
|
|
<div class="row pt-1">
|
2021-08-29 01:48:27 +00:00
|
|
|
<div class="col-4">
|
2023-07-15 12:10:05 +00:00
|
|
|
FROM: <strong class="highlight">{!! Message::tr($msg->from) !!}</strong> (<strong class="highlight">{{ $msg->fftn->ftn }}</strong>)
|
2021-08-29 01:48:27 +00:00
|
|
|
</div>
|
|
|
|
<div class="col-4">
|
2022-01-01 05:59:35 +00:00
|
|
|
MSGID: <strong class="highlight">{{ $msg->msgid }}</strong>@if($x=\App\Models\Echomail::where('replyid',$msg->msgid)->count()) (<strong class="highlight">{{$x}}</strong> replies)@endif @if($msg->replyid)<br>REPLY: <strong class="highlight">{{ $msg->replyid }}</strong>@endif
|
2021-08-29 01:48:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-01-01 05:59:35 +00:00
|
|
|
<div class="row pt-1 pb-2">
|
2022-02-11 23:21:46 +00:00
|
|
|
<div class="col-4">
|
2023-07-15 12:10:05 +00:00
|
|
|
SUBJECT: <strong class="highlight">{!! Message::tr($msg->subject) !!}</strong>
|
2021-08-29 01:48:27 +00:00
|
|
|
</div>
|
2022-02-11 23:21:46 +00:00
|
|
|
@if ($msg instanceof \App\Models\Echomail)
|
|
|
|
<div class="col-4">
|
|
|
|
ECHOAREA: <strong class="highlight">{{ $msg->echoarea->name }}</strong> (<strong class="highlight">{{ $msg->echoarea->domain->name }}</strong>)
|
|
|
|
</div>
|
|
|
|
@endif
|
2021-08-29 01:48:27 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row pb-2">
|
|
|
|
<div class="col-8">
|
2023-12-19 04:16:10 +00:00
|
|
|
<div class="p-2">
|
|
|
|
<div id="canvas"></div>
|
2021-08-29 01:48:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-06-18 13:33:26 +00:00
|
|
|
@if ($msg instanceof \App\Models\Echomail)
|
|
|
|
<div class="row pb-2">
|
|
|
|
<div class="col-8">
|
2023-11-26 22:00:32 +00:00
|
|
|
SEENBY: <br><strong class="highlight">{!! $msg->seenby->pluck('ftn2d')->join('</strong>, <strong class="highlight">') !!}</strong>
|
2023-06-18 13:33:26 +00:00
|
|
|
</div>
|
2023-11-22 02:14:21 +00:00
|
|
|
|
|
|
|
@if ($msg->rogue_seenby->count())
|
|
|
|
<br><small>[<strong>NOTE</strong>: Some seen-by values couldnt be identified - ({{ $msg->rogue_seenby->join(',') }})]</small>
|
|
|
|
@endif
|
2021-08-29 01:48:27 +00:00
|
|
|
</div>
|
2023-06-18 13:33:26 +00:00
|
|
|
@endif
|
2021-08-29 01:48:27 +00:00
|
|
|
|
2023-07-15 12:10:05 +00:00
|
|
|
@if ($msg->flags & Message::FLAG_LOCAL)
|
2023-07-15 00:46:19 +00:00
|
|
|
<div class="row pb-2">
|
|
|
|
<div class="col-8">
|
|
|
|
<strong class="highlight">Local message</strong>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-07-15 12:10:05 +00:00
|
|
|
@elseif ((! $msg->flags) || ($msg->flags & (Message::FLAG_INTRANSIT|Message::FLAG_RECD)))
|
|
|
|
<!-- @todo for the nodes we export to, highlight those that we have actually sent it, vs those that havent received it yet -->
|
2023-07-15 00:46:19 +00:00
|
|
|
<div class="row pb-2">
|
|
|
|
<div class="col-8">
|
2023-11-26 22:00:32 +00:00
|
|
|
PATH: <br><strong class="highlight">{!! $msg->pathorder()->join('</strong> -> <strong class="highlight">') !!}</strong>
|
2023-11-22 02:14:21 +00:00
|
|
|
|
2023-11-23 10:55:39 +00:00
|
|
|
@if (($msg instanceof \App\Models\Echomail) && $msg->rogue_path->count())
|
2023-11-22 02:14:21 +00:00
|
|
|
<br><small>[<strong>NOTE</strong>: Some path values couldnt be identified - ({{ $msg->rogue_path->join(',') }})]</small>
|
|
|
|
@endif
|
2023-07-15 00:46:19 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-11-22 02:35:37 +00:00
|
|
|
<div class="row pb-2">
|
|
|
|
<div class="col-8">
|
|
|
|
RECEIVED:<br>
|
|
|
|
@if ($msg instanceof \App\Models\Netmail)
|
2023-07-15 12:10:05 +00:00
|
|
|
@foreach ($msg->received as $path)
|
2023-11-22 02:35:37 +00:00
|
|
|
<strong class="highlight">{{ $path->pivot->recv_pkt }}</strong> from <strong class="highlight">{{ $path->ftn }}</strong> {{ $msg->created_at }}
|
2023-07-15 12:10:05 +00:00
|
|
|
@endforeach
|
2023-11-22 02:35:37 +00:00
|
|
|
@elseif ($msg instanceof \App\Models\Echomail)
|
|
|
|
<strong class="highlight">{{ ($x=$msg->path->sortBy('pivot.parent_id')->last())->pivot->recv_pkt }}</strong> from <strong class="highlight">{{ $x->ftn }}</strong> {{ $x->pivot->recv_at }}
|
|
|
|
@endif
|
2023-07-15 00:46:19 +00:00
|
|
|
</div>
|
2023-11-22 02:35:37 +00:00
|
|
|
</div>
|
2023-12-19 04:16:10 +00:00
|
|
|
@endif
|
|
|
|
|
|
|
|
@section('page-scripts')
|
|
|
|
<script type="text/javascript" src="{{ asset('ansilove/ansilove.js') }}"></script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
var msg = new Uint8Array({!! json_encode(array_values(unpack('C*',str_replace("\r","\n",$msg->msg)))) !!});
|
|
|
|
retina = window.devicePixelRatio > 1;
|
|
|
|
|
|
|
|
AnsiLove.renderBytes(
|
|
|
|
msg,
|
|
|
|
function (canvas, sauce) {
|
|
|
|
console.log(canvas);
|
|
|
|
document.getElementById("canvas").appendChild(canvas);
|
|
|
|
},
|
|
|
|
{'font': '80x25', 'bits': 8, 'icecolors': 0, 'columns': 80}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
@append
|