snipe-it/app/Listeners/LogSuccessfulLogin.php

46 lines
947 B
PHP
Raw Normal View History

2018-07-16 23:49:08 -07:00
<?php
namespace App\Listeners;
use Carbon\Carbon;
use Illuminate\Support\Facades\DB;
use Illuminate\Auth\Events\Login;
use Illuminate\Support\Facades\Log;
2018-07-16 23:49:08 -07:00
class LogSuccessfulLogin
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param Login $event
* @return void
*/
public function handle(Login $event)
{
$now = new Carbon();
try {
DB::table('login_attempts')->insert(
[
'username' => $event->user->username,
'user_agent' => request()->header('User-Agent'),
'remote_ip' => request()->ip(),
'successful' => 1,
2018-07-17 01:03:32 -07:00
'created_at' => $now,
2018-07-16 23:49:08 -07:00
]
);
} catch (\Exception $e) {
Log::debug($e);
2018-07-16 23:49:08 -07:00
}
}
}