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;
|
2023-04-06 22:02:57 -07:00
|
|
|
use Illuminate\Support\Facades\Validator;
|
2023-08-15 14:31:36 -07:00
|
|
|
use Illuminate\Database\Query\Builder;
|
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);
|
2021-09-21 19:59:23 -07:00
|
|
|
|
|
|
|
// This array is what determines which fields should be allowed to be sorted on ON the table itself, no relations
|
|
|
|
// Relations will be handled in query scopes a little further down.
|
|
|
|
$allowed_columns =
|
|
|
|
[
|
|
|
|
'id',
|
|
|
|
'name',
|
|
|
|
'min_amt',
|
|
|
|
'order_number',
|
|
|
|
'serial',
|
|
|
|
'purchase_date',
|
|
|
|
'purchase_cost',
|
|
|
|
'qty',
|
|
|
|
'image',
|
2022-03-03 20:29:25 -08:00
|
|
|
'notes',
|
2021-09-21 19:59:23 -07:00
|
|
|
];
|
|
|
|
|
2023-06-22 13:09:08 -07:00
|
|
|
$components = Component::select('components.*')
|
|
|
|
->with('company', 'location', 'category', 'assets', 'supplier');
|
2017-01-26 19:16:06 -08:00
|
|
|
|
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'));
|
|
|
|
}
|
|
|
|
|
2022-06-28 19:59:45 -07:00
|
|
|
if ($request->filled('name')) {
|
|
|
|
$components->where('name', '=', $request->input('name'));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-04-13 11:13:45 -07:00
|
|
|
if ($request->filled('supplier_id')) {
|
|
|
|
$components->where('supplier_id', '=', $request->input('supplier_id'));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-03-03 20:29:25 -08:00
|
|
|
if ($request->filled('notes')) {
|
|
|
|
$components->where('notes','=',$request->input('notes'));
|
|
|
|
}
|
|
|
|
|
2023-04-12 11:28:46 -07:00
|
|
|
// Make sure the offset and limit are actually integers and do not exceed system limits
|
2023-04-15 17:28:25 -07:00
|
|
|
$offset = ($request->input('offset') > $components->count()) ? $components->count() : abs($request->input('offset'));
|
2023-04-16 08:46:39 -07:00
|
|
|
$limit = app('api_limit_value');
|
2017-01-26 19:16:06 -08:00
|
|
|
|
|
|
|
$order = $request->input('order') === 'asc' ? 'asc' : 'desc';
|
2021-09-21 19:59:23 -07:00
|
|
|
$sort_override = $request->input('sort');
|
|
|
|
$column_sort = in_array($sort_override, $allowed_columns) ? $sort_override : 'created_at';
|
2017-01-26 19:16:06 -08:00
|
|
|
|
2021-09-21 19:59:23 -07:00
|
|
|
switch ($sort_override) {
|
2017-01-26 19:16:06 -08:00
|
|
|
case 'category':
|
|
|
|
$components = $components->OrderCategory($order);
|
|
|
|
break;
|
|
|
|
case 'location':
|
|
|
|
$components = $components->OrderLocation($order);
|
|
|
|
break;
|
|
|
|
case 'company':
|
|
|
|
$components = $components->OrderCompany($order);
|
|
|
|
break;
|
2023-04-13 11:13:45 -07:00
|
|
|
case 'supplier':
|
|
|
|
$components = $components->OrderSupplier($order);
|
|
|
|
break;
|
2017-01-26 19:16:06 -08:00
|
|
|
default:
|
2021-09-21 19:59:23 -07:00
|
|
|
$components = $components->orderBy($column_sort, $order);
|
2017-01-26 19:16:06 -08:00
|
|
|
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]
|
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')));
|
|
|
|
}
|
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]
|
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();
|
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
|
|
|
|
*/
|
|
|
|
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);
|
2023-08-15 20:10:48 -07:00
|
|
|
|
2017-02-21 14:26:46 -08:00
|
|
|
$offset = request('offset', 0);
|
|
|
|
$limit = $request->input('limit', 50);
|
2023-08-15 20:10:48 -07:00
|
|
|
|
2023-08-15 14:31:36 -07:00
|
|
|
if ($request->filled('search')) {
|
|
|
|
$assets = $component->assets()
|
2023-08-15 20:10:48 -07:00
|
|
|
->where(function ($query) use ($request) {
|
|
|
|
$search_str = '%' . $request->input('search') . '%';
|
|
|
|
$query->where('name', 'like', $search_str)
|
|
|
|
->orWhereIn('model_id', function (Builder $query) use ($request) {
|
|
|
|
$search_str = '%' . $request->input('search') . '%';
|
|
|
|
$query->selectRaw('id')->from('models')->where('name', 'like', $search_str);
|
|
|
|
})
|
|
|
|
->orWhere('asset_tag', 'like', $search_str);
|
2023-08-15 14:31:36 -07:00
|
|
|
})
|
|
|
|
->get();
|
|
|
|
$total = $assets->count();
|
2023-08-15 20:10:48 -07:00
|
|
|
} else {
|
|
|
|
$assets = $component->assets();
|
|
|
|
|
|
|
|
$total = $assets->count();
|
|
|
|
$assets = $assets->skip($offset)->take($limit)->get();
|
2023-08-15 14:31:36 -07:00
|
|
|
}
|
|
|
|
|
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
|
2023-04-06 22:02:57 -07:00
|
|
|
if (!$component = Component::find($componentId)) {
|
2021-06-30 01:02:44 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/components/message.does_not_exist')));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->authorize('checkout', $component);
|
|
|
|
|
2023-04-06 22:02:57 -07:00
|
|
|
$validator = Validator::make($request->all(), [
|
2023-07-27 19:22:13 -07:00
|
|
|
'assigned_to' => 'required|exists:assets,id',
|
2023-04-06 22:02:57 -07:00
|
|
|
'assigned_qty' => "required|numeric|min:1|digits_between:1,".$component->numRemaining(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
if ($validator->fails()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', $validator->errors()));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure there is at least one available to checkout
|
2023-10-09 08:32:30 -07:00
|
|
|
if ($component->numRemaining() < $request->get('assigned_qty')) {
|
2023-04-06 22:02:57 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/components/message.checkout.unavailable', ['remaining' => $component->numRemaining(), 'requested' => $request->get('assigned_qty')])));
|
|
|
|
}
|
2021-06-30 01:02:44 -07:00
|
|
|
|
2021-09-23 13:02:39 -07:00
|
|
|
if ($component->numRemaining() >= $request->get('assigned_qty')) {
|
2021-06-30 01:02:44 -07:00
|
|
|
|
2023-04-07 09:42:31 -07:00
|
|
|
$asset = Asset::find($request->input('assigned_to'));
|
2021-06-30 01:02:44 -07:00
|
|
|
$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(),
|
2022-08-10 15:04:59 -07:00
|
|
|
'asset_id' => $request->get('assigned_to'),
|
|
|
|
'note' => $request->get('note'),
|
2021-06-30 01:02:44 -07:00
|
|
|
]);
|
|
|
|
|
|
|
|
$component->logCheckout($request->input('note'), $asset);
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/components/message.checkout.success')));
|
|
|
|
}
|
|
|
|
|
2023-04-06 22:02:57 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/components/message.checkout.unavailable', ['remaining' => $component->numRemaining(), 'requested' => $request->get('assigned_qty')])));
|
2021-06-30 01:02:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|