2017-06-09 09:37:51 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
|
|
|
use App\Http\Requests\CreateAircraftRequest;
|
|
|
|
use App\Http\Requests\UpdateAircraftRequest;
|
|
|
|
use App\Repositories\AircraftRepository;
|
2017-06-13 11:48:32 +08:00
|
|
|
use App\Repositories\FareRepository;
|
2017-06-09 09:37:51 +08:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Flash;
|
|
|
|
use Prettus\Repository\Criteria\RequestCriteria;
|
|
|
|
use Response;
|
|
|
|
|
2017-06-11 11:17:45 +08:00
|
|
|
class AircraftController extends BaseController
|
2017-06-09 09:37:51 +08:00
|
|
|
{
|
|
|
|
/** @var AircraftRepository */
|
2017-06-13 11:48:32 +08:00
|
|
|
private $aircraftRepository, $fareRepository;
|
2017-06-09 09:37:51 +08:00
|
|
|
|
2017-06-14 03:01:06 +08:00
|
|
|
protected function getAvailFares($all_fares, $attached_fares)
|
|
|
|
{
|
|
|
|
$retval = [];
|
|
|
|
$avail_fares = $all_fares->except($attached_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-13 11:48:32 +08:00
|
|
|
public function __construct(AircraftRepository $aircraftRepo, FareRepository $fareRepo)
|
2017-06-09 09:37:51 +08:00
|
|
|
{
|
2017-06-13 11:48:32 +08:00
|
|
|
$this->fareRepository = $fareRepo;
|
2017-06-09 09:37:51 +08:00
|
|
|
$this->aircraftRepository = $aircraftRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a listing of the Aircraft.
|
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
|
|
|
$this->aircraftRepository->pushCriteria(new RequestCriteria($request));
|
|
|
|
$aircraft = $this->aircraftRepository->all();
|
|
|
|
|
|
|
|
return view('admin.aircraft.index')
|
|
|
|
->with('aircraft', $aircraft);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new Aircraft.
|
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
|
|
|
return view('admin.aircraft.create');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created Aircraft in storage.
|
|
|
|
*/
|
|
|
|
public function store(CreateAircraftRequest $request)
|
|
|
|
{
|
|
|
|
$input = $request->all();
|
|
|
|
|
|
|
|
$aircraft = $this->aircraftRepository->create($input);
|
|
|
|
|
|
|
|
Flash::success('Aircraft saved successfully.');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified Aircraft.
|
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
Flash::error('Aircraft not found');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
2017-06-13 11:48:32 +08:00
|
|
|
$attached_fares = $aircraft->fares;
|
|
|
|
$all_fares = $this->fareRepository->all();
|
2017-06-14 03:01:06 +08:00
|
|
|
$avail_fares = $this->getAvailFares($all_fares, $attached_fares);
|
2017-06-13 11:48:32 +08:00
|
|
|
|
|
|
|
return view('admin.aircraft.show')
|
|
|
|
->with('aircraft', $aircraft)
|
|
|
|
->with('attached_fares', $attached_fares)
|
|
|
|
->with('avail_fares', $avail_fares);
|
2017-06-09 09:37:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified Aircraft.
|
|
|
|
*/
|
|
|
|
public function edit($id)
|
|
|
|
{
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
Flash::error('Aircraft not found');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return view('admin.aircraft.edit')->with('aircraft', $aircraft);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified Aircraft in storage.
|
|
|
|
*/
|
|
|
|
public function update($id, UpdateAircraftRequest $request)
|
|
|
|
{
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
Flash::error('Aircraft not found');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$aircraft = $this->aircraftRepository->update($request->all(), $id);
|
|
|
|
|
|
|
|
Flash::success('Aircraft updated successfully.');
|
|
|
|
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified Aircraft from storage.
|
|
|
|
*/
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
Flash::error('Aircraft not found');
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->aircraftRepository->delete($id);
|
|
|
|
|
|
|
|
Flash::success('Aircraft deleted successfully.');
|
|
|
|
|
|
|
|
return redirect(route('admin.aircraft.index'));
|
|
|
|
}
|
2017-06-12 08:02:29 +08:00
|
|
|
|
2017-06-13 11:48:32 +08:00
|
|
|
protected function return_fares_view($aircraft)
|
|
|
|
{
|
2017-06-14 03:01:06 +08:00
|
|
|
$aircraft->refresh();
|
2017-06-13 11:48:32 +08:00
|
|
|
$attached_fares = $aircraft->fares;
|
|
|
|
$all_fares = $this->fareRepository->all();
|
2017-06-14 03:01:06 +08:00
|
|
|
$avail_fares = $this->getAvailFares($all_fares, $attached_fares);
|
2017-06-13 11:48:32 +08:00
|
|
|
|
|
|
|
return view('admin.aircraft.fares')
|
|
|
|
->with('aircraft', $aircraft)
|
|
|
|
->with('attached_fares', $attached_fares)
|
|
|
|
->with('avail_fares', $avail_fares);
|
|
|
|
}
|
|
|
|
|
2017-06-12 08:02:29 +08:00
|
|
|
public function fares(Request $request)
|
|
|
|
{
|
|
|
|
$id = $request->id;
|
|
|
|
|
|
|
|
$aircraft = $this->aircraftRepository->findWithoutFail($id);
|
|
|
|
if (empty($aircraft)) {
|
|
|
|
return view('admin.aircraft.fares')->with('fares', []);
|
|
|
|
}
|
|
|
|
|
2017-06-14 03:01:06 +08:00
|
|
|
$fare_svc = app('App\Services\FareService');
|
|
|
|
|
2017-06-14 04:11:11 +08:00
|
|
|
if ($request->isMethod('get')) {
|
|
|
|
return $this->return_fares_view($aircraft);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* update specific fare data
|
|
|
|
*/
|
|
|
|
if ($request->isMethod('post')) {
|
2017-06-14 03:01:06 +08:00
|
|
|
$fare = $this->fareRepository->findWithoutFail($request->fare_id);
|
|
|
|
$fare_svc->setForAircraft($aircraft, $fare);
|
2017-06-14 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// update the pivot table with overrides for the fares
|
|
|
|
elseif ($request->isMethod('put')) {
|
|
|
|
$override = [];
|
|
|
|
$fare = $this->fareRepository->findWithoutFail($request->fare_id);
|
|
|
|
$override[$request->name] = $request->value;
|
|
|
|
$fare_svc->setForAircraft($aircraft, $fare, $override);
|
|
|
|
}
|
|
|
|
|
|
|
|
// dissassociate fare from teh aircraft
|
|
|
|
elseif ($request->isMethod('delete')) {
|
2017-06-14 03:01:06 +08:00
|
|
|
$fare = $this->fareRepository->findWithoutFail($request->fare_id);
|
|
|
|
$fare_svc->delFromAircraft($aircraft, $fare);
|
2017-06-12 08:02:29 +08:00
|
|
|
}
|
|
|
|
|
2017-06-13 11:48:32 +08:00
|
|
|
return $this->return_fares_view($aircraft);
|
2017-06-12 08:02:29 +08:00
|
|
|
}
|
2017-06-09 09:37:51 +08:00
|
|
|
}
|