mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-15 04:10:51 +08:00
- feat: add plan price validation - feat: make traffic packages stackable - feat: add commission and invite info to admin order details - feat: apply email whitelist to verification code API - fix: subscription link copy compatibility for non-HTTPS - fix: resolve route editing 500 error in certain cases - refactor: restructure traffic reset logic
133 lines
3.8 KiB
PHP
133 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V2\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Admin\PlanSave;
|
|
use App\Models\Order;
|
|
use App\Models\Plan;
|
|
use App\Models\User;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class PlanController extends Controller
|
|
{
|
|
public function fetch(Request $request)
|
|
{
|
|
$plans = Plan::orderBy('sort', 'ASC')
|
|
->with([
|
|
'group:id,name'
|
|
])
|
|
->withCount([
|
|
'users',
|
|
'users as active_users_count' => function ($query) {
|
|
$query->where(function ($q) {
|
|
$q->where('expired_at', '>', time())
|
|
->orWhereNull('expired_at');
|
|
});
|
|
}
|
|
])
|
|
->get();
|
|
|
|
return $this->success($plans);
|
|
}
|
|
|
|
public function save(PlanSave $request)
|
|
{
|
|
$params = $request->validated();
|
|
|
|
if ($request->input('id')) {
|
|
$plan = Plan::find($request->input('id'));
|
|
if (!$plan) {
|
|
return $this->fail([400202, '该订阅不存在']);
|
|
}
|
|
|
|
DB::beginTransaction();
|
|
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'],
|
|
'device_limit' => $params['device_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, '该订阅下存在用户无法删除']);
|
|
}
|
|
|
|
$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);
|
|
}
|
|
}
|