您好,登錄后才能下訂單哦!
小編給大家分享一下laravel如何實現登錄時監聽事件,添加登錄用戶,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
一、執行,php artisan make:event AdminLoginEvent 命令,Laravel目錄\app\Events會生成AdminLoginEvent.php文件,
二、我們先在\app\Providers目錄下找到EventServiceProvider.php文件,該文件內有一個Events-Listeners數組來保存事件和監聽者的映射關系:
protected $listen = [ 'App\Events\AdminLoginEvent' => [ 'App\Listeners\AdminLogListener', ], ];
三、執行,php artisan event:generate 命令,Laravel\app\Listeners目錄下會生成AdminLogListener.php文件在文件里寫一些業務:
<?php namespace App\Listeners; use App\Business\AdminLogBiz; use Illuminate\Contracts\Queue\ShouldQueue; use Common; class AdminLogListener implements ShouldQueue { private $adminLogBiz; /** * Create the event listener. * UserLogListener constructor. * @param AdminLogBiz $adminLogBiz */ public function __construct(AdminLogBiz $adminLogBiz) { $this->adminLogBiz = $adminLogBiz; } /** * Handle the event. * * @param object $event * @return void */ public function handle($event) { $admin = $event->admin; $data = []; $data['admin_id'] = $admin->id; $data['admin_username'] = $admin->truename; $data['remote_ip'] = Common::getClientIP(); $data['location'] = isset($ipInfo['city']) ? $ipInfo['city'] : ''; $userName = empty($admin->truename) ? $admin->mobile : $admin->truename; $data['log_code'] = 'login'; $data['log_content'] = $userName . '用戶登陸'; $this->adminLogBiz->add($data); } }
四、觸發這個事件,在用戶登錄的地方:
use App\Events\AdminLoginEvent; /** * 登錄 * * @param Request $request * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector */ public function signin(Request $request) { $username = $request->username; $password = $request->password; if (Auth::guard('admin')->attempt(array('username' => $username, 'password' => $password))) { if (Auth::guard('admin')->user()->status) { $this->logout($request); return redirect('/admin/login')->with('error', '賬號已被鎖定'); } else { event(new AdminLoginEvent(Auth::guard('admin')->user())); return redirect('admin/index'); } } else { return redirect('admin/login')->with('error', '賬戶或密碼錯誤'); } }
這樣就完成了整個用戶登錄的監聽事件,當用戶登錄的時候表就會添加用戶登錄的信息。
以上是“laravel如何實現登錄時監聽事件,添加登錄用戶”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。