feat(auth): harden authentication and add configurable two-factor support
This commit is contained in:
39
app/Notifications/TwoFactorSecurityNotification.php
Normal file
39
app/Notifications/TwoFactorSecurityNotification.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace App\Notifications;
|
||||
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Notifications\Messages\MailMessage;
|
||||
use Illuminate\Notifications\Notification;
|
||||
|
||||
class TwoFactorSecurityNotification extends Notification implements ShouldQueue
|
||||
{
|
||||
use Queueable;
|
||||
|
||||
public function __construct(
|
||||
public readonly string $activity,
|
||||
public readonly string $ipAddress,
|
||||
public readonly string $occurredAt
|
||||
) {}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function via(object $notifiable): array
|
||||
{
|
||||
return ['mail'];
|
||||
}
|
||||
|
||||
public function toMail(object $notifiable): MailMessage
|
||||
{
|
||||
return (new MailMessage)
|
||||
->subject('Two-factor authentication security notice')
|
||||
->greeting('Hello '.$notifiable->first_name.',')
|
||||
->line($this->activity)
|
||||
->line("Time: {$this->occurredAt}")
|
||||
->line("IP address: {$this->ipAddress}")
|
||||
->line('If you did not perform this action, change your password and contact support immediately.')
|
||||
->action('Review account security', url('/profile'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user