mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
638a7b2d91
* Extract method/cleanup * Remove apiStore method that is unusued since api controllers. * Use proper model exception * Remove old user importer. This is now supported by the general importer framework. * Refactor AssetsController methods. This is a giant diff without many functional changes, mostly cosmetic. I've pulled a number of methods out of assetscontroller, preferring instead to create some more targetted controllers for related actions. I think this cleans up the file some, and suggests some places for future targetted improvement. Fix weird missing things. * Fix Unit test failing after date changes. * Pass valid string to be translated. * Some method cleanup for codacy. * Extract trait for common checkout uses and codacy fixes.
250 lines
9 KiB
PHP
250 lines
9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Http\Controllers\CheckInOutRequest;
|
|
use App\Models\Asset;
|
|
use App\Models\Setting;
|
|
use App\Models\User;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class BulkAssetsController extends Controller
|
|
{
|
|
use CheckInOutRequest;
|
|
/**
|
|
* Display the bulk edit page.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @return View
|
|
* @internal param int $assetId
|
|
* @since [v2.0]
|
|
*/
|
|
public function edit(Request $request)
|
|
{
|
|
$this->authorize('update', Asset::class);
|
|
|
|
if (!$request->has('ids')) {
|
|
return redirect()->back()->with('error', 'No assets selected');
|
|
}
|
|
|
|
$asset_ids = array_keys($request->input('ids'));
|
|
|
|
if ($request->has('bulk_actions')) {
|
|
switch($request->input('bulk_actions')) {
|
|
case 'labels':
|
|
return view('hardware/labels')
|
|
->with('assets', Asset::find($asset_ids))
|
|
->with('settings', Setting::getSettings())
|
|
->with('count', 0);
|
|
case 'delete':
|
|
$assets = Asset::with('assignedTo', 'location')->find($asset_ids);
|
|
$assets->each(function ($asset) {
|
|
$this->authorize('delete', $asset);
|
|
});
|
|
return view('hardware/bulk-delete')->with('assets', $assets);
|
|
case 'edit':
|
|
return view('hardware/bulk')
|
|
->with('assets', request('ids'))
|
|
->with('statuslabel_list', Helper::statusLabelList());
|
|
}
|
|
}
|
|
return redirect()->back()->with('error', 'No action selected');
|
|
}
|
|
|
|
/**
|
|
* Save bulk edits
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @return Redirect
|
|
* @internal param array $assets
|
|
* @since [v2.0]
|
|
*/
|
|
public function update(Request $request)
|
|
{
|
|
$this->authorize('update', Asset::class);
|
|
|
|
\Log::debug($request->input('ids'));
|
|
|
|
if(!$request->has('ids') || count($request->input('ids')) <= 0) {
|
|
return redirect()->route("hardware.index")->with('warning', trans('No assets selected, so nothing was updated.'));
|
|
}
|
|
|
|
$assets = array_keys($request->input('ids'));
|
|
|
|
if (($request->has('purchase_date'))
|
|
|| ($request->has('purchase_cost'))
|
|
|| ($request->has('supplier_id'))
|
|
|| ($request->has('order_number'))
|
|
|| ($request->has('warranty_months'))
|
|
|| ($request->has('rtd_location_id'))
|
|
|| ($request->has('requestable'))
|
|
|| ($request->has('company_id'))
|
|
|| ($request->has('status_id'))
|
|
|| ($request->has('model_id'))
|
|
) {
|
|
foreach ($assets as $assetId) {
|
|
$this->update_array = [];
|
|
|
|
$this->conditionallyAddItem('purchase_date')
|
|
->conditionallyAddItem('model_id')
|
|
->conditionallyAddItem('order_number')
|
|
->conditionallyAddItem('requestable')
|
|
->conditionallyAddItem('status_id')
|
|
->conditionallyAddItem('supplier_id')
|
|
->conditionallyAddItem('warranty_months');
|
|
|
|
if ($request->has('purchase_cost')) {
|
|
$this->update_array['purchase_cost'] = Helper::ParseFloat($request->input('purchase_cost'));
|
|
}
|
|
|
|
if ($request->has('company_id')) {
|
|
$this->update_array['company_id'] = $request->input('company_id');
|
|
if ($request->input('company_id')=="clear") {
|
|
$this->update_array['company_id'] = null;
|
|
}
|
|
}
|
|
|
|
if ($request->has('rtd_location_id')) {
|
|
$this->update_array['rtd_location_id'] = $request->input('rtd_location_id');
|
|
if (($request->has('update_real_loc')) && (($request->input('update_real_loc')) == '1')) {
|
|
$this->update_array['location_id'] = $request->input('rtd_location_id');
|
|
}
|
|
}
|
|
|
|
DB::table('assets')
|
|
->where('id', $assetId)
|
|
->update($this->update_array);
|
|
} // endforeach
|
|
return redirect()->route("hardware.index")->with('success', trans('admin/hardware/message.update.success'));
|
|
// no values given, nothing to update
|
|
}
|
|
return redirect()->route("hardware.index")->with('warning', trans('admin/hardware/message.update.nothing_updated'));
|
|
|
|
}
|
|
|
|
/**
|
|
* Array to store update data per item
|
|
* @var Array
|
|
*/
|
|
private $update_array;
|
|
/**
|
|
* Adds parameter to update array for an item if it exists in request
|
|
* @param String $field field name
|
|
* @return this Model for Chaining
|
|
*/
|
|
protected function conditionallyAddItem($field)
|
|
{
|
|
if(request()->has($field)) {
|
|
$this->update_array[$field] = request()->input($field);
|
|
}
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Save bulk deleted.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @return View
|
|
* @internal param array $assets
|
|
* @since [v2.0]
|
|
*/
|
|
public function destroy(Request $request)
|
|
{
|
|
$this->authorize('delete', Asset::class);
|
|
|
|
if ($request->has('ids')) {
|
|
$assets = Asset::find($request->get('ids'));
|
|
foreach ($assets as $asset) {
|
|
$update_array['deleted_at'] = date('Y-m-d H:i:s');
|
|
$update_array['assigned_to'] = null;
|
|
|
|
DB::table('assets')
|
|
->where('id', $asset->id)
|
|
->update($update_array);
|
|
} // endforeach
|
|
return redirect()->to("hardware")->with('success', trans('admin/hardware/message.delete.success'));
|
|
// no values given, nothing to update
|
|
}
|
|
return redirect()->to("hardware")->with('info', trans('admin/hardware/message.delete.nothing_updated'));
|
|
}
|
|
|
|
/**
|
|
* Show Bulk Checkout Page
|
|
* @return View View to checkout multiple assets
|
|
*/
|
|
public function showCheckout()
|
|
{
|
|
$this->authorize('checkout', Asset::class);
|
|
// Filter out assets that are not deployable.
|
|
|
|
return view('hardware/bulk-checkout');
|
|
}
|
|
|
|
/**
|
|
* Process Multiple Checkout Request
|
|
* @return View
|
|
*/
|
|
public function storeCheckout(Request $request)
|
|
{
|
|
try {
|
|
$admin = Auth::user();
|
|
|
|
$target = $this->determineCheckoutTarget();
|
|
|
|
if (!is_array($request->get('selected_assets'))) {
|
|
return redirect()->route('hardware/bulkcheckout')->withInput()->with('error', trans('admin/hardware/message.checkout.no_assets_selected'));
|
|
}
|
|
|
|
$asset_ids = array_filter($request->get('selected_assets'));
|
|
|
|
foreach ($asset_ids as $asset_id) {
|
|
if ($target->id == $asset_id && request('checkout_to_type') =='asset') {
|
|
return redirect()->back()->with('error', 'You cannot check an asset out to itself.');
|
|
}
|
|
}
|
|
$checkout_at = date("Y-m-d H:i:s");
|
|
if (($request->has('checkout_at')) && ($request->get('checkout_at')!= date("Y-m-d"))) {
|
|
$checkout_at = e($request->get('checkout_at'));
|
|
}
|
|
|
|
$expected_checkin = '';
|
|
|
|
if ($request->has('expected_checkin')) {
|
|
$expected_checkin = e($request->get('expected_checkin'));
|
|
}
|
|
|
|
$errors = [];
|
|
DB::transaction(function () use ($target, $admin, $checkout_at, $expected_checkin, $errors, $asset_ids, $request) {
|
|
|
|
foreach ($asset_ids as $asset_id) {
|
|
$asset = Asset::findOrFail($asset_id);
|
|
$this->authorize('checkout', $asset);
|
|
$error = $asset->checkOut($target, $admin, $checkout_at, $expected_checkin, e($request->get('note')), null);
|
|
|
|
if ($target->location_id!='') {
|
|
$asset->location_id = $target->location_id;
|
|
$asset->unsetEventDispatcher();
|
|
$asset->save();
|
|
}
|
|
|
|
if ($error) {
|
|
array_merge_recursive($errors, $asset->getErrors()->toArray());
|
|
}
|
|
}
|
|
});
|
|
|
|
if (!$errors) {
|
|
// Redirect to the new asset page
|
|
return redirect()->to("hardware")->with('success', trans('admin/hardware/message.checkout.success'));
|
|
}
|
|
// Redirect to the asset management page with error
|
|
return redirect()->to("hardware/bulk-checkout")->with('error', trans('admin/hardware/message.checkout.error'))->withErrors($errors);
|
|
} catch (ModelNotFoundException $e) {
|
|
return redirect()->to("hardware/bulk-checkout")->with('error', $e->getErrors());
|
|
}
|
|
}
|
|
}
|