226 lines
6.0 KiB
PHP
226 lines
6.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Requests\ImportRequest;
|
|
use App\Interfaces\Controller;
|
|
use App\Models\Enums\ExpenseType;
|
|
use App\Models\Expense;
|
|
use App\Repositories\AirlineRepository;
|
|
use App\Repositories\ExpenseRepository;
|
|
use App\Services\ExportService;
|
|
use App\Services\ImportService;
|
|
use Flash;
|
|
use Illuminate\Http\Request;
|
|
use Log;
|
|
use Prettus\Repository\Criteria\RequestCriteria;
|
|
use Response;
|
|
use Storage;
|
|
|
|
/**
|
|
* Class ExpenseController
|
|
* @package App\Http\Controllers\Admin
|
|
*/
|
|
class ExpenseController extends Controller
|
|
{
|
|
private $airlineRepo,
|
|
$expenseRepo,
|
|
$importSvc;
|
|
|
|
/**
|
|
* expensesController constructor.
|
|
* @param AirlineRepository $airlineRepo
|
|
* @param ExpenseRepository $expenseRepo
|
|
* @param ImportService $importSvc
|
|
*/
|
|
public function __construct(
|
|
AirlineRepository $airlineRepo,
|
|
ExpenseRepository $expenseRepo,
|
|
ImportService $importSvc
|
|
) {
|
|
$this->airlineRepo = $airlineRepo;
|
|
$this->expenseRepo = $expenseRepo;
|
|
$this->importSvc = $importSvc;
|
|
}
|
|
|
|
/**
|
|
* Display a listing of the expenses.
|
|
* @param Request $request
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
* @throws \Prettus\Repository\Exceptions\RepositoryException
|
|
*/
|
|
public function index(Request $request)
|
|
{
|
|
$this->expenseRepo->pushCriteria(new RequestCriteria($request));
|
|
$expenses = $this->expenseRepo->findWhere([
|
|
'ref_class' => Expense::class
|
|
]);
|
|
|
|
return view('admin.expenses.index', [
|
|
'expenses' => $expenses
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new expenses.
|
|
*/
|
|
public function create()
|
|
{
|
|
return view('admin.expenses.create', [
|
|
'airlines_list' => $this->airlineRepo->selectBoxList(true),
|
|
'expense_types' => ExpenseType::select(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Store a newly created expenses in storage.
|
|
* @param Request $request
|
|
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
|
|
* @throws \Prettus\Validator\Exceptions\ValidatorException
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
$input = $request->all();
|
|
$input['ref_class'] = Expense::class;
|
|
$this->expenseRepo->create($input);
|
|
|
|
Flash::success('Expense saved successfully.');
|
|
|
|
return redirect(route('admin.expenses.index'));
|
|
}
|
|
|
|
/**
|
|
* Display the specified expenses.
|
|
* @param int $id
|
|
* @return mixed
|
|
*/
|
|
public function show($id)
|
|
{
|
|
$expenses = $this->expenseRepo->findWithoutFail($id);
|
|
|
|
if (empty($expenses)) {
|
|
Flash::error('expenses not found');
|
|
|
|
return redirect(route('admin.expenses.index'));
|
|
}
|
|
|
|
return view('admin.expenses.show', [
|
|
'expenses' => $expenses,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified expenses.
|
|
* @param int $id
|
|
* @return Response
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
$expense = $this->expenseRepo->findWithoutFail($id);
|
|
|
|
if (empty($expense)) {
|
|
Flash::error('Expense not found');
|
|
|
|
return redirect(route('admin.expenses.index'));
|
|
}
|
|
|
|
return view('admin.expenses.edit', [
|
|
'expense' => $expense,
|
|
'airlines_list' => $this->airlineRepo->selectBoxList(true),
|
|
'expense_types' => ExpenseType::select(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Update the specified expenses in storage.
|
|
* @param int $id
|
|
* @param Request $request
|
|
* @return Response
|
|
* @throws \Prettus\Validator\Exceptions\ValidatorException
|
|
*/
|
|
public function update($id, Request $request)
|
|
{
|
|
$expenses = $this->expenseRepo->findWithoutFail($id);
|
|
|
|
if (empty($expenses)) {
|
|
Flash::error('Expense not found');
|
|
|
|
return redirect(route('admin.expenses.index'));
|
|
}
|
|
|
|
$this->expenseRepo->update($request->all(), $id);
|
|
|
|
Flash::success('Expense updated successfully.');
|
|
|
|
return redirect(route('admin.expenses.index'));
|
|
}
|
|
|
|
/**
|
|
* Remove the specified expenses from storage.
|
|
* @param int $id
|
|
* @return Response
|
|
*/
|
|
public function destroy($id)
|
|
{
|
|
$expenses = $this->expenseRepo->findWithoutFail($id);
|
|
|
|
if (empty($expenses)) {
|
|
Flash::error('Expense not found');
|
|
return redirect(route('admin.expenses.index'));
|
|
}
|
|
|
|
$this->expenseRepo->delete($id);
|
|
|
|
Flash::success('Expense deleted successfully.');
|
|
return redirect(route('admin.expenses.index'));
|
|
}
|
|
|
|
/**
|
|
* Run the airport exporter
|
|
* @param Request $request
|
|
* @return \Symfony\Component\HttpFoundation\BinaryFileResponse
|
|
* @throws \League\Csv\Exception
|
|
*/
|
|
public function export(Request $request)
|
|
{
|
|
$exporter = app(ExportService::class);
|
|
$expenses = $this->expenseRepo->all();
|
|
|
|
$path = $exporter->exportExpenses($expenses);
|
|
return response()
|
|
->download($path, 'expenses.csv', [
|
|
'content-type' => 'text/csv',
|
|
])
|
|
->deleteFileAfterSend(true);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param Request $request
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
* @throws \Illuminate\Validation\ValidationException
|
|
*/
|
|
public function import(Request $request)
|
|
{
|
|
$logs = [
|
|
'success' => [],
|
|
'errors' => [],
|
|
];
|
|
|
|
if ($request->isMethod('post')) {
|
|
ImportRequest::validate($request);
|
|
$path = Storage::putFileAs(
|
|
'import', $request->file('csv_file'), 'import_expenses.csv'
|
|
);
|
|
|
|
$path = storage_path('app/'.$path);
|
|
Log::info('Uploaded expenses import file to '.$path);
|
|
$logs = $this->importSvc->importExpenses($path);
|
|
}
|
|
|
|
return view('admin.expenses.import', [
|
|
'logs' => $logs,
|
|
]);
|
|
}
|
|
}
|