2017-06-23 09:55:45 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
|
|
|
use App\Http\Requests\CreateSubfleetRequest;
|
|
|
|
use App\Http\Requests\UpdateSubfleetRequest;
|
2018-02-21 12:33:09 +08:00
|
|
|
use App\Models\Airline;
|
|
|
|
use App\Models\Enums\FuelType;
|
|
|
|
use App\Models\Subfleet;
|
2018-01-10 03:34:19 +08:00
|
|
|
use App\Repositories\AircraftRepository;
|
2017-06-25 00:09:27 +08:00
|
|
|
use App\Repositories\FareRepository;
|
2018-02-21 12:33:09 +08:00
|
|
|
use App\Repositories\RankRepository;
|
2017-06-23 09:55:45 +08:00
|
|
|
use App\Repositories\SubfleetRepository;
|
2018-01-08 00:38:16 +08:00
|
|
|
use App\Services\FareService;
|
2018-02-21 12:33:09 +08:00
|
|
|
use Flash;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Prettus\Repository\Criteria\RequestCriteria;
|
|
|
|
use Response;
|
2018-01-08 00:38:16 +08:00
|
|
|
|
2017-06-23 09:55:45 +08:00
|
|
|
class SubfleetController extends BaseController
|
|
|
|
{
|
|
|
|
/** @var SubfleetRepository */
|
2018-02-21 11:53:50 +08:00
|
|
|
private $aircraftRepo, $rankRepo, $subfleetRepo, $fareRepo, $fareSvc;
|
2017-06-23 09:55:45 +08:00
|
|
|
|
2017-11-23 01:52:02 +08:00
|
|
|
/**
|
|
|
|
* SubfleetController constructor.
|
2018-01-10 03:34:19 +08:00
|
|
|
* @param AircraftRepository $aircraftRepo
|
2017-11-23 01:52:02 +08:00
|
|
|
* @param SubfleetRepository $subfleetRepo
|
2018-01-10 03:34:19 +08:00
|
|
|
* @param FareRepository $fareRepo
|
|
|
|
* @param FareService $fareSvc
|
2017-11-23 01:52:02 +08:00
|
|
|
*/
|
|
|
|
public function __construct(
|
2018-01-10 03:34:19 +08:00
|
|
|
AircraftRepository $aircraftRepo,
|
2018-02-21 11:53:50 +08:00
|
|
|
RankRepository $rankRepo,
|
2017-11-23 01:52:02 +08:00
|
|
|
SubfleetRepository $subfleetRepo,
|
2018-01-08 00:38:16 +08:00
|
|
|
FareRepository $fareRepo,
|
|
|
|
FareService $fareSvc
|
2017-11-23 01:52:02 +08:00
|
|
|
) {
|
2018-01-10 03:34:19 +08:00
|
|
|
$this->aircraftRepo = $aircraftRepo;
|
2018-02-21 11:53:50 +08:00
|
|
|
$this->rankRepo = $rankRepo;
|
2017-11-23 01:52:02 +08:00
|
|
|
$this->subfleetRepo = $subfleetRepo;
|
|
|
|
$this->fareRepo = $fareRepo;
|
2018-01-08 00:38:16 +08:00
|
|
|
$this->fareSvc = $fareSvc;
|
2017-11-23 01:52:02 +08:00
|
|
|
}
|
|
|
|
|
2018-02-21 11:53:50 +08:00
|
|
|
/**
|
|
|
|
* Get the ranks that are available to the subfleet
|
|
|
|
* @param $subfleet
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getAvailRanks($subfleet)
|
|
|
|
{
|
|
|
|
$retval = [];
|
|
|
|
$all_ranks = $this->rankRepo->all();
|
|
|
|
$avail_ranks = $all_ranks->except($subfleet->ranks->modelKeys());
|
|
|
|
foreach ($avail_ranks as $rank) {
|
|
|
|
$retval[$rank->id] = $rank->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
2017-11-23 01:52:02 +08:00
|
|
|
/**
|
|
|
|
* Get all the fares that haven't been assigned to a given subfleet
|
|
|
|
*/
|
2017-06-25 00:09:27 +08:00
|
|
|
protected function getAvailFares($subfleet)
|
|
|
|
{
|
|
|
|
$retval = [];
|
|
|
|
$all_fares = $this->fareRepo->all();
|
|
|
|
$avail_fares = $all_fares->except($subfleet->fares->modelKeys());
|
|
|
|
foreach ($avail_fares as $fare) {
|
|
|
|
$retval[$fare->id] = $fare->name.
|
|
|
|
' (price: '.$fare->price.
|
|
|
|
', cost: '.$fare->cost.
|
|
|
|
', capacity: '.$fare->capacity.')';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
2017-06-23 09:55:45 +08:00
|
|
|
/**
|
|
|
|
* Display a listing of the Subfleet.
|
|
|
|
* @param Request $request
|
|
|
|
* @return Response
|
2018-01-01 04:00:50 +08:00
|
|
|
* @throws \Prettus\Repository\Exceptions\RepositoryException
|
2017-06-23 09:55:45 +08:00
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
|
|
|
$this->subfleetRepo->pushCriteria(new RequestCriteria($request));
|
|
|
|
$subfleets = $this->subfleetRepo->all();
|
|
|
|
|
|
|
|
return view('admin.subfleets.index', [
|
|
|
|
'subfleets' => $subfleets,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new Subfleet.
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
|
|
|
return view('admin.subfleets.create', [
|
|
|
|
'airlines' => Airline::all()->pluck('name', 'id'),
|
2018-01-01 04:00:50 +08:00
|
|
|
'fuel_types' => FuelType::labels(),
|
2017-06-23 09:55:45 +08:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created Subfleet in storage.
|
|
|
|
* @param CreateSubfleetRequest $request
|
|
|
|
* @return Response
|
2018-01-08 00:38:16 +08:00
|
|
|
* @throws \Prettus\Validator\Exceptions\ValidatorException
|
2017-06-23 09:55:45 +08:00
|
|
|
*/
|
|
|
|
public function store(CreateSubfleetRequest $request)
|
|
|
|
{
|
|
|
|
$input = $request->all();
|
|
|
|
$subfleet = $this->subfleetRepo->create($input);
|
|
|
|
|
|
|
|
Flash::success('Subfleet saved successfully.');
|
2018-02-21 11:55:01 +08:00
|
|
|
return redirect(route('admin.subfleets.edit', ['id' => $subfleet->id]));
|
2017-06-23 09:55:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified Subfleet.
|
|
|
|
* @param int $id
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
|
|
|
$subfleet = $this->subfleetRepo->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($subfleet)) {
|
|
|
|
Flash::error('Subfleet not found');
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
|
|
|
}
|
|
|
|
|
2017-06-25 00:09:27 +08:00
|
|
|
$avail_fares = $this->getAvailFares($subfleet);
|
|
|
|
return view('admin.subfleets.show', [
|
|
|
|
'subfleet' => $subfleet,
|
|
|
|
'avail_fares' => $avail_fares,
|
|
|
|
]);
|
2017-06-23 09:55:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified Subfleet.
|
|
|
|
* @param int $id
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function edit($id)
|
|
|
|
{
|
|
|
|
$subfleet = $this->subfleetRepo->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($subfleet)) {
|
|
|
|
Flash::error('Subfleet not found');
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
|
|
|
}
|
|
|
|
|
2017-07-03 04:11:27 +08:00
|
|
|
$avail_fares = $this->getAvailFares($subfleet);
|
2018-02-21 11:53:50 +08:00
|
|
|
$avail_ranks = $this->getAvailRanks($subfleet);
|
|
|
|
|
2017-06-23 09:55:45 +08:00
|
|
|
return view('admin.subfleets.edit', [
|
|
|
|
'airlines' => Airline::all()->pluck('name', 'id'),
|
2018-01-01 04:00:50 +08:00
|
|
|
'fuel_types' => FuelType::labels(),
|
|
|
|
'avail_fares' => $avail_fares,
|
2018-02-21 11:53:50 +08:00
|
|
|
'avail_ranks' => $avail_ranks,
|
2018-01-01 04:00:50 +08:00
|
|
|
'subfleet' => $subfleet,
|
2017-06-23 09:55:45 +08:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified Subfleet in storage.
|
2018-01-08 00:38:16 +08:00
|
|
|
* @param int $id
|
2017-06-23 09:55:45 +08:00
|
|
|
* @param UpdateSubfleetRequest $request
|
|
|
|
* @return Response
|
2018-01-08 00:38:16 +08:00
|
|
|
* @throws \Prettus\Validator\Exceptions\ValidatorException
|
2017-06-23 09:55:45 +08:00
|
|
|
*/
|
|
|
|
public function update($id, UpdateSubfleetRequest $request)
|
|
|
|
{
|
|
|
|
$subfleet = $this->subfleetRepo->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($subfleet)) {
|
|
|
|
Flash::error('Subfleet not found');
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
|
|
|
}
|
|
|
|
|
2018-01-08 00:38:16 +08:00
|
|
|
$this->subfleetRepo->update($request->all(), $id);
|
2017-06-23 09:55:45 +08:00
|
|
|
|
|
|
|
Flash::success('Subfleet updated successfully.');
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified Subfleet from storage.
|
|
|
|
* @param int $id
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
|
|
|
$subfleet = $this->subfleetRepo->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($subfleet)) {
|
|
|
|
Flash::error('Subfleet not found');
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
2018-01-10 03:34:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Make sure no aircraft are assigned to this subfleet
|
|
|
|
# before trying to delete it, or else things might go boom
|
|
|
|
$aircraft = $this->aircraftRepo->findWhere(['subfleet_id' => $id], ['id']);
|
|
|
|
if($aircraft->count() > 0) {
|
|
|
|
Flash::error('There are aircraft still assigned to this subfleet, you can\'t delete it!')->important();
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
2017-06-23 09:55:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->subfleetRepo->delete($id);
|
|
|
|
|
|
|
|
Flash::success('Subfleet deleted successfully.');
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
|
|
|
}
|
2017-06-25 00:09:27 +08:00
|
|
|
|
2018-02-21 11:53:50 +08:00
|
|
|
/**
|
|
|
|
* @param Subfleet $subfleet
|
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
|
|
*/
|
|
|
|
protected function return_ranks_view(Subfleet $subfleet)
|
|
|
|
{
|
|
|
|
$subfleet->refresh();
|
|
|
|
|
|
|
|
$avail_ranks = $this->getAvailRanks($subfleet);
|
|
|
|
|
|
|
|
return view('admin.subfleets.ranks', [
|
|
|
|
'subfleet' => $subfleet,
|
|
|
|
'avail_ranks' => $avail_ranks,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2018-01-08 00:38:16 +08:00
|
|
|
/**
|
|
|
|
* @param Subfleet $subfleet
|
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
|
|
*/
|
2017-06-25 00:09:27 +08:00
|
|
|
protected function return_fares_view(Subfleet $subfleet)
|
|
|
|
{
|
|
|
|
$subfleet->refresh();
|
2018-02-21 11:53:50 +08:00
|
|
|
|
2017-06-25 00:09:27 +08:00
|
|
|
$avail_fares = $this->getAvailFares($subfleet);
|
|
|
|
|
|
|
|
return view('admin.subfleets.fares', [
|
|
|
|
'subfleet' => $subfleet,
|
|
|
|
'avail_fares' => $avail_fares,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-21 11:53:50 +08:00
|
|
|
* Operations for associating ranks to the subfleet
|
|
|
|
* @param $id
|
2017-06-25 00:09:27 +08:00
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
|
|
*/
|
2018-02-21 11:53:50 +08:00
|
|
|
public function ranks($id, Request $request)
|
2017-06-25 00:09:27 +08:00
|
|
|
{
|
2018-02-21 11:53:50 +08:00
|
|
|
$subfleet = $this->subfleetRepo->findWithoutFail($id);
|
|
|
|
if (empty($subfleet)) {
|
|
|
|
return $this->return_ranks_view($subfleet);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->isMethod('get')) {
|
|
|
|
return $this->return_ranks_view($subfleet);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* update specific rank data
|
|
|
|
*/
|
|
|
|
if ($request->isMethod('post')) {
|
|
|
|
$subfleet->ranks()->syncWithoutDetaching([$request->input('rank_id')]);
|
|
|
|
}
|
2017-06-25 00:09:27 +08:00
|
|
|
|
2018-02-21 11:53:50 +08:00
|
|
|
// dissassociate fare from teh aircraft
|
|
|
|
elseif ($request->isMethod('delete')) {
|
|
|
|
$subfleet->ranks()->detach($request->input('rank_id'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$subfleet->save();
|
|
|
|
return $this->return_ranks_view($subfleet);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Operations on fares to the subfleet
|
|
|
|
* @param $id
|
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function fares($id, Request $request)
|
|
|
|
{
|
2017-06-25 00:09:27 +08:00
|
|
|
$subfleet = $this->subfleetRepo->findWithoutFail($id);
|
|
|
|
if (empty($subfleet)) {
|
2017-11-23 01:52:02 +08:00
|
|
|
return $this->return_fares_view($subfleet);
|
|
|
|
//return view('admin.aircraft.fares', ['fares' => []]);
|
2017-06-25 00:09:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->isMethod('get')) {
|
|
|
|
return $this->return_fares_view($subfleet);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* update specific fare data
|
|
|
|
*/
|
|
|
|
if ($request->isMethod('post')) {
|
|
|
|
$fare = $this->fareRepo->findWithoutFail($request->fare_id);
|
2018-01-08 00:38:16 +08:00
|
|
|
$this->fareSvc->setForSubfleet($subfleet, $fare);
|
2017-06-25 00:09:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// update the pivot table with overrides for the fares
|
|
|
|
elseif ($request->isMethod('put')) {
|
|
|
|
$override = [];
|
|
|
|
$fare = $this->fareRepo->findWithoutFail($request->fare_id);
|
|
|
|
$override[$request->name] = $request->value;
|
2018-01-08 00:38:16 +08:00
|
|
|
$this->fareSvc->setForSubfleet($subfleet, $fare, $override);
|
2017-06-25 00:09:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// dissassociate fare from teh aircraft
|
|
|
|
elseif ($request->isMethod('delete')) {
|
|
|
|
$fare = $this->fareRepo->findWithoutFail($request->fare_id);
|
2018-01-08 00:38:16 +08:00
|
|
|
$this->fareSvc->delFareFromSubfleet($subfleet, $fare);
|
2017-06-25 00:09:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->return_fares_view($subfleet);
|
|
|
|
}
|
2017-06-23 09:55:45 +08:00
|
|
|
}
|