mirror of
https://github.com/v2board/v2board.git
synced 2025-06-27 04:39:56 +08:00
update
This commit is contained in:
@ -63,29 +63,20 @@ class PlanController extends Controller
|
||||
]);
|
||||
}
|
||||
|
||||
public function show (Request $request) {
|
||||
$plan = Plan::find($request->input('id'));
|
||||
if (!$plan) {
|
||||
abort(500, '该订阅不存在');
|
||||
}
|
||||
$plan->show = $plan->show ? 0 : 1;
|
||||
if (!$plan->save()) {
|
||||
abort(500, '更改失败');
|
||||
}
|
||||
return response([
|
||||
'data' => true
|
||||
public function update (Request $request) {
|
||||
$updateData = $request->only([
|
||||
'show',
|
||||
'renew'
|
||||
]);
|
||||
}
|
||||
|
||||
public function renew (Request $request) {
|
||||
|
||||
$plan = Plan::find($request->input('id'));
|
||||
if (!$plan) {
|
||||
abort(500, '该订阅不存在');
|
||||
}
|
||||
$plan->renew = $plan->renew ? 0 : 1;
|
||||
if (!$plan->save()) {
|
||||
abort(500, '更改失败');
|
||||
if (!$plan->update($updateData)) {
|
||||
abort(500, '保存失败');
|
||||
}
|
||||
|
||||
return response([
|
||||
'data' => true
|
||||
]);
|
||||
|
@ -26,7 +26,7 @@ class UserController extends Controller
|
||||
}
|
||||
|
||||
public function update (UserUpdate $request) {
|
||||
$fetchData = $request->only([
|
||||
$updateData = $request->only([
|
||||
'email',
|
||||
'password',
|
||||
'transfer_enable',
|
||||
@ -38,16 +38,16 @@ class UserController extends Controller
|
||||
if (!$user) {
|
||||
abort(500, '用户不存在');
|
||||
}
|
||||
if (User::where('email', $fetchData['email'])->first() && $user->email !== $fetchData['email']) {
|
||||
if (User::where('email', $update['email'])->first() && $user->email !== $updateData['email']) {
|
||||
abort(500, '邮箱已被使用');
|
||||
}
|
||||
if ($fetchData['password']) {
|
||||
$fetchData['password'] = password_hash($fetchData['password'], PASSWORD_DEFAULT);
|
||||
if ($updateData['password']) {
|
||||
$updateData['password'] = password_hash($updateData['password'], PASSWORD_DEFAULT);
|
||||
} else {
|
||||
unset($fetchData['password']);
|
||||
unset($updateData['password']);
|
||||
}
|
||||
$fetchData['transfer_enable'] = $fetchData['transfer_enable'] * 1073741824;
|
||||
if (!$user->update($fetchData)) {
|
||||
$updateData['transfer_enable'] = $updateData['transfer_enable'] * 1073741824;
|
||||
if (!$user->update($updateData)) {
|
||||
abort(500, '保存失败');
|
||||
}
|
||||
return response([
|
||||
|
Reference in New Issue
Block a user