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

144 lines
3.7 KiB
PHP
Raw Normal View History

2017-08-15 07:26:20 +08:00
<?php
namespace App\Http\Controllers\Api;
2019-07-16 03:51:35 +08:00
use App\Contracts\Controller;
2018-02-21 12:33:09 +08:00
use App\Http\Resources\Flight as FlightResource;
use App\Http\Resources\Navdata as NavdataResource;
use App\Repositories\Criteria\WhereCriteria;
2018-02-21 12:33:09 +08:00
use App\Repositories\FlightRepository;
use App\Services\FlightService;
use Auth;
2017-08-15 07:26:20 +08:00
use Illuminate\Http\Request;
use Prettus\Repository\Criteria\RequestCriteria;
use Prettus\Repository\Exceptions\RepositoryException;
2017-08-15 07:26:20 +08:00
/**
* Class FlightController
*/
class FlightController extends Controller
2017-08-15 07:26:20 +08:00
{
2018-08-27 00:40:04 +08:00
private $flightRepo;
private $flightSvc;
2018-02-21 12:33:09 +08:00
/**
* FlightController constructor.
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @param FlightRepository $flightRepo
* @param FlightService $flightSvc
2018-02-21 12:33:09 +08:00
*/
public function __construct(
FlightRepository $flightRepo,
FlightService $flightSvc
) {
$this->flightRepo = $flightRepo;
$this->flightSvc = $flightSvc;
}
/**
* Return all the flights, paginated
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 index(Request $request)
{
$user = Auth::user();
$where = [
'active' => true,
'visible' => true,
];
2018-08-27 00:40:04 +08:00
if (setting('pilots.restrict_to_company')) {
$where['airline_id'] = Auth::user()->airline_id;
}
if (setting('pilots.only_flights_from_current', false)) {
$where['dpt_airport_id'] = $user->curr_airport_id;
}
$flights = $this->flightRepo
->whereOrder($where, 'flight_number', 'asc')
->paginate();
foreach ($flights as $flight) {
$this->flightSvc->filterSubfleets($user, $flight);
}
return FlightResource::collection($flights);
}
/**
* @param $id
2018-08-27 00:40:04 +08:00
*
* @return FlightResource
*/
2017-08-15 12:36:49 +08:00
public function get($id)
{
$flight = $this->flightRepo->find($id);
$this->flightSvc->filterSubfleets(Auth::user(), $flight);
return new FlightResource($flight);
2017-08-15 12:36:49 +08:00
}
/**
* @param Request $request
2018-08-27 00:40:04 +08:00
*
* @return mixed
*/
2017-08-15 07:26:20 +08:00
public function search(Request $request)
{
$where = [
'active' => true,
'visible' => true,
];
// Allow the option to bypass some of these restrictions for the searches
2019-05-12 00:37:06 +08:00
if (!$request->filled('ignore_restrictions')
|| $request->get('ignore_restrictions') === '0'
) {
2018-08-27 00:40:04 +08:00
if (setting('pilots.restrict_to_company')) {
$where['airline_id'] = Auth::user()->airline_id;
}
if (setting('pilots.only_flights_from_current')) {
$where['dpt_airport_id'] = Auth::user()->curr_airport_id;
}
}
try {
2019-05-12 00:37:06 +08:00
$this->flightRepo->resetCriteria();
$this->flightRepo->searchCriteria($request);
$this->flightRepo->pushCriteria(new WhereCriteria($request, $where));
$this->flightRepo->pushCriteria(new RequestCriteria($request));
$flights = $this->flightRepo->paginate();
} catch (RepositoryException $e) {
return response($e, 503);
}
foreach ($flights as $flight) {
$this->flightSvc->filterSubfleets(Auth::user(), $flight);
}
return FlightResource::collection($flights);
2017-08-15 07:26:20 +08:00
}
/**
* Get a flight's route
2018-08-27 00:40:04 +08:00
*
* @param $id
* @param Request $request
2018-08-27 00:40:04 +08:00
*
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
*/
public function route($id, Request $request)
{
$flight = $this->flightRepo->find($id);
$route = $this->flightSvc->getRoute($flight);
return NavdataResource::collection($route);
}
2017-08-15 07:26:20 +08:00
}