2FAuth/app/Notifications/SignedInWithNewDevice.php

56 lines
1.5 KiB
PHP
Raw Normal View History

2024-04-15 00:44:18 +02:00
<?php
namespace App\Notifications;
2024-04-22 14:59:20 +02:00
use App\Models\AuthenticationLog;
2024-04-15 00:44:18 +02:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Jenssegers\Agent\Agent;
class SignedInWithNewDevice extends Notification implements ShouldQueue
{
use Queueable;
public AuthenticationLog $authenticationLog;
/**
* A user agent parser instance.
*
* @var mixed
*/
protected $agent;
/**
* Create a new SignedInWithNewDevice instance
*/
2024-04-15 00:44:18 +02:00
public function __construct(AuthenticationLog $authenticationLog)
{
$this->authenticationLog = $authenticationLog;
$this->agent = new Agent();
$this->agent->setUserAgent($authenticationLog->user_agent);
}
2024-04-20 19:03:44 +02:00
public function via(mixed $notifiable) : array|string
2024-04-15 00:44:18 +02:00
{
return $notifiable->notifyAuthenticationLogVia();
}
/**
* Wrap the notification to a mail envelop
*/
2024-04-20 19:03:44 +02:00
public function toMail(mixed $notifiable) : MailMessage
2024-04-15 00:44:18 +02:00
{
return (new MailMessage())
->subject(__('notifications.new_device.subject'))
->markdown('emails.newDevice', [
'account' => $notifiable,
'time' => $this->authenticationLog->login_at,
'ipAddress' => $this->authenticationLog->ip_address,
'browser' => $this->agent->browser(),
'platform' => $this->agent->platform(),
]);
}
}