mirror of
https://github.com/snipe/snipe-it.git
synced 2026-02-05 21:05:39 +00:00
58 lines
2.9 KiB
PHP
58 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Actions\Manufacturers\DeleteManufacturerAction;
|
|
use App\Exceptions\ItemStillHasAccessories;
|
|
use App\Exceptions\ItemStillHasAssetModels;
|
|
use App\Exceptions\ItemStillHasAssets;
|
|
use App\Exceptions\ItemStillHasChildren;
|
|
use App\Exceptions\ItemStillHasComponents;
|
|
use App\Exceptions\ItemStillHasConsumables;
|
|
use App\Exceptions\ItemStillHasLicenses;
|
|
use App\Models\Manufacturer;
|
|
use Illuminate\Http\Request;
|
|
|
|
class BulkManufacturersController extends Controller
|
|
{
|
|
public function destroy(Request $request)
|
|
{
|
|
$this->authorize('delete', Manufacturer::class);
|
|
|
|
$errors = [];
|
|
$success_count = 0;
|
|
foreach ($request->ids as $id) {
|
|
$manufacturer = Manufacturer::find($id);
|
|
if (is_null($manufacturer)) {
|
|
$errors[] = trans('admin/manufacturers/message.does_not_exist');
|
|
continue;
|
|
}
|
|
try {
|
|
DeleteManufacturerAction::run(manufacturer: $manufacturer);
|
|
$success_count++;
|
|
} catch (ItemStillHasAssets $e) {
|
|
$errors[] = trans('general.bulk_delete_associations.assoc_assets_no_count', ['item_name' => $manufacturer->name, 'item' => trans('general.manufacturer')]);
|
|
} catch (ItemStillHasAccessories $e) {
|
|
$errors[] = trans('general.bulk_delete_associations.assoc_accessories_no_count', ['item_name' => $manufacturer->name, 'item' => trans('general.manufacturer')]);
|
|
} catch (ItemStillHasConsumables $e) {
|
|
$errors[] = trans('general.bulk_delete_associations.assoc_consumables_no_count', ['item_name' => $manufacturer->name, 'item' => trans('general.manufacturer')]);
|
|
} catch (ItemStillHasComponents $e) {
|
|
$errors[] = trans('general.bulk_delete_associations.assoc_components_no_count', ['item_name' => $manufacturer->name, 'item' => trans('general.manufacturer')]);
|
|
} catch (ItemStillHasLicenses $e) {
|
|
$errors[] = trans('general.bulk_delete_associations.assoc_licenses_no_count', ['item_name' => $manufacturer->name, 'item' => trans('general.manufacturer')]);;
|
|
} catch (\Exception $e) {
|
|
report($e);
|
|
$errors[] = trans('general.something_went_wrong');
|
|
}
|
|
}
|
|
if (count($errors) > 0) {
|
|
if ($success_count > 0) {
|
|
return redirect()->route('manufacturers.index')->with('success', trans_choice('admin/manufacturers/message.delete.partial_success', $success_count, ['count' => $success_count]))->with('multi_error_messages', $errors);
|
|
}
|
|
return redirect()->route('manufacturers.index')->with('multi_error_messages', $errors);
|
|
} else {
|
|
return redirect()->route('manufacturers.index')->with('success', trans('admin/manufacturers/message.delete.bulk_success'));
|
|
}
|
|
}
|
|
}
|