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;
|
2021-06-29 02:27:08 -07:00
|
|
|
use App\Http\Requests\ImageUploadRequest;
|
2021-06-30 01:02:44 -07:00
|
|
|
use App\Events\CheckoutableCheckedIn;
|
|
|
|
use App\Events\ComponentCheckedIn;
|
|
|
|
use App\Models\Asset;
|
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')) {
|
2018-01-10 03:52:21 -08:00
|
|
|
$components->where('company_id','=',$request->input('company_id'));
|
|
|
|
}
|
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('category_id')) {
|
2018-04-02 16:12:19 -07:00
|
|
|
$components->where('category_id','=',$request->input('category_id'));
|
|
|
|
}
|
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('location_id')) {
|
2018-07-16 21:50:14 -07:00
|
|
|
$components->where('location_id','=',$request->input('location_id'));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-02-21 16:46:37 -08: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();
|
|
|
|
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]
|
2021-06-29 02:27:08 -07:00
|
|
|
* @param \App\Http\Requests\ImageUploadRequest $request
|
2017-01-12 19:40:20 -08:00
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2021-06-29 02:27:08 -07:00
|
|
|
public function store(ImageUploadRequest $request)
|
2017-01-12 19:40:20 -08:00
|
|
|
{
|
2017-01-26 19:16:06 -08:00
|
|
|
$this->authorize('create', Component::class);
|
|
|
|
$component = new Component;
|
|
|
|
$component->fill($request->all());
|
2021-06-29 02:27:08 -07:00
|
|
|
$component = $request->handleImages($component);
|
2017-01-26 19:16:06 -08:00
|
|
|
|
|
|
|
if ($component->save()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', $component, trans('admin/components/message.create.success')));
|
|
|
|
}
|
|
|
|
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]
|
2021-06-29 02:27:08 -07:00
|
|
|
* @param \App\Http\Requests\ImageUploadRequest $request
|
2017-01-12 19:40:20 -08:00
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2021-06-29 02:27:08 -07:00
|
|
|
public function update(ImageUploadRequest $request, $id)
|
2017-01-12 19:40:20 -08:00
|
|
|
{
|
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());
|
2021-06-29 02:27:08 -07:00
|
|
|
$component = $request->handleImages($component);
|
|
|
|
|
2017-01-26 19:16:06 -08:00
|
|
|
|
|
|
|
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();
|
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
|
|
|
|
*/
|
|
|
|
public function getAssets(Request $request, $id)
|
|
|
|
{
|
2017-12-12 06:26:37 -08:00
|
|
|
$this->authorize('view', \App\Models\Asset::class);
|
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();
|
2017-10-07 06:56:39 -07:00
|
|
|
return (new ComponentsTransformer)->transformCheckedoutComponents($assets, $total);
|
2017-02-21 14:26:46 -08:00
|
|
|
}
|
2021-06-30 01:02:44 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate and checkout the component.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* t
|
|
|
|
* @since [v5.1.8]
|
|
|
|
* @param Request $request
|
|
|
|
* @param int $componentId
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
|
|
*/
|
|
|
|
public function checkout(Request $request, $componentId)
|
|
|
|
{
|
|
|
|
// Check if the component exists
|
|
|
|
if (is_null($component = Component::find($componentId))) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/components/message.does_not_exist')));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->authorize('checkout', $component);
|
|
|
|
|
|
|
|
|
|
|
|
if ($component->numRemaining() > $request->get('assigned_qty')) {
|
|
|
|
|
|
|
|
if (!$asset = Asset::find($request->input('assigned_to'))) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/hardware/message.does_not_exist')));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the accessory data
|
|
|
|
$component->assigned_to = $request->input('assigned_to');
|
|
|
|
|
|
|
|
$component->assets()->attach($component->id, [
|
|
|
|
'component_id' => $component->id,
|
|
|
|
'created_at' => \Carbon::now(),
|
2021-07-08 16:04:52 -07:00
|
|
|
'assigned_qty' => $request->get('assigned_qty', 1),
|
2021-06-30 01:02:44 -07:00
|
|
|
'user_id' => \Auth::id(),
|
|
|
|
'asset_id' => $request->get('assigned_to')
|
|
|
|
]);
|
|
|
|
|
|
|
|
$component->logCheckout($request->input('note'), $asset);
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/components/message.checkout.success')));
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, 'Not enough components remaining: '.$component->numRemaining().' remaining, '.$request->get('assigned_qty').' requested.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate and store checkin data.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v5.1.8]
|
|
|
|
* @param Request $request
|
|
|
|
* @param $component_asset_id
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
|
|
*/
|
|
|
|
public function checkin(Request $request, $component_asset_id)
|
|
|
|
{
|
|
|
|
if ($component_assets = \DB::table('components_assets')->find($component_asset_id)) {
|
|
|
|
|
|
|
|
if (is_null($component = Component::find($component_assets->component_id))) {
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/components/message.not_found')));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->authorize('checkin', $component);
|
|
|
|
|
|
|
|
$max_to_checkin = $component_assets->assigned_qty;
|
|
|
|
|
|
|
|
if ($max_to_checkin > 1) {
|
|
|
|
|
|
|
|
$validator = \Validator::make($request->all(), [
|
|
|
|
"checkin_qty" => "required|numeric|between:1,$max_to_checkin"
|
|
|
|
]);
|
|
|
|
|
|
|
|
if ($validator->fails()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, 'Checkin quantity must be between 1 and '.$max_to_checkin));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Validation passed, so let's figure out what we have to do here.
|
|
|
|
$qty_remaining_in_checkout = ($component_assets->assigned_qty - (int)$request->input('checkin_qty', 1));
|
|
|
|
|
|
|
|
// We have to modify the record to reflect the new qty that's
|
|
|
|
// actually checked out.
|
|
|
|
$component_assets->assigned_qty = $qty_remaining_in_checkout;
|
|
|
|
|
|
|
|
\Log::debug($component_asset_id.' - '.$qty_remaining_in_checkout.' remaining in record '.$component_assets->id);
|
|
|
|
|
|
|
|
\DB::table('components_assets')->where('id',
|
|
|
|
$component_asset_id)->update(['assigned_qty' => $qty_remaining_in_checkout]);
|
|
|
|
|
|
|
|
// If the checked-in qty is exactly the same as the assigned_qty,
|
|
|
|
// we can simply delete the associated components_assets record
|
|
|
|
if ($qty_remaining_in_checkout == 0) {
|
|
|
|
\DB::table('components_assets')->where('id', '=', $component_asset_id)->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$asset = Asset::find($component_assets->asset_id);
|
|
|
|
|
|
|
|
event(new CheckoutableCheckedIn($component, $asset, \Auth::user(), $request->input('note'), \Carbon::now()));
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/components/message.checkin.success')));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, 'No matching checkouts for that component join record'));
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-12 19:40:20 -08:00
|
|
|
}
|