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

121 lines
3.7 KiB
PHP
Raw Normal View History

2017-08-03 04:12:26 +08:00
<?php
namespace App\Http\Controllers\Frontend;
2018-02-21 12:33:09 +08:00
use App\Http\Controllers\Controller;
2018-02-28 03:25:32 +08:00
use App\Models\Bid;
2017-12-05 04:21:46 +08:00
use App\Repositories\AirlineRepository;
use App\Repositories\AirportRepository;
2018-02-21 12:33:09 +08:00
use App\Repositories\Criteria\WhereCriteria;
use App\Repositories\FlightRepository;
use App\Services\FlightService;
use App\Services\GeoService;
2017-08-03 04:12:26 +08:00
use Illuminate\Http\Request;
2017-08-03 04:29:04 +08:00
use Illuminate\Support\Facades\Auth;
2018-02-21 12:33:09 +08:00
use Log;
use Prettus\Repository\Exceptions\RepositoryException;
2017-08-03 04:12:26 +08:00
2018-01-12 11:35:03 +08:00
class FlightController extends Controller
2017-08-03 04:12:26 +08:00
{
private $airlineRepo,
$airportRepo,
$flightRepo,
$geoSvc;
2017-12-05 04:21:46 +08:00
2018-02-21 12:33:09 +08:00
/**
* FlightController constructor.
* @param AirlineRepository $airlineRepo
* @param AirportRepository $airportRepo
* @param FlightRepository $flightRepo
* @param FlightService $flightSvc
2018-02-21 12:33:09 +08:00
* @param GeoService $geoSvc
*/
2017-12-05 04:21:46 +08:00
public function __construct(
AirlineRepository $airlineRepo,
AirportRepository $airportRepo,
FlightRepository $flightRepo,
FlightService $flightSvc,
GeoService $geoSvc
2017-12-05 04:21:46 +08:00
) {
$this->airlineRepo = $airlineRepo;
$this->airportRepo = $airportRepo;
2017-08-03 04:12:26 +08:00
$this->flightRepo = $flightRepo;
$this->flightSvc = $flightSvc;
$this->geoSvc = $geoSvc;
2017-08-03 04:12:26 +08:00
}
2018-02-21 12:33:09 +08:00
/**
* @param Request $request
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
2017-08-03 04:12:26 +08:00
public function index(Request $request)
{
2017-08-03 04:29:04 +08:00
$where = ['active' => true];
2017-08-03 04:12:26 +08:00
2017-08-03 04:29:04 +08:00
// default restrictions on the flights shown. Handle search differently
if (setting('pilots.only_flights_from_current')) {
2017-08-03 04:29:04 +08:00
$where['dpt_airport_id'] = Auth::user()->curr_airport_id;
}
try {
$this->flightRepo->pushCriteria(new WhereCriteria($request, $where));
} catch (RepositoryException $e) {
Log::emergency($e);
}
$flights = $this->flightRepo->paginate();
2017-08-03 04:29:04 +08:00
2018-02-28 03:25:32 +08:00
$saved_flights = Bid::where('user_id', Auth::id())
2017-08-04 10:02:02 +08:00
->pluck('flight_id')->toArray();
2017-08-03 04:12:26 +08:00
return $this->view('flights.index', [
2017-12-05 04:21:46 +08:00
'airlines' => $this->airlineRepo->selectBoxList(true),
'airports' => $this->airportRepo->selectBoxList(true),
2017-08-03 04:12:26 +08:00
'flights' => $flights,
2017-08-04 10:02:02 +08:00
'saved' => $saved_flights,
2017-08-03 04:12:26 +08:00
]);
}
/**
* Make a search request using the Repository search
* @param Request $request
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
* @throws \Prettus\Repository\Exceptions\RepositoryException
*/
2017-08-04 10:02:02 +08:00
public function search(Request $request)
2017-08-03 04:12:26 +08:00
{
$flights = $this->flightRepo->searchCriteria($request)->paginate();
2017-08-03 04:29:04 +08:00
2018-02-28 03:25:32 +08:00
$saved_flights = Bid::where('user_id', Auth::id())
2017-08-04 10:02:02 +08:00
->pluck('flight_id')->toArray();
2017-08-03 04:29:04 +08:00
return $this->view('flights.index', [
2017-12-05 04:21:46 +08:00
'airlines' => $this->airlineRepo->selectBoxList(true),
'airports' => $this->airportRepo->selectBoxList(true),
2017-08-03 04:29:04 +08:00
'flights' => $flights,
2017-08-04 10:02:02 +08:00
'saved' => $saved_flights,
2017-08-03 04:29:04 +08:00
]);
}
/**
* Show the flight information page
2018-02-21 12:33:09 +08:00
* @param $id
* @return \Illuminate\Contracts\View\Factory|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|\Illuminate\View\View
*/
2017-08-04 10:02:02 +08:00
public function show($id)
{
$flight = $this->flightRepo->find($id);
if (empty($flight)) {
Flash::error('Flight not found!');
return redirect(route('frontend.dashboard.index'));
}
2017-08-04 10:02:02 +08:00
$map_features = $this->geoSvc->flightGeoJson($flight);
return $this->view('flights.show', [
'flight' => $flight,
'map_features' => $map_features,
]);
2017-08-04 10:02:02 +08:00
}
2017-08-03 04:12:26 +08:00
}