2019-10-29 15:33:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
|
|
|
use App\Http\Requests\Admin\PlanSave;
|
|
|
|
use App\Http\Requests\Admin\PlanUpdate;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Models\Plan;
|
|
|
|
use App\Models\Order;
|
|
|
|
use App\Models\User;
|
2020-02-24 02:04:42 +08:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2019-10-29 15:33:36 +08:00
|
|
|
|
|
|
|
class PlanController extends Controller
|
|
|
|
{
|
2020-01-11 13:36:52 +08:00
|
|
|
public function fetch(Request $request)
|
|
|
|
{
|
2019-10-29 15:33:36 +08:00
|
|
|
return response([
|
|
|
|
'data' => Plan::get()
|
|
|
|
]);
|
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
|
|
|
|
public function save(PlanSave $request)
|
|
|
|
{
|
2020-02-23 02:37:52 +08:00
|
|
|
$params = $request->only(array_keys(PlanSave::RULES));
|
2019-10-29 15:33:36 +08:00
|
|
|
if ($request->input('id')) {
|
|
|
|
$plan = Plan::find($request->input('id'));
|
|
|
|
if (!$plan) {
|
|
|
|
abort(500, '该订阅不存在');
|
|
|
|
}
|
2020-02-24 02:04:42 +08:00
|
|
|
DB::beginTransaction();
|
2020-03-05 16:19:32 +08:00
|
|
|
// update user group id
|
2020-03-17 14:28:47 +08:00
|
|
|
try {
|
|
|
|
User::where('plan_id', $plan->id)->update(['group_id' => $plan->group_id]);
|
|
|
|
$plan->update($params);
|
|
|
|
} catch (\Exception $e) {
|
2020-02-24 02:04:42 +08:00
|
|
|
DB::rollBack();
|
2020-02-23 02:37:52 +08:00
|
|
|
abort(500, '保存失败');
|
|
|
|
}
|
2020-02-24 02:04:42 +08:00
|
|
|
DB::commit();
|
2020-02-23 02:37:52 +08:00
|
|
|
return response([
|
|
|
|
'data' => true
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
if (!Plan::create($params)) {
|
|
|
|
abort(500, '创建失败');
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
|
|
|
return response([
|
2020-02-23 02:37:52 +08:00
|
|
|
'data' => true
|
2019-10-29 15:33:36 +08:00
|
|
|
]);
|
|
|
|
}
|
2020-01-11 13:36:52 +08:00
|
|
|
|
|
|
|
public function drop(Request $request)
|
|
|
|
{
|
2019-10-29 15:33:36 +08:00
|
|
|
if (Order::where('plan_id', $request->input('id'))->first()) {
|
|
|
|
abort(500, '该订阅下存在订单无法删除');
|
|
|
|
}
|
|
|
|
if (User::where('plan_id', $request->input('id'))->first()) {
|
|
|
|
abort(500, '该订阅下存在用户无法删除');
|
|
|
|
}
|
|
|
|
if ($request->input('id')) {
|
|
|
|
$plan = Plan::find($request->input('id'));
|
|
|
|
if (!$plan) {
|
|
|
|
abort(500, '该订阅ID不存在');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return response([
|
|
|
|
'data' => $plan->delete()
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2020-01-11 13:36:52 +08:00
|
|
|
public function update(PlanUpdate $request)
|
|
|
|
{
|
2019-10-29 15:33:36 +08:00
|
|
|
$updateData = $request->only([
|
|
|
|
'show',
|
|
|
|
'renew'
|
|
|
|
]);
|
2020-01-11 13:36:52 +08:00
|
|
|
|
2019-10-29 15:33:36 +08:00
|
|
|
$plan = Plan::find($request->input('id'));
|
|
|
|
if (!$plan) {
|
|
|
|
abort(500, '该订阅不存在');
|
|
|
|
}
|
2020-03-17 14:28:47 +08:00
|
|
|
|
|
|
|
try {
|
|
|
|
$plan->update($updateData);
|
|
|
|
} catch (\Exception $e) {
|
2019-10-29 15:33:36 +08:00
|
|
|
abort(500, '保存失败');
|
|
|
|
}
|
|
|
|
|
|
|
|
return response([
|
|
|
|
'data' => true
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|