Laravel重写用户登录简单示例


Posted in PHP onOctober 08, 2016

本文实例讲述了Laravel重写用户登录的方法。分享给大家供大家参考,具体如下:

class AuthController extends Controller
{
  //
  use ThrottlesLogins, AuthenticatesAndRegistersUsers;
  protected $redirectTo = 'admin/index';
  protected $loginView = 'admin/login';
  protected $guard = 'admin';
  protected $redirectAfterLogout = 'admin/login';
  protected $maxLoginAttempts = 5; //每分钟最大尝试登录次数
  protected $lockoutTime = 600; //登录锁定时间
  function __construct()
  {
    $this->middleware('guest:admin', ['except' => 'logout']);
  }
  protected function validator(array $data)
  {
    return Validator::make($data, [
      'username' => 'required|max:255',
      'email' => 'required|email|max:255|unique:admin_users',
      'password' => 'required|confirmed|min:6',
    ]);
  }
  /**
   * @param Request $request
   */
  protected function validateLogin(Request $request)
  {
    $this->validate($request,[
      $this->loginUsername() => 'required',
      'password' => 'required',
      'captcha' => 'required|captcha'
    ], [
      'email.required' => '邮箱必须',
      'password.required' => '密码必须',
      'captcha.captcha' => '验证码错误',
      'captcha.required' => '验证码必须',
    ]);
  }
  /**
   * 重写登录
   * @param Request $request
   * @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\Response
   */
  public function login(Request $request)
  {
    $this->validateLogin($request);
    // If the class is using the ThrottlesLogins trait, we can automatically throttle
    // the login attempts for this application. We'll key this by the username and
    // the IP address of the client making these requests into this application.
    $throttles = $this->isUsingThrottlesLoginsTrait();
    //dd($this->hasTooManyLoginAttempts($request));
    if ($throttles && $lockedOut = $this->hasTooManyLoginAttempts($request)) {
      $this->fireLockoutEvent($request);
      //日志记录
      $this->login_logs(['email'=>$request->input('email'), 'login_ip'=>$request->ip(), 'login_result'=>0, 'comments'=>'限制登录10分钟']);
      return $this->sendLockoutResponse($request);
    }
    $credentials = $this->getCredentials($request);
    if (Auth::guard($this->getGuard())->attempt($credentials, $request->has('remember'))) {
      //日志记录
      $this->login_logs(['email'=>$request->input('email'), 'login_ip'=>$request->ip(), 'login_result'=>1, 'comments'=>'登录成功']);
      return $this->handleUserWasAuthenticated($request, $throttles);
    }
    // If the login attempt was unsuccessful we will increment the number of attempts
    // to login and redirect the user back to the login form. Of course, when this
    // user surpasses their maximum number of attempts they will get locked out.
    if ($throttles && ! $lockedOut) {
      //日志记录
      $this->login_logs(['email'=>$request->input('email'), 'login_ip'=>$request->ip(), 'login_result'=>0, 'comments'=>'登录失败']);
      $this->incrementLoginAttempts($request);
    }
    return $this->sendFailedLoginResponse($request);
  }
  /**
   * 登录记录
   * @param $data
   */
  private function login_logs ($data)
  {
    LoginLog::create($data);
  }
}

直接重写login方法,其实我是复制了原方法然后加入了一些自己的东西。

主要的一些修改就是:

1. 加入验证码(自定义了验证信息及提示)。

2. 后台登录频率的限制。

3. 登录日志记录。

希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。

PHP 相关文章推荐
让你的网站首页自动选择语言转跳
Dec 06 PHP
php下载文件的代码示例
Jun 29 PHP
关于查看MSSQL 数据库 用户每个表 占用的空间大小
Jun 21 PHP
php中动态变量用法实例
Jun 10 PHP
PHP常用技巧汇总
Mar 04 PHP
YII Framework框架教程之使用YIIC快速创建YII应用详解
Mar 15 PHP
thinkPHP3.1验证码的简单实现方法
Apr 22 PHP
thinkphp隐藏index.php/home并允许访问其他模块的实现方法
Oct 13 PHP
PHP实现的回溯算法示例
Aug 15 PHP
php strftime函数的详细用法
Jun 21 PHP
YII框架常用技巧总结
Apr 27 PHP
PHP中关于php.ini参数优化详解
Feb 28 PHP
Laravel使用memcached缓存对文章增删改查进行优化的方法
Oct 08 #PHP
PHP  实现等比压缩图片尺寸和大小实例代码
Oct 08 #PHP
Laravel Memcached缓存驱动的配置与应用方法分析
Oct 08 #PHP
yii通过小物件生成view的方法
Oct 08 #PHP
php获取服务器操作系统相关信息的方法
Oct 08 #PHP
Yii2创建多界面主题(Theme)的方法
Oct 08 #PHP
php微信开发之自定义菜单完整流程
Oct 08 #PHP
You might like
Linux中用PHP判断程序运行状态的2个方法
2014/05/04 PHP
使用array_map简单搞定PHP删除文件、删除目录
2014/10/29 PHP
yii框架redis结合php实现秒杀效果(实例代码)
2017/10/26 PHP
PHP实现从PostgreSQL数据库检索数据分页显示及根据条件查找数据示例
2018/06/09 PHP
Thinkphp 框架基础之入口文件功能、定义与用法分析
2020/04/27 PHP
JS加ASP二级域名转向的代码
2007/05/17 Javascript
基于jQuery判断两个元素是否有重叠部分的代码
2012/07/25 Javascript
jquery垂直公告滚动实现代码
2013/12/08 Javascript
javascript中不等于的代码是什么怎么写
2013/12/29 Javascript
两个多选select(multiple左右)添加、删除选项和取值实例
2014/05/12 Javascript
Express.JS使用详解
2014/07/17 Javascript
使用documentElement正确取得当前可见区域的大小
2014/07/25 Javascript
JavaScript的MVVM库Vue.js入门学习笔记
2016/05/03 Javascript
React实现双向绑定示例代码
2016/09/19 Javascript
vue.js全局API之nextTick全面解析
2017/07/07 Javascript
微信小程序三级联动地址选择器的实例代码
2017/07/12 Javascript
使用pkg打包Node.js应用的方法步骤
2018/10/19 Javascript
vue模仿网易云音乐的单页面应用
2019/04/24 Javascript
JS操作字符串转数字的常见方法示例
2019/10/29 Javascript
Python和perl实现批量对目录下电子书文件重命名的代码分享
2014/11/21 Python
Python入门_条件控制(详解)
2017/05/16 Python
python2.6.6如何升级到python2.7.14
2018/04/08 Python
python自动化报告的输出用例详解
2018/05/30 Python
python linecache 处理固定格式文本数据的方法
2019/01/08 Python
python文字和unicode/ascll相互转换函数及简单加密解密实现代码
2019/08/12 Python
Python socket处理client连接过程解析
2020/03/18 Python
Python如何生成xml文件
2020/06/04 Python
升级keras解决load_weights()中的未定义skip_mismatch关键字问题
2020/06/12 Python
python爬虫基础之urllib的使用
2020/12/31 Python
SmartBuyGlasses德国:购买太阳镜和眼镜
2019/08/20 全球购物
北京-环亚运商测试题.net程序员初步测试题
2013/05/28 面试题
幼师求职自荐信
2014/05/31 职场文书
2014年乡镇个人工作总结
2014/12/03 职场文书
党员廉政准则心得体会
2016/01/20 职场文书
2019七夕节祝福语36句,快来收藏吧
2019/08/06 职场文书
Nginx如何获取自定义请求header头和URL参数详解
2022/07/23 Servers