2023-11-17 01:44:01 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\V1\User;
|
|
|
|
|
2023-12-04 07:40:49 -05:00
|
|
|
use App\Exceptions\ApiException;
|
2023-11-17 01:44:01 -05:00
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Models\Plan;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Services\PlanService;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class PlanController extends Controller
|
|
|
|
{
|
|
|
|
public function fetch(Request $request)
|
|
|
|
{
|
|
|
|
$user = User::find($request->user['id']);
|
|
|
|
if ($request->input('id')) {
|
|
|
|
$plan = Plan::where('id', $request->input('id'))->first();
|
|
|
|
if (!$plan) {
|
2023-12-06 15:01:32 -05:00
|
|
|
return $this->fail([400, __('Subscription plan does not exist')]);
|
2023-11-17 01:44:01 -05:00
|
|
|
}
|
|
|
|
if ((!$plan->show && !$plan->renew) || (!$plan->show && $user->plan_id !== $plan->id)) {
|
2023-12-06 15:01:32 -05:00
|
|
|
return $this->fail([400, __('Subscription plan does not exist')]);
|
2023-11-17 01:44:01 -05:00
|
|
|
}
|
2023-12-06 15:01:32 -05:00
|
|
|
return $this->success($plan);
|
2023-11-17 01:44:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$counts = PlanService::countActiveUsers();
|
|
|
|
$plans = Plan::where('show', 1)
|
|
|
|
->orderBy('sort', 'ASC')
|
|
|
|
->get();
|
|
|
|
foreach ($plans as $k => $v) {
|
|
|
|
if ($plans[$k]->capacity_limit === NULL) continue;
|
|
|
|
if (!isset($counts[$plans[$k]->id])) continue;
|
|
|
|
$plans[$k]->capacity_limit = $plans[$k]->capacity_limit - $counts[$plans[$k]->id]->count;
|
|
|
|
}
|
2023-12-06 15:01:32 -05:00
|
|
|
return $this->success($plans);
|
2023-11-17 01:44:01 -05:00
|
|
|
}
|
|
|
|
}
|