mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
74 lines
2.8 KiB
PHP
74 lines
2.8 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Think.Admin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\controller;
|
||
|
||
use app\admin\model\NodeModel;
|
||
use controller\BasicAdmin;
|
||
use service\LogService;
|
||
use think\Db;
|
||
|
||
/**
|
||
* 系统登录控制器
|
||
* class Login
|
||
* @package app\admin\controller
|
||
* @author Anyon <zoujingli@qq.com>
|
||
* @date 2017/02/10 13:59
|
||
*/
|
||
class Login extends BasicAdmin {
|
||
|
||
/**
|
||
* 控制器基础方法
|
||
*/
|
||
public function _initialize() {
|
||
if ($this->_isLogin() && $this->request->action() !== 'out') {
|
||
$this->redirect('@admin');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 用户登录
|
||
* @return string
|
||
*/
|
||
public function index() {
|
||
if ($this->request->isGet()) {
|
||
$this->assign('title', '用户登录');
|
||
return $this->fetch();
|
||
} else {
|
||
$username = $this->request->post('username', '', 'trim');
|
||
$password = $this->request->post('password', '', 'trim');
|
||
(empty($username) || strlen($username) < 4) && $this->error('登录账号长度不能少于4位有效字符!');
|
||
(empty($password) || strlen($password) < 4) && $this->error('登录密码长度不能少于4位有效字符!');
|
||
$user = Db::name('SystemUser')->where('username', $username)->find();
|
||
empty($user) && $this->error('登录账号不存在,请重新输入!');
|
||
($user['password'] !== md5($password)) && $this->error('登录密码与账号不匹配,请重新输入!');
|
||
Db::name('SystemUser')->where('id', $user['id'])->update(['login_at' => ['exp', 'now()'], 'login_num' => ['exp', 'login_num+1']]);
|
||
session('user', $user);
|
||
!empty($user['authorize']) && NodeModel::applyAuthNode();
|
||
LogService::write('登录系统', '用户登录系统成功!');
|
||
$this->success('登录成功,正在进入系统...', '@admin');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 退出登录
|
||
*/
|
||
public function out() {
|
||
LogService::write('退出系统', '用户退出系统成功!');
|
||
session('user', null);
|
||
$this->success('退出登录成功!', '@admin/login');
|
||
}
|
||
|
||
}
|