156 lines
4.2 KiB
PHP
156 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller\user;
|
|
|
|
use Throwable;
|
|
use app\common\controller\Backend;
|
|
use app\admin\model\User as UserModel;
|
|
|
|
class User extends Backend
|
|
{
|
|
/**
|
|
* @var object
|
|
* @phpstan-var UserModel
|
|
*/
|
|
protected object $model;
|
|
|
|
protected array $withJoinTable = ['userGroup'];
|
|
|
|
// 排除字段
|
|
protected string|array $preExcludeFields = ['last_login_time', 'login_failure', 'password', 'salt'];
|
|
|
|
protected string|array $quickSearchField = ['username', 'nickname', 'id'];
|
|
|
|
public function initialize(): void
|
|
{
|
|
parent::initialize();
|
|
$this->model = new UserModel();
|
|
}
|
|
|
|
/**
|
|
* 查看
|
|
* @throws Throwable
|
|
*/
|
|
public function index(): void
|
|
{
|
|
if ($this->request->param('select')) {
|
|
$this->select();
|
|
}
|
|
|
|
list($where, $alias, $limit, $order) = $this->queryBuilder();
|
|
$res = $this->model
|
|
->withoutField('password,salt')
|
|
->withJoin($this->withJoinTable, $this->withJoinType)
|
|
->alias($alias)
|
|
->where($where)
|
|
->order($order)
|
|
->paginate($limit);
|
|
|
|
$this->success('', [
|
|
'list' => $res->items(),
|
|
'total' => $res->total(),
|
|
'remark' => get_route_remark(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 添加
|
|
* @throws Throwable
|
|
*/
|
|
public function add(): void
|
|
{
|
|
if ($this->request->isPost()) {
|
|
$data = $this->request->post();
|
|
if (!$data) {
|
|
$this->error(__('Parameter %s can not be empty', ['']));
|
|
}
|
|
|
|
$result = false;
|
|
$passwd = $data['password']; // 密码将被排除不直接入库
|
|
$data = $this->excludeFields($data);
|
|
|
|
$this->model->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);
|
|
}
|
|
}
|
|
$result = $this->model->save($data);
|
|
$this->model->commit();
|
|
|
|
if (!empty($passwd)) {
|
|
$this->model->resetPassword($this->model->id, $passwd);
|
|
}
|
|
} catch (Throwable $e) {
|
|
$this->model->rollback();
|
|
$this->error($e->getMessage());
|
|
}
|
|
if ($result !== false) {
|
|
$this->success(__('Added successfully'));
|
|
} else {
|
|
$this->error(__('No rows were added'));
|
|
}
|
|
}
|
|
|
|
$this->error(__('Parameter error'));
|
|
}
|
|
|
|
/**
|
|
* 编辑
|
|
* @throws Throwable
|
|
*/
|
|
public function edit(): void
|
|
{
|
|
$pk = $this->model->getPk();
|
|
$id = $this->request->param($pk);
|
|
$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();
|
|
}
|
|
|
|
unset($row->salt);
|
|
$row->password = '';
|
|
$this->success('', [
|
|
'row' => $row
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 重写select
|
|
* @throws Throwable
|
|
*/
|
|
public function select(): void
|
|
{
|
|
list($where, $alias, $limit, $order) = $this->queryBuilder();
|
|
$res = $this->model
|
|
->withoutField('password,salt')
|
|
->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(),
|
|
]);
|
|
}
|
|
} |