2017-01-12 19:40:20 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
2019-03-13 20:12:03 -07:00
|
|
|
use App\Helpers\Helper;
|
2017-01-12 19:40:20 -08:00
|
|
|
use App\Http\Controllers\Controller;
|
2017-01-26 19:16:06 -08:00
|
|
|
use App\Http\Transformers\ComponentsTransformer;
|
|
|
|
use App\Models\Company;
|
2019-03-13 20:12:03 -07:00
|
|
|
use App\Models\Component;
|
|
|
|
use Illuminate\Http\Request;
|
2017-01-12 19:40:20 -08:00
|
|
|
|
|
|
|
class ComponentsController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2017-01-26 19:16:06 -08:00
|
|
|
public function index(Request $request)
|
2017-01-12 19:40:20 -08:00
|
|
|
{
|
2017-01-26 19:16:06 -08:00
|
|
|
$this->authorize('view', Component::class);
|
2018-07-16 14:13:07 -07:00
|
|
|
$components = Company::scopeCompanyables(Component::select('components.*')
|
2017-01-26 19:16:06 -08:00
|
|
|
->with('company', 'location', 'category'));
|
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('search')) {
|
2017-01-26 19:16:06 -08:00
|
|
|
$components = $components->TextSearch($request->input('search'));
|
|
|
|
}
|
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('company_id')) {
|
2021-06-10 13:15:52 -07:00
|
|
|
$components->where('company_id', '=', $request->input('company_id'));
|
2018-01-10 03:52:21 -08:00
|
|
|
}
|
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('category_id')) {
|
2021-06-10 13:15:52 -07:00
|
|
|
$components->where('category_id', '=', $request->input('category_id'));
|
2018-04-02 16:12:19 -07:00
|
|
|
}
|
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('location_id')) {
|
2021-06-10 13:15:52 -07:00
|
|
|
$components->where('location_id', '=', $request->input('location_id'));
|
2018-07-16 21:50:14 -07:00
|
|
|
}
|
|
|
|
|
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 = (($components) && ($request->get('offset') > $components->count())) ? $components->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');
|
2017-01-26 19:16:06 -08:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
$allowed_columns = ['id', 'name', 'min_amt', 'order_number', 'serial', 'purchase_date', 'purchase_cost', 'company', 'category', 'qty', 'location', 'image'];
|
2017-01-26 19:16:06 -08:00
|
|
|
$order = $request->input('order') === 'asc' ? 'asc' : 'desc';
|
|
|
|
$sort = in_array($request->input('sort'), $allowed_columns) ? $request->input('sort') : 'created_at';
|
|
|
|
|
|
|
|
switch ($sort) {
|
|
|
|
case 'category':
|
|
|
|
$components = $components->OrderCategory($order);
|
|
|
|
break;
|
|
|
|
case 'location':
|
|
|
|
$components = $components->OrderLocation($order);
|
|
|
|
break;
|
|
|
|
case 'company':
|
|
|
|
$components = $components->OrderCompany($order);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$components = $components->orderBy($sort, $order);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$total = $components->count();
|
|
|
|
$components = $components->skip($offset)->take($limit)->get();
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2017-01-26 19:16:06 -08:00
|
|
|
return (new ComponentsTransformer)->transformComponents($components, $total);
|
2017-01-12 19:40:20 -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)
|
|
|
|
{
|
2017-01-26 19:16:06 -08:00
|
|
|
$this->authorize('create', Component::class);
|
|
|
|
$component = new Component;
|
|
|
|
$component->fill($request->all());
|
|
|
|
|
|
|
|
if ($component->save()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', $component, trans('admin/components/message.create.success')));
|
|
|
|
}
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2017-01-26 19:16:06 -08:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $component->getErrors()));
|
2017-01-12 19:40:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
2017-01-26 19:16:06 -08:00
|
|
|
$this->authorize('view', Component::class);
|
2018-02-24 19:01:34 -08:00
|
|
|
$component = Component::findOrFail($id);
|
2017-03-14 08:37:39 -07:00
|
|
|
|
|
|
|
if ($component) {
|
|
|
|
return (new ComponentsTransformer)->transformComponent($component);
|
|
|
|
}
|
2017-01-12 19:40:20 -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', Component::class);
|
2017-01-26 19:16:06 -08:00
|
|
|
$component = Component::findOrFail($id);
|
|
|
|
$component->fill($request->all());
|
|
|
|
|
|
|
|
if ($component->save()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', $component, trans('admin/components/message.update.success')));
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $component->getErrors()));
|
2017-01-12 19:40:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2017-01-26 19:16:06 -08:00
|
|
|
$this->authorize('delete', Component::class);
|
|
|
|
$component = Component::findOrFail($id);
|
|
|
|
$this->authorize('delete', $component);
|
|
|
|
$component->delete();
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2017-03-31 13:48:11 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/components/message.delete.success')));
|
2017-01-12 19:40:20 -08:00
|
|
|
}
|
|
|
|
|
2017-02-21 14:26:46 -08:00
|
|
|
/**
|
|
|
|
* Display all assets attached to a component
|
|
|
|
*
|
|
|
|
* @author [A. Bergamasco] [@vjandrea]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @param Request $request
|
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
2021-06-10 13:15:52 -07:00
|
|
|
*/
|
2017-02-21 14:26:46 -08:00
|
|
|
public function getAssets(Request $request, $id)
|
|
|
|
{
|
2017-12-12 06:26:37 -08:00
|
|
|
$this->authorize('view', \App\Models\Asset::class);
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2017-02-21 14:26:46 -08:00
|
|
|
$component = Component::findOrFail($id);
|
|
|
|
$assets = $component->assets();
|
|
|
|
|
|
|
|
$offset = request('offset', 0);
|
|
|
|
$limit = $request->input('limit', 50);
|
|
|
|
$total = $assets->count();
|
|
|
|
$assets = $assets->skip($offset)->take($limit)->get();
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2017-10-07 06:56:39 -07:00
|
|
|
return (new ComponentsTransformer)->transformCheckedoutComponents($assets, $total);
|
2017-02-21 14:26:46 -08:00
|
|
|
}
|
2017-01-12 19:40:20 -08:00
|
|
|
}
|