149 lines
4.6 KiB
PHP
149 lines
4.6 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller\mall;
|
|
|
|
use app\common\controller\Backend;
|
|
use support\Response;
|
|
use Throwable;
|
|
use Webman\Http\Request;
|
|
|
|
/**
|
|
* 积分商城用户
|
|
*/
|
|
class Player extends Backend
|
|
{
|
|
/**
|
|
* Player模型对象
|
|
* @var object|null
|
|
* @phpstan-var \app\admin\model\mall\Player|null
|
|
*/
|
|
protected ?object $model = null;
|
|
|
|
protected array|string $preExcludeFields = ['id', 'create_time', 'update_time', 'password'];
|
|
|
|
protected string|array $quickSearchField = ['id'];
|
|
|
|
/** 列表不返回密码字段 */
|
|
protected string|array $indexField = ['id', 'username', 'create_time', 'update_time', 'score'];
|
|
|
|
public function initialize(): void
|
|
{
|
|
parent::initialize();
|
|
$this->model = new \app\admin\model\mall\Player();
|
|
}
|
|
|
|
/**
|
|
* 添加(重写以支持密码加密)
|
|
*/
|
|
public function add(Request $request): Response
|
|
{
|
|
$response = $this->initializeBackend($request);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
if ($request->method() !== 'POST') {
|
|
$this->error(__('Parameter error'));
|
|
}
|
|
|
|
$data = $request->post();
|
|
if (!$data) {
|
|
$this->error(__('Parameter %s can not be empty', ['']));
|
|
}
|
|
|
|
$passwd = $data['password'] ?? '';
|
|
if (empty($passwd)) {
|
|
$this->error(__('Parameter %s can not be empty', [__('Password')]));
|
|
}
|
|
|
|
$data = $this->applyInputFilter($data);
|
|
$data = $this->excludeFields($data);
|
|
|
|
$result = false;
|
|
$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);
|
|
if ($result !== false && $passwd) {
|
|
$this->model->resetPassword((int) $this->model->id, $passwd);
|
|
}
|
|
$this->model->commit();
|
|
} catch (Throwable $e) {
|
|
$this->model->rollback();
|
|
$this->error($e->getMessage());
|
|
}
|
|
|
|
$result !== false ? $this->success(__('Added successfully')) : $this->error(__('No rows were added'));
|
|
}
|
|
|
|
/**
|
|
* 编辑(重写以支持编辑时密码可选)
|
|
*/
|
|
public function edit(Request $request): Response
|
|
{
|
|
$response = $this->initializeBackend($request);
|
|
if ($response instanceof Response) {
|
|
return $response;
|
|
}
|
|
|
|
$pk = $this->model->getPk();
|
|
$id = $request->post($pk) ?? $request->get($pk);
|
|
$row = $this->model->find($id);
|
|
if (!$row) {
|
|
$this->error(__('Record not found'));
|
|
}
|
|
|
|
if ($request->method() === 'POST') {
|
|
$data = $request->post();
|
|
if (!$data) {
|
|
$this->error(__('Parameter %s can not be empty', ['']));
|
|
}
|
|
|
|
if (!empty($data['password'])) {
|
|
$this->model->resetPassword((int) $row->id, $data['password']);
|
|
}
|
|
|
|
$data = $this->applyInputFilter($data);
|
|
$data = $this->excludeFields($data);
|
|
|
|
$result = false;
|
|
$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('edit');
|
|
}
|
|
$validate->check(array_merge($data, [$pk => $row[$pk]]));
|
|
}
|
|
}
|
|
$result = $row->save($data);
|
|
$this->model->commit();
|
|
} catch (Throwable $e) {
|
|
$this->model->rollback();
|
|
$this->error($e->getMessage());
|
|
}
|
|
|
|
return $result !== false ? $this->success(__('Update successful')) : $this->error(__('No rows updated'));
|
|
}
|
|
|
|
unset($row['password']);
|
|
$row['password'] = '';
|
|
$this->success('', ['row' => $row]);
|
|
}
|
|
|
|
/**
|
|
* 若需重写查看、删除等方法,请复制 @see \app\admin\library\traits\Backend 中对应的方法至此进行重写
|
|
*/
|
|
} |