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;
|
2018-02-10 05:42:37 +08:00
|
|
|
use App\Repositories\Criteria\WhereCriteria;
|
2018-02-21 12:33:09 +08:00
|
|
|
use App\Repositories\FlightRepository;
|
2018-02-10 04:36:36 +08:00
|
|
|
use App\Services\FlightService;
|
2018-02-10 04:26:14 +08:00
|
|
|
use Auth;
|
2017-08-15 07:26:20 +08:00
|
|
|
use Illuminate\Http\Request;
|
2018-01-07 02:07:22 +08:00
|
|
|
use Prettus\Repository\Criteria\RequestCriteria;
|
2018-02-10 04:26:14 +08:00
|
|
|
use Prettus\Repository\Exceptions\RepositoryException;
|
2017-08-15 07:26:20 +08:00
|
|
|
|
2018-02-10 04:26:14 +08:00
|
|
|
/**
|
|
|
|
* Class FlightController
|
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
class FlightController extends Controller
|
2017-08-15 07:26:20 +08:00
|
|
|
{
|
2018-08-27 00:40:04 +08:00
|
|
|
private $flightRepo;
|
|
|
|
private $flightSvc;
|
2017-12-05 00:59:25 +08:00
|
|
|
|
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
|
2018-03-20 09:50:40 +08:00
|
|
|
* @param FlightService $flightSvc
|
2018-02-21 12:33:09 +08:00
|
|
|
*/
|
2018-02-10 04:26:14 +08:00
|
|
|
public function __construct(
|
|
|
|
FlightRepository $flightRepo,
|
2018-03-20 09:50:40 +08:00
|
|
|
FlightService $flightSvc
|
2018-02-10 04:26:14 +08:00
|
|
|
) {
|
2017-12-05 00:59:25 +08:00
|
|
|
$this->flightRepo = $flightRepo;
|
2018-02-10 04:36:36 +08:00
|
|
|
$this->flightSvc = $flightSvc;
|
2018-02-10 04:26:14 +08:00
|
|
|
}
|
|
|
|
|
2018-01-07 05:21:21 +08:00
|
|
|
/**
|
|
|
|
* Return all the flights, paginated
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-02-11 07:34:46 +08:00
|
|
|
* @param Request $request
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-02-11 07:34:46 +08:00
|
|
|
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
|
2018-01-07 05:21:21 +08:00
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
2018-02-10 04:26:14 +08:00
|
|
|
$user = Auth::user();
|
2018-02-10 05:42:37 +08:00
|
|
|
|
2018-07-13 11:29:50 +08:00
|
|
|
$where = [
|
|
|
|
'active' => true,
|
|
|
|
'visible' => true,
|
|
|
|
];
|
|
|
|
|
2018-08-27 00:40:04 +08:00
|
|
|
if (setting('pilots.restrict_to_company')) {
|
2018-05-19 08:37:11 +08:00
|
|
|
$where['airline_id'] = Auth::user()->airline_id;
|
|
|
|
}
|
2018-02-10 05:42:37 +08:00
|
|
|
if (setting('pilots.only_flights_from_current', false)) {
|
|
|
|
$where['dpt_airport_id'] = $user->curr_airport_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$flights = $this->flightRepo
|
2018-03-20 09:50:40 +08:00
|
|
|
->whereOrder($where, 'flight_number', 'asc')
|
|
|
|
->paginate();
|
2018-02-10 05:36:13 +08:00
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
foreach ($flights as $flight) {
|
2018-02-10 04:36:36 +08:00
|
|
|
$this->flightSvc->filterSubfleets($user, $flight);
|
2018-02-10 04:26:14 +08:00
|
|
|
}
|
|
|
|
|
2018-01-07 05:21:21 +08:00
|
|
|
return FlightResource::collection($flights);
|
|
|
|
}
|
|
|
|
|
2018-02-10 04:26:14 +08:00
|
|
|
/**
|
|
|
|
* @param $id
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-02-10 04:26:14 +08:00
|
|
|
* @return FlightResource
|
|
|
|
*/
|
2017-08-15 12:36:49 +08:00
|
|
|
public function get($id)
|
|
|
|
{
|
2017-12-05 00:59:25 +08:00
|
|
|
$flight = $this->flightRepo->find($id);
|
2018-02-10 04:36:36 +08:00
|
|
|
$this->flightSvc->filterSubfleets(Auth::user(), $flight);
|
2018-02-10 04:26:14 +08:00
|
|
|
|
2017-12-12 21:25:11 +08:00
|
|
|
return new FlightResource($flight);
|
2017-08-15 12:36:49 +08:00
|
|
|
}
|
|
|
|
|
2017-12-13 06:58:27 +08:00
|
|
|
/**
|
|
|
|
* @param Request $request
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2017-12-13 06:58:27 +08:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2017-08-15 07:26:20 +08:00
|
|
|
public function search(Request $request)
|
|
|
|
{
|
2019-05-11 05:03:04 +08:00
|
|
|
$where = [
|
|
|
|
'active' => true,
|
|
|
|
'visible' => true,
|
|
|
|
];
|
2018-07-13 11:29:50 +08:00
|
|
|
|
2019-05-11 05:03:04 +08:00
|
|
|
// 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')) {
|
2018-05-19 08:37:11 +08:00
|
|
|
$where['airline_id'] = Auth::user()->airline_id;
|
|
|
|
}
|
2019-05-11 05:03:04 +08:00
|
|
|
|
2018-02-10 05:42:37 +08:00
|
|
|
if (setting('pilots.only_flights_from_current')) {
|
|
|
|
$where['dpt_airport_id'] = Auth::user()->curr_airport_id;
|
|
|
|
}
|
2019-05-11 05:03:04 +08:00
|
|
|
}
|
2018-02-10 05:42:37 +08:00
|
|
|
|
2019-05-11 05:03:04 +08:00
|
|
|
try {
|
2019-05-12 00:37:06 +08:00
|
|
|
$this->flightRepo->resetCriteria();
|
2018-01-07 02:07:22 +08:00
|
|
|
$this->flightRepo->searchCriteria($request);
|
2018-02-10 05:42:37 +08:00
|
|
|
$this->flightRepo->pushCriteria(new WhereCriteria($request, $where));
|
2019-05-11 05:03:04 +08:00
|
|
|
$this->flightRepo->pushCriteria(new RequestCriteria($request));
|
|
|
|
|
2018-02-10 05:42:37 +08:00
|
|
|
$flights = $this->flightRepo->paginate();
|
2017-12-12 21:25:11 +08:00
|
|
|
} catch (RepositoryException $e) {
|
|
|
|
return response($e, 503);
|
|
|
|
}
|
2017-12-13 01:49:35 +08:00
|
|
|
|
2018-02-10 04:26:14 +08:00
|
|
|
foreach ($flights as $flight) {
|
2019-05-11 05:03:04 +08:00
|
|
|
$this->flightSvc->filterSubfleets(Auth::user(), $flight);
|
2018-02-10 04:26:14 +08:00
|
|
|
}
|
|
|
|
|
2017-12-12 21:25:11 +08:00
|
|
|
return FlightResource::collection($flights);
|
2017-08-15 07:26:20 +08:00
|
|
|
}
|
2018-02-21 02:06:52 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a flight's route
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-03-20 09:50:40 +08:00
|
|
|
* @param $id
|
2018-02-21 02:06:52 +08:00
|
|
|
* @param Request $request
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-02-21 02:06:52 +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
|
|
|
}
|