mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
4728784d1f
- Fix class styling issues and adjust UI components - Fix various minor bugs across the application - Update deployment documentation with improved instructions
132 lines
3.9 KiB
PHP
132 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V2\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Order;
|
|
use App\Models\Plan;
|
|
use App\Models\User;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class PlanController extends Controller
|
|
{
|
|
public function fetch(Request $request)
|
|
{
|
|
$plans = Plan::orderBy('sort', 'ASC')
|
|
->with([
|
|
'group:id,name'
|
|
])
|
|
->withCount('users')
|
|
->get();
|
|
|
|
return $this->success($plans);
|
|
}
|
|
|
|
public function save(Request $request)
|
|
{
|
|
$params = $request->validate([
|
|
'id' => 'nullable|integer',
|
|
'name' => 'required|string',
|
|
'content' => 'nullable|string',
|
|
'period_reset_method' => 'integer|required_if:type,0',
|
|
'transfer_enable' => 'integer|required',
|
|
'prices' => 'array|nullable',
|
|
'group_id' => 'integer|nullable',
|
|
'speed_limit' => 'integer|nullable',
|
|
'device_limit' => 'integer|nullable',
|
|
'capacity_limit' => 'integer|nullable',
|
|
]);
|
|
if ($request->input('id')) {
|
|
$plan = Plan::find($request->input('id'));
|
|
if (!$plan) {
|
|
return $this->fail([400202, '该订阅不存在']);
|
|
}
|
|
DB::beginTransaction();
|
|
// update user group id and transfer
|
|
try {
|
|
if ($request->input('force_update')) {
|
|
User::where('plan_id', $plan->id)->update([
|
|
'group_id' => $params['group_id'],
|
|
'transfer_enable' => $params['transfer_enable'] * 1073741824,
|
|
'speed_limit' => $params['speed_limit']
|
|
]);
|
|
}
|
|
$plan->update($params);
|
|
DB::commit();
|
|
return $this->success(true);
|
|
} catch (\Exception $e) {
|
|
DB::rollBack();
|
|
\Log::error($e);
|
|
return $this->fail([500, '保存失败']);
|
|
}
|
|
}
|
|
if (!Plan::create($params)) {
|
|
return $this->fail([500, '创建失败']);
|
|
}
|
|
return $this->success(true);
|
|
}
|
|
|
|
public function drop(Request $request)
|
|
{
|
|
if (Order::where('plan_id', $request->input('id'))->first()) {
|
|
return $this->fail([400201, '该订阅下存在订单无法删除']);
|
|
}
|
|
if (User::where('plan_id', $request->input('id'))->first()) {
|
|
return $this->fail([400201, '该订阅下存在用户无法删除']);
|
|
}
|
|
if ($request->input('id')) {
|
|
$plan = Plan::find($request->input('id'));
|
|
if (!$plan) {
|
|
return $this->fail([400202, '该订阅不存在']);
|
|
}
|
|
}
|
|
return $this->success($plan->delete());
|
|
}
|
|
|
|
public function update(Request $request)
|
|
{
|
|
$updateData = $request->only([
|
|
'show',
|
|
'renew',
|
|
'sell'
|
|
]);
|
|
|
|
$plan = Plan::find($request->input('id'));
|
|
if (!$plan) {
|
|
return $this->fail([400202, '该订阅不存在']);
|
|
}
|
|
|
|
try {
|
|
$plan->update($updateData);
|
|
} catch (\Exception $e) {
|
|
\Log::error($e);
|
|
return $this->fail([500, '保存失败']);
|
|
}
|
|
|
|
return $this->success(true);
|
|
}
|
|
|
|
public function sort(Request $request)
|
|
{
|
|
$params = $request->validate([
|
|
'ids' => 'required|array'
|
|
]);
|
|
|
|
try {
|
|
DB::beginTransaction();
|
|
foreach ($params['ids'] as $k => $v) {
|
|
if (!Plan::find($v)->update(['sort' => $k + 1])) {
|
|
throw new \Exception();
|
|
}
|
|
}
|
|
DB::commit();
|
|
} catch (\Exception $e) {
|
|
DB::rollBack();
|
|
\Log::error($e);
|
|
return $this->fail([500, '保存失败']);
|
|
}
|
|
return $this->success(true);
|
|
}
|
|
}
|