phpvms/app/Http/Controllers/Api/UserController.php

182 lines
4.8 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers\Api;
2018-02-28 03:11:48 +08:00
use App\Http\Resources\Bid as BidResource;
2018-02-21 12:33:09 +08:00
use App\Http\Resources\Pirep as PirepResource;
use App\Http\Resources\Subfleet as SubfleetResource;
use App\Http\Resources\User as UserResource;
use App\Interfaces\Controller;
2018-02-28 03:25:32 +08:00
use App\Models\Bid;
use App\Models\Enums\PirepState;
2018-02-20 00:35:49 +08:00
use App\Repositories\Criteria\WhereCriteria;
use App\Repositories\FlightRepository;
2018-02-20 00:35:49 +08:00
use App\Repositories\PirepRepository;
use App\Repositories\SubfleetRepository;
2018-02-21 12:33:09 +08:00
use App\Repositories\UserRepository;
use App\Services\FlightService;
use App\Services\UserService;
2018-01-03 04:37:52 +08:00
use Auth;
use Illuminate\Http\Request;
2018-02-20 00:35:49 +08:00
use Prettus\Repository\Criteria\RequestCriteria;
use Prettus\Repository\Exceptions\RepositoryException;
/**
* Class UserController
*/
class UserController extends Controller
{
2018-08-27 00:40:04 +08:00
private $flightRepo;
private $flightSvc;
private $pirepRepo;
private $userRepo;
private $userSvc;
2018-02-21 12:33:09 +08:00
/**
* UserController constructor.
2018-08-27 00:40:04 +08:00
*
* @param FlightRepository $flightRepo
* @param FlightService $flightSvc
* @param PirepRepository $pirepRepo
* @param UserRepository $userRepo
* @param UserService $userSvc
2018-02-21 12:33:09 +08:00
*/
public function __construct(
FlightRepository $flightRepo,
FlightService $flightSvc,
2018-02-20 00:35:49 +08:00
PirepRepository $pirepRepo,
UserRepository $userRepo,
UserService $userSvc
) {
$this->flightRepo = $flightRepo;
$this->flightSvc = $flightSvc;
2018-02-20 00:35:49 +08:00
$this->pirepRepo = $pirepRepo;
$this->userRepo = $userRepo;
$this->userSvc = $userSvc;
}
2018-02-20 00:35:49 +08:00
/**
* @param Request $request
2018-08-27 00:40:04 +08:00
*
2018-02-20 00:35:49 +08:00
* @return int|mixed
*/
protected function getUserId(Request $request)
{
if ($request->id === null) {
return Auth::user()->id;
}
return $request->id;
}
/**
* Return the profile for the currently auth'd user
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @param Request $request
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @return UserResource
*/
public function index(Request $request)
{
2018-01-03 04:37:52 +08:00
return new UserResource(Auth::user());
}
/**
* Get the profile for the passed-in user
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @param $id
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @return UserResource
*/
public function get($id)
{
return new UserResource($this->userRepo->find($id));
}
/**
* Return all of the bids for the passed-in user
2018-08-27 00:40:04 +08:00
*
* @param Request $request
2018-08-27 00:40:04 +08:00
*
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
* @throws \App\Exceptions\BidExists
2018-08-27 00:40:04 +08:00
*
* @return mixed
*/
public function bids(Request $request)
{
$user = $this->userRepo->find($this->getUserId($request));
2018-08-27 00:40:04 +08:00
// Add a bid
2018-03-13 14:26:27 +08:00
if ($request->isMethod('PUT') || $request->isMethod('POST')) {
$flight_id = $request->input('flight_id');
$flight = $this->flightRepo->find($flight_id);
2018-02-28 03:11:48 +08:00
$bid = $this->flightSvc->addBid($flight, $user);
2018-02-28 03:11:48 +08:00
return new BidResource($bid);
}
2018-02-28 03:11:48 +08:00
if ($request->isMethod('DELETE')) {
if ($request->filled('bid_id')) {
2018-02-28 03:25:32 +08:00
$bid = Bid::findOrFail($request->input('bid_id'));
$flight_id = $bid->flight_id;
} else {
$flight_id = $request->input('flight_id');
}
$flight = $this->flightRepo->find($flight_id);
$this->flightSvc->removeBid($flight, $user);
}
2018-08-27 00:40:04 +08:00
// Return the flights they currently have bids on
2018-02-28 03:25:32 +08:00
$bids = Bid::where(['user_id' => $user->id])->get();
2018-02-28 03:11:48 +08:00
return BidResource::collection($bids);
}
/**
* Return the fleet that this user is allowed to
2018-08-27 00:40:04 +08:00
*
* @param Request $request
2018-08-27 00:40:04 +08:00
*
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
*/
public function fleet(Request $request)
{
2018-02-20 00:35:49 +08:00
$user = $this->userRepo->find($this->getUserId($request));
$subfleets = $this->userSvc->getAllowableSubfleets($user);
return SubfleetResource::collection($subfleets);
}
2018-02-20 00:35:49 +08:00
/**
* @param Request $request
2018-08-27 00:40:04 +08:00
*
2018-02-20 00:35:49 +08:00
* @throws RepositoryException
2018-08-27 00:40:04 +08:00
*
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
2018-02-20 00:35:49 +08:00
*/
public function pireps(Request $request)
{
$this->pirepRepo->pushCriteria(new RequestCriteria($request));
$where = [
'user_id' => $this->getUserId($request),
];
if (filled($request->query('state'))) {
2018-02-20 00:35:49 +08:00
$where['state'] = $request->query('state');
} else {
$where[] = ['state', '!=', PirepState::CANCELLED];
}
$this->pirepRepo->pushCriteria(new WhereCriteria($request, $where));
$pireps = $this->pirepRepo
->orderBy('created_at', 'desc')
->paginate();
return PirepResource::collection($pireps);
}
}