mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
165 lines
4.8 KiB
PHP
165 lines
4.8 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | framework
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://framework.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/framework
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\controller;
|
||
|
||
use library\Controller;
|
||
use library\tools\Data;
|
||
use think\Db;
|
||
|
||
/**
|
||
* 系统用户管理
|
||
* Class User
|
||
* @package app\admin\controller
|
||
* @author Anyon <zoujingli@qq.com>
|
||
* @date 2017/02/15 18:12
|
||
*/
|
||
class User extends Controller
|
||
{
|
||
|
||
/**
|
||
* 指定当前数据表
|
||
* @var string
|
||
*/
|
||
public $table = 'SystemUser';
|
||
|
||
/**
|
||
* 系统用户管理
|
||
* @throws \think\Exception
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
* @throws \think\exception\PDOException
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->title = '系统用户管理';
|
||
$query = $this->_query($this->table)->like('username,phone,mail')->dateBetween('login_at');
|
||
$query->equal('status')->where(['is_deleted' => '0'])->order('id desc')->page();
|
||
}
|
||
|
||
/**
|
||
* 用户授权管理
|
||
* @return mixed
|
||
*/
|
||
public function auth()
|
||
{
|
||
$this->applyCsrfToken();
|
||
$this->_form($this->table, 'auth');
|
||
}
|
||
|
||
/**
|
||
* 添加系统用户
|
||
* @return mixed
|
||
*/
|
||
public function add()
|
||
{
|
||
$this->applyCsrfToken();
|
||
$this->_form($this->table, 'form');
|
||
}
|
||
|
||
/**
|
||
* 编辑系统用户
|
||
* @return mixed
|
||
*/
|
||
public function edit()
|
||
{
|
||
$this->applyCsrfToken();
|
||
$this->_form($this->table, 'form');
|
||
}
|
||
|
||
/**
|
||
* 修改用户密码
|
||
* @return mixed
|
||
* @throws \think\Exception
|
||
* @throws \think\exception\PDOException
|
||
*/
|
||
public function pass()
|
||
{
|
||
$this->applyCsrfToken();
|
||
if ($this->request->isGet()) {
|
||
$this->verify = false;
|
||
$this->_form($this->table, 'pass');
|
||
} else {
|
||
$post = $this->request->post();
|
||
if ($post['password'] !== $post['repassword']) {
|
||
$this->error('两次输入的密码不一致!');
|
||
}
|
||
$result = \app\admin\service\Auth::checkPassword($post['password']);
|
||
if (empty($result['code'])) $this->error($result['msg']);
|
||
$data = ['id' => $post['id'], 'password' => md5($post['password'])];
|
||
if (Data::save($this->table, $data, 'id')) {
|
||
$this->success('密码修改成功,下次请使用新密码登录!', '');
|
||
} else {
|
||
$this->error('密码修改失败,请稍候再试!');
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 表单数据处理
|
||
* @param array $data
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
*/
|
||
public function _form_filter(&$data)
|
||
{
|
||
if ($this->request->isPost()) {
|
||
$data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
|
||
if (isset($data['id'])) unset($data['username']);
|
||
elseif (Db::name($this->table)->where(['username' => $data['username']])->count() > 0) {
|
||
$this->error('用户账号已经存在,请使用其它账号!');
|
||
}
|
||
} else {
|
||
$data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
|
||
$this->assign('authorizes', Db::name('SystemAuth')->where(['status' => '1'])->select());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 禁用系统用户
|
||
*/
|
||
public function forbid()
|
||
{
|
||
if (in_array('10000', explode(',', $this->request->post('id')))) {
|
||
$this->error('系统超级账号禁止操作!');
|
||
}
|
||
$this->applyCsrfToken();
|
||
$this->_save($this->table, ['status' => '0']);
|
||
}
|
||
|
||
/**
|
||
* 启用系统用户
|
||
*/
|
||
public function resume()
|
||
{
|
||
$this->applyCsrfToken();
|
||
$this->_save($this->table, ['status' => '1']);
|
||
}
|
||
|
||
/**
|
||
* 删除系统用户
|
||
*/
|
||
public function del()
|
||
{
|
||
if (in_array('10000', explode(',', $this->request->post('id')))) {
|
||
$this->error('系统超级账号禁止删除!');
|
||
}
|
||
$this->applyCsrfToken();
|
||
$this->_delete($this->table);
|
||
}
|
||
|
||
}
|