mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-23 07:40:18 +00:00
127 lines
3.7 KiB
PHP
127 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller\user;
|
|
|
|
use Exception;
|
|
use ba\Random;
|
|
use think\facade\Db;
|
|
use app\common\controller\Backend;
|
|
use app\admin\model\User as UserModel;
|
|
use app\admin\model\UserGroup;
|
|
use think\db\exception\PDOException;
|
|
use think\exception\ValidateException;
|
|
|
|
class User extends Backend
|
|
{
|
|
protected $model = null;
|
|
|
|
protected $withJoinTable = ['group'];
|
|
|
|
// 排除字段
|
|
protected $preExcludeFields = ['lastlogintime', 'loginfailure', 'password', 'salt'];
|
|
|
|
protected $quickSearchField = ['username', 'nickname', 'id'];
|
|
|
|
public function initialize()
|
|
{
|
|
parent::initialize();
|
|
$this->model = new UserModel();
|
|
}
|
|
|
|
public function add()
|
|
{
|
|
if ($this->request->isPost()) {
|
|
$data = $this->request->post();
|
|
if (!$data) {
|
|
$this->error(__('Parameter %s can not be empty', ['']));
|
|
}
|
|
|
|
$salt = Random::build('alnum', 16);
|
|
$passwd = $this->model->encryptPassword($data['password'], $salt);
|
|
|
|
$data = $this->excludeFields($data);
|
|
$result = false;
|
|
Db::startTrans();
|
|
try {
|
|
// 模型验证
|
|
if ($this->modelValidate) {
|
|
$validate = str_replace("\\model\\", "\\validate\\", get_class($this->model));
|
|
if (class_exists($validate)) {
|
|
$validate = new $validate;
|
|
if ($this->modelSceneValidate) $validate->scene('add');
|
|
$validate->check($data);
|
|
}
|
|
}
|
|
$data['salt'] = $salt;
|
|
$data['password'] = $passwd;
|
|
$result = $this->model->save($data);
|
|
Db::commit();
|
|
} catch (ValidateException $e) {
|
|
Db::rollback();
|
|
$this->error($e->getMessage());
|
|
} catch (PDOException $e) {
|
|
Db::rollback();
|
|
$this->error($e->getMessage());
|
|
} catch (Exception $e) {
|
|
Db::rollback();
|
|
$this->error($e->getMessage());
|
|
}
|
|
if ($result !== false) {
|
|
$this->success(__('Added successfully'));
|
|
} else {
|
|
$this->error(__('No rows were added'));
|
|
}
|
|
}
|
|
|
|
$this->error(__('Parameter error'));
|
|
}
|
|
|
|
public function edit($id = null)
|
|
{
|
|
$row = $this->model->find($id);
|
|
if (!$row) {
|
|
$this->error(__('Record not found'));
|
|
}
|
|
|
|
if ($this->request->isPost()) {
|
|
$password = $this->request->post('password', '');
|
|
if ($password) {
|
|
$this->model->resetPassword($id, $password);
|
|
}
|
|
parent::edit($id);
|
|
}
|
|
|
|
unset($row->salt);
|
|
$row->password = '';
|
|
$row->group_id = $row->group_id ? UserGroup::where('id', $row->group_id)->value('name') : '';
|
|
$this->success('', [
|
|
'row' => $row
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 重写select
|
|
*/
|
|
public function select()
|
|
{
|
|
$this->request->filter(['strip_tags', 'trim']);
|
|
|
|
list($where, $alias, $limit, $order) = $this->queryBuilder();
|
|
$res = $this->model
|
|
->withJoin($this->withJoinTable, $this->withJoinType)
|
|
->alias($alias)
|
|
->where($where)
|
|
->order($order)
|
|
->paginate($limit);
|
|
|
|
foreach ($res as $re) {
|
|
$re->nickname_text = $re->username . '(ID:' . $re->id . ')';
|
|
}
|
|
|
|
$this->success('', [
|
|
'list' => $res->items(),
|
|
'total' => $res->total(),
|
|
'remark' => get_route_remark(),
|
|
]);
|
|
}
|
|
} |