mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
152 lines
5.0 KiB
PHP
152 lines
5.0 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://demo.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\controller;
|
||
|
||
use think\admin\Controller;
|
||
use think\admin\extend\DataExtend;
|
||
|
||
/**
|
||
* 系统用户管理
|
||
* Class User
|
||
* @package app\admin\controller
|
||
*/
|
||
class User extends Controller
|
||
{
|
||
|
||
/**
|
||
* 绑定数据表
|
||
* @var string
|
||
*/
|
||
public $table = 'SystemUser';
|
||
|
||
/**
|
||
* 系统用户管理
|
||
* @auth true
|
||
* @menu true
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->title = '系统用户管理';
|
||
$query = $this->_query($this->table)->like('username,phone,mail')->equal('status');
|
||
$query->dateBetween('login_at,create_at')->where(['is_deleted' => '0'])->order('id desc')->page();
|
||
}
|
||
|
||
/**
|
||
* 添加系统用户
|
||
* @auth true
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function add()
|
||
{
|
||
$this->_applyFormToken();
|
||
$this->_form($this->table, 'form');
|
||
}
|
||
|
||
/**
|
||
* 编辑系统用户
|
||
* @auth true
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function edit()
|
||
{
|
||
$this->_applyFormToken();
|
||
$this->_form($this->table, 'form');
|
||
}
|
||
|
||
/**
|
||
* 修改用户密码
|
||
* @auth true
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function pass()
|
||
{
|
||
$this->_applyFormToken();
|
||
if ($this->request->isGet()) {
|
||
$this->verify = false;
|
||
$this->_form($this->table, 'pass');
|
||
} else {
|
||
$post = $this->request->post();
|
||
if ($post['password'] !== $post['repassword']) {
|
||
$this->error('两次输入的密码不一致!');
|
||
}
|
||
if (data_save($this->table, ['id' => $post['id'], 'password' => md5($post['password'])], 'id')) {
|
||
$this->success('密码修改成功,下次请使用新密码登录!', '');
|
||
} else {
|
||
$this->error('密码修改失败,请稍候再试!');
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 表单数据处理
|
||
* @param array $data
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
protected 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 ($this->app->db->name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
|
||
$this->error("账号{$data['username']}已经存在,请使用其它账号!");
|
||
}
|
||
} else {
|
||
$data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
|
||
$this->authorizes = $this->app->db->name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 修改用户状态
|
||
* @auth true
|
||
* @throws \think\db\exception\DbException
|
||
*/
|
||
public function state()
|
||
{
|
||
if (in_array('10000', explode(',', $this->request->post('id')))) {
|
||
$this->error('系统超级账号禁止操作!');
|
||
}
|
||
$this->_applyFormToken();
|
||
$this->_save($this->table, ['status' => intval(input('status'))]);
|
||
}
|
||
|
||
/**
|
||
* 删除系统用户
|
||
* @auth true
|
||
* @throws \think\db\exception\DbException
|
||
*/
|
||
public function remove()
|
||
{
|
||
if (in_array('10000', explode(',', $this->request->post('id')))) {
|
||
$this->error('系统超级账号禁止删除!');
|
||
}
|
||
$this->_applyFormToken();
|
||
$this->_delete($this->table);
|
||
}
|
||
} |