144 lines
3.7 KiB
PHP
144 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Http\Resources\Flight as FlightResource;
|
|
use App\Http\Resources\Navdata as NavdataResource;
|
|
use App\Interfaces\Controller;
|
|
use App\Repositories\Criteria\WhereCriteria;
|
|
use App\Repositories\FlightRepository;
|
|
use App\Services\FlightService;
|
|
use Auth;
|
|
use Illuminate\Http\Request;
|
|
use Prettus\Repository\Criteria\RequestCriteria;
|
|
use Prettus\Repository\Exceptions\RepositoryException;
|
|
|
|
/**
|
|
* Class FlightController
|
|
*/
|
|
class FlightController extends Controller
|
|
{
|
|
private $flightRepo;
|
|
private $flightSvc;
|
|
|
|
/**
|
|
* FlightController constructor.
|
|
*
|
|
* @param FlightRepository $flightRepo
|
|
* @param FlightService $flightSvc
|
|
*/
|
|
public function __construct(
|
|
FlightRepository $flightRepo,
|
|
FlightService $flightSvc
|
|
) {
|
|
$this->flightRepo = $flightRepo;
|
|
$this->flightSvc = $flightSvc;
|
|
}
|
|
|
|
/**
|
|
* Return all the flights, paginated
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
|
|
*/
|
|
public function index(Request $request)
|
|
{
|
|
$user = Auth::user();
|
|
|
|
$where = [
|
|
'active' => true,
|
|
'visible' => true,
|
|
];
|
|
|
|
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
|
|
*
|
|
* @return FlightResource
|
|
*/
|
|
public function get($id)
|
|
{
|
|
$flight = $this->flightRepo->find($id);
|
|
$this->flightSvc->filterSubfleets(Auth::user(), $flight);
|
|
|
|
return new FlightResource($flight);
|
|
}
|
|
|
|
/**
|
|
* @param Request $request
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function search(Request $request)
|
|
{
|
|
$where = [
|
|
'active' => true,
|
|
'visible' => true,
|
|
];
|
|
|
|
// Allow the option to bypass some of these restrictions for the searches
|
|
if (!$request->filled('ignore_restrictions')
|
|
|| $request->get('ignore_restrictions') === '0'
|
|
) {
|
|
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 {
|
|
$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);
|
|
}
|
|
|
|
/**
|
|
* Get a flight's route
|
|
*
|
|
* @param $id
|
|
* @param Request $request
|
|
*
|
|
* @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);
|
|
}
|
|
}
|