1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Http/Controllers/TaxRateApiController.php
2019-01-30 22:25:37 +11:00

193 lines
4.8 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Http\Requests\TaxRateRequest;
use App\Http\Requests\CreateTaxRateRequest;
use App\Http\Requests\UpdateTaxRateRequest;
use App\Models\TaxRate;
use App\Ninja\Repositories\TaxRateRepository;
class TaxRateApiController extends BaseAPIController
{
/**
* @var TaxRateRepository
*/
protected $taxRateRepo;
/**
* @var string
*/
protected $entityType = ENTITY_TAX_RATE;
/**
* TaxRateApiController constructor.
*
* @param TaxRateRepository $taxRateRepo
*/
public function __construct(TaxRateRepository $taxRateRepo)
{
parent::__construct();
$this->taxRateRepo = $taxRateRepo;
}
/**
* @SWG\Get(
* path="/tax_rates",
* summary="List tax rates",
* operationId="listTaxRates",
* tags={"tax_rate"},
* @SWG\Response(
* response=200,
* description="A list of tax rates",
* @SWG\Schema(type="array", @SWG\Items(ref="#/definitions/TaxRate"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function index()
{
$taxRates = TaxRate::scope()
->withTrashed()
->orderBy('created_at', 'desc');
return $this->listResponse($taxRates);
}
/**
* @SWG\Get(
* path="/tax_rates/{tax_rate_id}",
* summary="Retrieve a tax rate",
* operationId="getTaxRate",
* tags={"tax_rate"},
* @SWG\Parameter(
* in="path",
* name="tax_rate_id",
* type="integer",
* required=true
* ),
* @SWG\Response(
* response=200,
* description="A single tax rate",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/TaxRate"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function show(TaxRateRequest $request)
{
return $this->itemResponse($request->entity());
}
/**
* @SWG\Post(
* path="/tax_rates",
* summary="Create a tax rate",
* operationId="createTaxRate",
* tags={"tax_rate"},
* @SWG\Parameter(
* in="body",
* name="tax_rate",
* @SWG\Schema(ref="#/definitions/TaxRate")
* ),
* @SWG\Response(
* response=200,
* description="New tax rate",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/TaxRate"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function store(CreateTaxRateRequest $request)
{
$taxRate = $this->taxRateRepo->save($request->input());
return $this->itemResponse($taxRate);
}
/**
* @SWG\Put(
* path="/tax_rates/{tax_rate_id}",
* summary="Update a tax rate",
* operationId="updateTaxRate",
* tags={"tax_rate"},
* @SWG\Parameter(
* in="path",
* name="tax_rate_id",
* type="integer",
* required=true
* ),
* @SWG\Parameter(
* in="body",
* name="tax_rate",
* @SWG\Schema(ref="#/definitions/TaxRate")
* ),
* @SWG\Response(
* response=200,
* description="Updated tax rate",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/TaxRate"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*
* @param mixed $publicId
*/
public function update(UpdateTaxRateRequest $request, $publicId)
{
if ($request->action) {
return $this->handleAction($request);
}
$data = $request->input();
$data['public_id'] = $publicId;
$taxRate = $this->taxRateRepo->save($data, $request->entity());
return $this->itemResponse($taxRate);
}
/**
* @SWG\Delete(
* path="/tax_rates/{tax_rate_id}",
* summary="Delete a tax rate",
* operationId="deleteTaxRate",
* tags={"tax_rate"},
* @SWG\Parameter(
* in="path",
* name="tax_rate_id",
* type="integer",
* required=true
* ),
* @SWG\Response(
* response=200,
* description="Deleted tax rate",
* @SWG\Schema(type="object", @SWG\Items(ref="#/definitions/TaxRate"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
public function destroy(UpdateTaxRateRequest $request)
{
$entity = $request->entity();
$this->taxRateRepo->delete($entity);
return $this->itemResponse($entity);
}
}