2017-06-23 09:55:45 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
2018-01-01 04:00:50 +08:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Flash;
|
|
|
|
use Prettus\Repository\Criteria\RequestCriteria;
|
|
|
|
use Response;
|
|
|
|
|
|
|
|
use App\Models\Enums\FuelType;
|
|
|
|
|
2017-06-23 09:55:45 +08:00
|
|
|
use App\Models\Airline;
|
2017-06-25 00:09:27 +08:00
|
|
|
use App\Models\Subfleet;
|
2017-06-23 09:55:45 +08:00
|
|
|
use App\Http\Requests\CreateSubfleetRequest;
|
|
|
|
use App\Http\Requests\UpdateSubfleetRequest;
|
2017-06-25 00:09:27 +08:00
|
|
|
use App\Repositories\FareRepository;
|
2017-06-23 09:55:45 +08:00
|
|
|
use App\Repositories\SubfleetRepository;
|
|
|
|
|
|
|
|
class SubfleetController extends BaseController
|
|
|
|
{
|
|
|
|
/** @var SubfleetRepository */
|
2017-06-25 00:09:27 +08:00
|
|
|
private $subfleetRepo, $fareRepo;
|
2017-06-23 09:55:45 +08:00
|
|
|
|
2017-11-23 01:52:02 +08:00
|
|
|
/**
|
|
|
|
* SubfleetController constructor.
|
|
|
|
*
|
|
|
|
* @param SubfleetRepository $subfleetRepo
|
|
|
|
* @param FareRepository $fareRepo
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
SubfleetRepository $subfleetRepo,
|
|
|
|
FareRepository $fareRepo
|
|
|
|
) {
|
|
|
|
$this->subfleetRepo = $subfleetRepo;
|
|
|
|
$this->fareRepo = $fareRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
public function store(CreateSubfleetRequest $request)
|
|
|
|
{
|
|
|
|
$input = $request->all();
|
|
|
|
$subfleet = $this->subfleetRepo->create($input);
|
|
|
|
|
|
|
|
Flash::success('Subfleet saved successfully.');
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
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,
|
|
|
|
'subfleet' => $subfleet,
|
2017-06-23 09:55:45 +08:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified Subfleet in storage.
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @param UpdateSubfleetRequest $request
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
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'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$subfleet = $this->subfleetRepo->update($request->all(), $id);
|
|
|
|
|
|
|
|
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'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->subfleetRepo->delete($id);
|
|
|
|
|
|
|
|
Flash::success('Subfleet deleted successfully.');
|
|
|
|
return redirect(route('admin.subfleets.index'));
|
|
|
|
}
|
2017-06-25 00:09:27 +08:00
|
|
|
|
|
|
|
protected function return_fares_view(Subfleet $subfleet)
|
|
|
|
{
|
|
|
|
$subfleet->refresh();
|
|
|
|
$avail_fares = $this->getAvailFares($subfleet);
|
|
|
|
|
|
|
|
return view('admin.subfleets.fares', [
|
|
|
|
'subfleet' => $subfleet,
|
|
|
|
'avail_fares' => $avail_fares,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Request $request
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function fares(Request $request)
|
|
|
|
{
|
|
|
|
$id = $request->id;
|
|
|
|
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
$fare_svc = app('App\Services\FareService');
|
|
|
|
|
|
|
|
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);
|
2017-12-14 01:29:14 +08:00
|
|
|
$fare_svc->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;
|
2017-12-14 01:29:14 +08:00
|
|
|
$fare_svc->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);
|
|
|
|
$fare_svc->delFromAircraft($subfleet, $fare);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->return_fares_view($subfleet);
|
|
|
|
}
|
2017-06-23 09:55:45 +08:00
|
|
|
}
|