phpvms/app/Http/Controllers/Admin/FareController.php

216 lines
5.2 KiB
PHP
Raw Normal View History

<?php
2017-06-11 11:17:45 +08:00
namespace App\Http\Controllers\Admin;
2019-07-16 03:51:35 +08:00
use App\Contracts\Controller;
use App\Http\Controllers\Admin\Traits\Importable;
use App\Http\Requests\CreateFareRequest;
use App\Http\Requests\UpdateFareRequest;
use App\Models\Enums\FareType;
use App\Models\Enums\ImportExportType;
use App\Repositories\FareRepository;
2018-03-23 06:48:57 +08:00
use App\Services\ExportService;
use App\Services\ImportService;
2018-02-21 12:33:09 +08:00
use Illuminate\Http\Request;
use Laracasts\Flash\Flash;
use Prettus\Repository\Criteria\RequestCriteria;
class FareController extends Controller
{
use Importable;
2018-08-27 00:40:04 +08:00
private $fareRepo;
private $importSvc;
2018-02-21 12:33:09 +08:00
/**
* FareController constructor.
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @param FareRepository $fareRepo
2018-03-23 06:48:57 +08:00
* @param ImportService $importSvc
2018-02-21 12:33:09 +08:00
*/
public function __construct(
2018-03-23 06:48:57 +08:00
FareRepository $fareRepo,
ImportService $importSvc
2018-02-21 12:33:09 +08:00
) {
2018-03-23 06:48:57 +08:00
$this->fareRepo = $fareRepo;
$this->importSvc = $importSvc;
}
/**
* Display a listing of the Fare.
2018-08-27 00:40:04 +08:00
*
* @param Request $request
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @throws \Prettus\Repository\Exceptions\RepositoryException
2018-08-27 00:40:04 +08:00
*
* @return mixed
*/
public function index(Request $request)
{
2018-03-23 06:48:57 +08:00
$this->fareRepo->pushCriteria(new RequestCriteria($request));
$fares = $this->fareRepo->all();
return view('admin.fares.index')
->with('fares', $fares);
}
/**
* Show the form for creating a new Fare.
*/
public function create()
{
return view('admin.fares.create', [
'fare_types' => FareType::select(),
]);
}
/**
* Store a newly created Fare in storage.
2018-08-27 00:40:04 +08:00
*
* @param CreateFareRequest $request
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @throws \Prettus\Validator\Exceptions\ValidatorException
2018-08-27 00:40:04 +08:00
*
* @return mixed
*/
public function store(CreateFareRequest $request)
{
$input = $request->all();
2018-03-23 06:48:57 +08:00
$fare = $this->fareRepo->create($input);
2018-03-23 06:48:57 +08:00
Flash::success('Fare saved successfully.');
return redirect(route('admin.fares.index'));
}
/**
* Display the specified Fare.
2018-08-27 00:40:04 +08:00
*
* @param int $id
*
* @return mixed
*/
public function show($id)
{
2018-03-23 06:48:57 +08:00
$fare = $this->fareRepo->findWithoutFail($id);
if (empty($fare)) {
Flash::error('Fare not found');
return redirect(route('admin.fares.index'));
}
return view('admin.fares.show', [
'fare' => $fare,
]);
}
/**
* Show the form for editing the specified Fare.
2018-08-27 00:40:04 +08:00
*
* @param int $id
*
* @return mixed
*/
public function edit($id)
{
2018-03-23 06:48:57 +08:00
$fare = $this->fareRepo->findWithoutFail($id);
if (empty($fare)) {
Flash::error('Fare not found');
return redirect(route('admin.fares.index'));
}
return view('admin.fares.edit', [
'fare' => $fare,
'fare_types' => FareType::select(),
]);
}
/**
* Update the specified Fare in storage.
2018-08-27 00:40:04 +08:00
*
* @param int $id
* @param UpdateFareRequest $request
2018-08-27 00:40:04 +08:00
*
2018-02-21 12:33:09 +08:00
* @throws \Prettus\Validator\Exceptions\ValidatorException
2018-08-27 00:40:04 +08:00
*
* @return mixed
*/
public function update($id, UpdateFareRequest $request)
{
2018-03-23 06:48:57 +08:00
$fare = $this->fareRepo->findWithoutFail($id);
if (empty($fare)) {
Flash::error('Fare not found');
return redirect(route('admin.fares.index'));
}
2017-06-11 11:17:45 +08:00
2018-03-23 06:48:57 +08:00
$fare = $this->fareRepo->update($request->all(), $id);
2018-03-23 06:48:57 +08:00
Flash::success('Fare updated successfully.');
return redirect(route('admin.fares.index'));
}
/**
* Remove the specified Fare from storage.
2018-08-27 00:40:04 +08:00
*
* @param int $id
*
* @return mixed
*/
public function destroy($id)
{
2018-03-23 06:48:57 +08:00
$fare = $this->fareRepo->findWithoutFail($id);
if (empty($fare)) {
Flash::error('Fare not found');
return redirect(route('admin.fares.index'));
}
2017-06-11 11:17:45 +08:00
2018-03-23 06:48:57 +08:00
$this->fareRepo->delete($id);
2018-03-23 06:48:57 +08:00
Flash::success('Fare deleted successfully.');
return redirect(route('admin.fares.index'));
}
2018-03-23 06:48:57 +08:00
/**
* Run the aircraft exporter
2018-08-27 00:40:04 +08:00
*
2018-03-23 06:48:57 +08:00
* @param Request $request
2018-08-27 00:40:04 +08:00
*
2018-03-23 06:48:57 +08:00
* @throws \League\Csv\Exception
2018-08-27 00:40:04 +08:00
*
* @return \Symfony\Component\HttpFoundation\BinaryFileResponse
2018-03-23 06:48:57 +08:00
*/
public function export(Request $request)
{
$exporter = app(ExportService::class);
$fares = $this->fareRepo->all();
$path = $exporter->exportFares($fares);
return response()
->download($path, 'fares.csv', [
'content-type' => 'text/csv',
])
->deleteFileAfterSend(true);
}
/**
* @param Request $request
2018-08-27 00:40:04 +08:00
*
2018-03-23 06:48:57 +08:00
* @throws \Illuminate\Validation\ValidationException
2018-08-27 00:40:04 +08:00
*
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
2018-03-23 06:48:57 +08:00
*/
public function import(Request $request)
{
$logs = [
'success' => [],
2018-03-23 23:37:34 +08:00
'errors' => [],
2018-03-23 06:48:57 +08:00
];
if ($request->isMethod('post')) {
$logs = $this->importFile($request, ImportExportType::FARES);
2018-03-23 06:48:57 +08:00
}
return view('admin.fares.import', [
'logs' => $logs,
]);
}
}