2017-02-01 17:59:03 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
|
|
|
use App\Helpers\Helper;
|
2019-03-13 20:12:03 -07:00
|
|
|
use App\Http\Controllers\Controller;
|
2017-03-11 08:03:16 -08:00
|
|
|
use App\Http\Transformers\DepreciationsTransformer;
|
2019-03-13 20:12:03 -07:00
|
|
|
use App\Models\Depreciation;
|
|
|
|
use Illuminate\Http\Request;
|
2017-02-01 17:59:03 -08:00
|
|
|
|
|
|
|
class DepreciationsController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
|
|
|
$this->authorize('view', Depreciation::class);
|
2021-08-16 18:14:10 -07:00
|
|
|
$allowed_columns = ['id','name','months','depreciation_min','created_at'];
|
2017-02-01 17:59:03 -08:00
|
|
|
|
2021-08-16 18:14:10 -07:00
|
|
|
$depreciations = Depreciation::select('id','name','months','depreciation_min','user_id','created_at','updated_at');
|
2017-02-01 17:59:03 -08:00
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('search')) {
|
2017-02-01 17:59:03 -08:00
|
|
|
$depreciations = $depreciations->TextSearch($request->input('search'));
|
|
|
|
}
|
|
|
|
|
2020-02-04 12:32:24 -08:00
|
|
|
// Set the offset to the API call's offset, unless the offset is higher than the actual count of items in which
|
|
|
|
// case we override with the actual count, so we should return 0 items.
|
|
|
|
$offset = (($depreciations) && ($request->get('offset') > $depreciations->count())) ? $depreciations->count() : $request->get('offset', 0);
|
2019-09-03 14:02:08 -07:00
|
|
|
|
|
|
|
// Check to make sure the limit is not higher than the max allowed
|
2019-09-03 20:28:49 -07:00
|
|
|
((config('app.max_results') >= $request->input('limit')) && ($request->filled('limit'))) ? $limit = $request->input('limit') : $limit = config('app.max_results');
|
2019-09-03 14:02:08 -07:00
|
|
|
|
2017-02-01 17:59:03 -08:00
|
|
|
$order = $request->input('order') === 'asc' ? 'asc' : 'desc';
|
|
|
|
$sort = in_array($request->input('sort'), $allowed_columns) ? $request->input('sort') : 'created_at';
|
|
|
|
$depreciations->orderBy($sort, $order);
|
|
|
|
|
|
|
|
$total = $depreciations->count();
|
|
|
|
$depreciations = $depreciations->skip($offset)->take($limit)->get();
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2017-03-11 08:03:16 -08:00
|
|
|
return (new DepreciationsTransformer)->transformDepreciations($depreciations, $total);
|
2017-02-01 17:59:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created resource in storage.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function store(Request $request)
|
|
|
|
{
|
|
|
|
$this->authorize('create', Depreciation::class);
|
|
|
|
$depreciation = new Depreciation;
|
|
|
|
$depreciation->fill($request->all());
|
|
|
|
|
|
|
|
if ($depreciation->save()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', $depreciation, trans('admin/depreciations/message.create.success')));
|
|
|
|
}
|
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $depreciation->getErrors()));
|
2017-02-01 17:59:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
|
|
|
$this->authorize('view', Depreciation::class);
|
|
|
|
$depreciation = Depreciation::findOrFail($id);
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2017-03-11 08:03:16 -08:00
|
|
|
return (new DepreciationsTransformer)->transformDepreciation($depreciation);
|
2017-02-01 17:59:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified resource in storage.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function update(Request $request, $id)
|
|
|
|
{
|
2018-07-12 18:28:02 -07:00
|
|
|
$this->authorize('update', Depreciation::class);
|
2017-02-01 17:59:03 -08:00
|
|
|
$depreciation = Depreciation::findOrFail($id);
|
|
|
|
$depreciation->fill($request->all());
|
|
|
|
|
|
|
|
if ($depreciation->save()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', $depreciation, trans('admin/depreciations/message.update.success')));
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $depreciation->getErrors()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified resource from storage.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
|
|
|
$this->authorize('delete', Depreciation::class);
|
2018-08-01 00:06:41 -07:00
|
|
|
$depreciation = Depreciation::withCount('models as models_count')->findOrFail($id);
|
2017-02-01 17:59:03 -08:00
|
|
|
$this->authorize('delete', $depreciation);
|
2017-03-11 08:03:16 -08:00
|
|
|
|
2018-08-01 00:06:41 -07:00
|
|
|
if ($depreciation->models_count > 0) {
|
2017-03-11 08:03:16 -08:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', trans('admin/depreciations/message.assoc_users')));
|
|
|
|
}
|
|
|
|
|
2017-02-01 17:59:03 -08:00
|
|
|
$depreciation->delete();
|
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/depreciations/message.delete.success')));
|
2017-02-01 17:59:03 -08:00
|
|
|
}
|
|
|
|
}
|