update user api
This commit is contained in:
@@ -66,6 +66,110 @@ class UserController extends AbstractController
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建用户
|
||||
*/
|
||||
#[RequestMapping(path: "", methods: "POST")]
|
||||
#[Middleware(AuthMiddleware::class)]
|
||||
public function store(): \Psr\Http\Message\ResponseInterface|array
|
||||
{
|
||||
$username = $this->request->input('username');
|
||||
$password = $this->request->input('password');
|
||||
$email = $this->request->input('email');
|
||||
$status_input = $this->request->input('status');
|
||||
|
||||
if (!is_string($username) || trim($username) === '') {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '用户名不能为空',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$username = trim($username);
|
||||
$username_length = strlen($username);
|
||||
if ($username_length < 3 || $username_length > 20) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '用户名长度需在 3-20 个字符',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if (!is_string($password) || $password === '') {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '密码不能为空',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$password_length = strlen($password);
|
||||
if ($password_length < 6 || $password_length > 32) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '密码长度需在 6-32 个字符',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if (!is_string($email) || trim($email) === '') {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '邮箱不能为空',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$email = trim($email);
|
||||
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '邮箱格式不正确',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if (strlen($email) > 100) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '邮箱长度不能超过 100 个字符',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if ($status_input === null || $status_input === '') {
|
||||
$status = 1;
|
||||
} elseif (!is_numeric($status_input) || !in_array((int) $status_input, [0, 1], true)) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => 'status 参数必须为 0 或 1',
|
||||
])->withStatus(400);
|
||||
} else {
|
||||
$status = (int) $status_input;
|
||||
}
|
||||
|
||||
if (User::query()->where('username', $username)->exists()) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '用户名已存在',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if (User::query()->where('email', $email)->exists()) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '邮箱已被注册',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$user = User::query()->create([
|
||||
'username' => $username,
|
||||
'password' => $password,
|
||||
'email' => $email,
|
||||
'status' => $status,
|
||||
]);
|
||||
|
||||
return [
|
||||
'code' => 0,
|
||||
'message' => '创建成功',
|
||||
'data' => $user,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户详情
|
||||
*
|
||||
@@ -90,4 +194,167 @@ class UserController extends AbstractController
|
||||
'data' => $user,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新用户信息
|
||||
*
|
||||
* @param int $id 用户 ID
|
||||
*/
|
||||
#[RequestMapping(path: "{id}", methods: "PUT")]
|
||||
#[Middleware(AuthMiddleware::class)]
|
||||
public function update(int $id): \Psr\Http\Message\ResponseInterface|array
|
||||
{
|
||||
$user = User::query()->find($id);
|
||||
|
||||
if (!$user) {
|
||||
return $this->response->json([
|
||||
'code' => 404,
|
||||
'message' => '用户不存在',
|
||||
])->withStatus(404);
|
||||
}
|
||||
|
||||
if ($this->request->input('password') !== null) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '更新接口不支持修改密码',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$username = $this->request->input('username');
|
||||
$email = $this->request->input('email');
|
||||
$ext = $this->request->input('ext');
|
||||
$updates = [];
|
||||
|
||||
if ($username !== null) {
|
||||
if (!is_string($username) || trim($username) === '') {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '用户名不能为空',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$username = trim($username);
|
||||
$username_length = strlen($username);
|
||||
if ($username_length < 3 || $username_length > 20) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '用户名长度需在 3-20 个字符',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if (User::query()->where('username', $username)->where('id', '!=', $user->id)->exists()) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '用户名已存在',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$updates['username'] = $username;
|
||||
}
|
||||
|
||||
if ($email !== null) {
|
||||
if (!is_string($email) || trim($email) === '') {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '邮箱不能为空',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$email = trim($email);
|
||||
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '邮箱格式不正确',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if (strlen($email) > 100) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '邮箱长度不能超过 100 个字符',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if (User::query()->where('email', $email)->where('id', '!=', $user->id)->exists()) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '邮箱已被注册',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$updates['email'] = $email;
|
||||
}
|
||||
|
||||
if ($ext !== null) {
|
||||
if (!is_array($ext)) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => 'ext 必须为对象',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$updates['ext'] = $ext;
|
||||
}
|
||||
|
||||
if ($updates === []) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '缺少可更新字段',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$user->fill($updates);
|
||||
$user->save();
|
||||
$user->refresh();
|
||||
|
||||
return [
|
||||
'code' => 0,
|
||||
'message' => '更新成功',
|
||||
'data' => $user,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新用户状态
|
||||
*
|
||||
* @param int $id 用户 ID
|
||||
*/
|
||||
#[RequestMapping(path: "{id}/status", methods: "PATCH")]
|
||||
#[Middleware(AuthMiddleware::class)]
|
||||
public function updateStatus(int $id): \Psr\Http\Message\ResponseInterface|array
|
||||
{
|
||||
$user = User::query()->find($id);
|
||||
|
||||
if (!$user) {
|
||||
return $this->response->json([
|
||||
'code' => 404,
|
||||
'message' => '用户不存在',
|
||||
])->withStatus(404);
|
||||
}
|
||||
|
||||
$status_input = $this->request->input('status');
|
||||
if ($status_input === null || $status_input === '') {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => '缺少 status 参数',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
if (!is_numeric($status_input) || !in_array((int) $status_input, [0, 1], true)) {
|
||||
return $this->response->json([
|
||||
'code' => 400,
|
||||
'message' => 'status 参数必须为 0 或 1',
|
||||
])->withStatus(400);
|
||||
}
|
||||
|
||||
$user->status = (int) $status_input;
|
||||
$user->save();
|
||||
$user->refresh();
|
||||
|
||||
return [
|
||||
'code' => 0,
|
||||
'message' => '状态更新成功',
|
||||
'data' => $user,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user