2023-07-29 03:17:36 +00:00
< ? php
namespace App\Notifications\Netmails ;
use Carbon\Carbon ;
use Illuminate\Support\Facades\Log ;
use App\Notifications\Netmails ;
2024-05-19 13:28:45 +00:00
use App\Models\ { Echomail , Netmail };
2023-07-29 03:17:36 +00:00
use App\Traits\ { MessagePath , PageTemplate };
class EchoareaNoWrite extends Netmails
{
use MessagePath , PageTemplate ;
private const LOGKEY = 'NNW' ;
2024-05-19 13:28:45 +00:00
private Echomail $mo ;
2023-07-29 03:17:36 +00:00
/**
* Send a sysop a message if they attempt to write to an area that they dont have permission .
*
2024-05-19 13:28:45 +00:00
* @ param Echomail $mo
2023-07-29 03:17:36 +00:00
*/
2024-05-19 13:28:45 +00:00
public function __construct ( Echomail $mo )
2023-07-29 03:17:36 +00:00
{
parent :: __construct ();
$this -> mo = $mo ;
}
/**
* Get the mail representation of the notification .
*
* @ param mixed $notifiable
* @ return Netmail
* @ throws \Exception
*/
2023-12-18 04:13:16 +00:00
public function toNetmail ( object $notifiable ) : Netmail
2023-07-29 03:17:36 +00:00
{
2023-12-18 04:13:16 +00:00
$o = $this -> setupNetmail ( $notifiable );
2023-07-29 03:17:36 +00:00
$ao = $notifiable -> routeNotificationFor ( static :: via );
2024-05-19 13:28:45 +00:00
Log :: info ( sprintf ( '%s:+ Creating ECHOAREA NO WRITE netmail to [%s]' , self :: LOGKEY , $ao -> ftn ));
2023-07-29 03:17:36 +00:00
2024-05-19 13:28:45 +00:00
$o -> subject = sprintf ( 'Echomail #%s rejected to %s' , $this -> mo -> msgid , $this -> mo -> echoarea -> name );
2023-07-29 03:17:36 +00:00
// Message
$msg = $this -> page ( FALSE , 'nowrite' );
$msg -> addText (
sprintf ( " Your echomail with ID [%s] to [%s] here was received here on [%s] and it looks like you sent it on [%s]. \r \r " ,
$this -> mo -> msgid ,
2024-05-19 13:28:45 +00:00
$this -> mo -> to ,
2023-07-29 03:17:36 +00:00
Carbon :: now () -> utc () -> toDateTimeString (),
$this -> mo -> date -> utc () -> toDateTimeString (),
)
);
2024-05-19 13:28:45 +00:00
$msg -> addText ( sprintf ( " It appears that you do not have permission to post in [%s] using the address [%s], so the message from your system was rejected. \r \r " , $this -> mo -> echoarea -> name , $ao -> ftn ));
2023-07-29 03:17:36 +00:00
$msg -> addText ( " Please contact the ZC if you think this is a mistake. \r \r " );
$msg -> addText ( $this -> message_path ( $this -> mo ));
$o -> msg = $msg -> render ();
2024-06-03 09:08:40 +00:00
$o -> set_tagline = 'See something wrong? Do something right.' ;
2023-07-29 03:17:36 +00:00
$o -> save ();
return $o ;
}
}