mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
c3d55ee27e
Signed-off-by: snipe <snipe@snipe.net> # Conflicts: # .all-contributorsrc # README.md # app/Exceptions/Handler.php # app/Http/Controllers/Api/AssetsController.php # app/Http/Controllers/Api/SettingsController.php # app/Http/Controllers/CustomFieldsController.php # app/Http/Controllers/SettingsController.php # app/Http/Transformers/AssetsTransformer.php # app/Models/Setting.php # config/version.php # resources/lang/af/button.php # resources/lang/ar/button.php # resources/lang/bg/button.php # resources/lang/cs/button.php # resources/lang/cy/button.php # resources/lang/da/button.php # resources/lang/de/button.php # resources/lang/el/button.php # resources/lang/en-GB/button.php # resources/lang/en-ID/button.php # resources/lang/es-CO/admin/groups/message.php # resources/lang/es-MX/button.php # resources/lang/et/admin/custom_fields/general.php # resources/lang/et/admin/hardware/table.php # resources/lang/et/admin/kits/general.php # resources/lang/et/admin/manufacturers/message.php # resources/lang/et/admin/models/general.php # resources/lang/et/admin/settings/general.php # resources/lang/et/button.php # resources/lang/et/mail.php # resources/lang/fa/button.php # resources/lang/fa/help.php # resources/lang/fi/button.php # resources/lang/fil/button.php # resources/lang/fr/button.php # resources/lang/ga-IE/button.php # resources/lang/he/button.php # resources/lang/hr/button.php # resources/lang/hu/admin/settings/general.php # resources/lang/hu/auth/message.php # resources/lang/hu/button.php # resources/lang/hu/mail.php # resources/lang/id/admin/hardware/table.php # resources/lang/id/button.php # resources/lang/it/button.php # resources/lang/iu/button.php # resources/lang/ja/button.php # resources/lang/ko/button.php # resources/lang/lt/button.php # resources/lang/lv/button.php # resources/lang/mi/button.php # resources/lang/mk/button.php # resources/lang/ml-IN/button.php # resources/lang/mn/button.php # resources/lang/ms/admin/hardware/table.php # resources/lang/ms/admin/kits/general.php # resources/lang/ms/admin/models/general.php # resources/lang/ms/admin/models/message.php # resources/lang/ms/admin/settings/general.php # resources/lang/ms/button.php # resources/lang/nl/button.php # resources/lang/no/admin/hardware/table.php # resources/lang/no/admin/kits/general.php # resources/lang/no/admin/settings/general.php # resources/lang/no/auth/message.php # resources/lang/no/button.php # resources/lang/no/help.php # resources/lang/no/mail.php # resources/lang/pl/button.php # resources/lang/pt-BR/button.php # resources/lang/pt-PT/auth/message.php # resources/lang/pt-PT/button.php # resources/lang/pt-PT/mail.php # resources/lang/ro/button.php # resources/lang/ru/admin/settings/general.php # resources/lang/ru/button.php # resources/lang/ru/help.php # resources/lang/sl/admin/custom_fields/general.php # resources/lang/sl/admin/hardware/table.php # resources/lang/sl/admin/kits/general.php # resources/lang/sl/admin/manufacturers/message.php # resources/lang/sl/admin/models/general.php # resources/lang/sl/admin/settings/general.php # resources/lang/sl/admin/users/general.php # resources/lang/sl/auth/message.php # resources/lang/sl/button.php # resources/lang/sl/help.php # resources/lang/sr-CS/button.php # resources/lang/ta/button.php # resources/lang/th/button.php # resources/lang/th/mail.php # resources/lang/tl/button.php # resources/lang/tr/admin/settings/general.php # resources/lang/tr/auth/message.php # resources/lang/tr/button.php # resources/lang/uk/button.php # resources/lang/ur-PK/button.php # resources/lang/vi/button.php # resources/lang/zh-CN/button.php # resources/lang/zh-HK/button.php # resources/lang/zh-TW/admin/hardware/table.php # resources/lang/zh-TW/button.php # resources/lang/zu/button.php # resources/views/models/custom_fields_form.blade.php # resources/views/reports/custom.blade.php # resources/views/settings/slack.blade.php
227 lines
7.3 KiB
PHP
227 lines
7.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Http\Requests\CustomFieldRequest;
|
|
use App\Models\CustomField;
|
|
use App\Models\CustomFieldset;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Redirect;
|
|
|
|
/**
|
|
* This controller handles all actions related to Custom Asset Fields for
|
|
* the Snipe-IT Asset Management application.
|
|
*
|
|
* @todo Improve documentation here.
|
|
* @todo Check for raw DB queries and try to convert them to query builder statements
|
|
* @version v2.0
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
*/
|
|
class CustomFieldsController extends Controller
|
|
{
|
|
/**
|
|
* Returns a view with a listing of custom fields.
|
|
*
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @since [v1.8]
|
|
* @return \Illuminate\Support\Facades\View
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->authorize('view', CustomField::class);
|
|
|
|
$fieldsets = CustomFieldset::with('fields', 'models')->get();
|
|
$fields = CustomField::with('fieldset')->get();
|
|
|
|
return view('custom_fields.index')->with('custom_fieldsets', $fieldsets)->with('custom_fields', $fields);
|
|
}
|
|
|
|
/**
|
|
* Just redirect the user back if they try to view the details of a field.
|
|
* We already show those details on the listing page.
|
|
*
|
|
* @see CustomFieldsController::storeField()
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v5.1.5]
|
|
* @return Redirect
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function show()
|
|
{
|
|
return redirect()->route('fields.index');
|
|
}
|
|
|
|
/**
|
|
* Returns a view with a form to create a new custom field.
|
|
*
|
|
* @see CustomFieldsController::storeField()
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @since [v1.8]
|
|
* @return \Illuminate\Support\Facades\View
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function create()
|
|
{
|
|
$this->authorize('create', CustomField::class);
|
|
|
|
return view('custom_fields.fields.edit', [
|
|
'predefinedFormats' => Helper::predefined_formats(),
|
|
'customFormat' => '',
|
|
])->with('field', new CustomField());
|
|
}
|
|
|
|
/**
|
|
* Validates and stores a new custom field.
|
|
*
|
|
* @see CustomFieldsController::createField()
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @since [v1.8]
|
|
* @return Redirect
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function store(CustomFieldRequest $request)
|
|
{
|
|
$this->authorize('create', CustomField::class);
|
|
|
|
$field = new CustomField([
|
|
"name" => trim($request->get("name")),
|
|
"element" => $request->get("element"),
|
|
"help_text" => $request->get("help_text"),
|
|
"field_values" => $request->get("field_values"),
|
|
"field_encrypted" => $request->get("field_encrypted", 0),
|
|
"show_in_email" => $request->get("show_in_email", 0),
|
|
"user_id" => Auth::id()
|
|
]);
|
|
|
|
if ($request->filled('custom_format')) {
|
|
$field->format = e($request->get('custom_format'));
|
|
} else {
|
|
$field->format = e($request->get('format'));
|
|
}
|
|
|
|
if ($field->save()) {
|
|
return redirect()->route('fields.index')->with('success', trans('admin/custom_fields/message.field.create.success'));
|
|
}
|
|
|
|
return redirect()->back()->withInput()
|
|
->with('error', trans('admin/custom_fields/message.field.create.error'));
|
|
}
|
|
|
|
|
|
/**
|
|
* Detach a custom field from a fieldset.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v3.0]
|
|
* @return Redirect
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function deleteFieldFromFieldset($field_id, $fieldset_id)
|
|
{
|
|
$field = CustomField::find($field_id);
|
|
|
|
$this->authorize('update', $field);
|
|
|
|
if ($field->fieldset()->detach($fieldset_id)) {
|
|
return redirect()->route('fieldsets.show', ['fieldset' => $fieldset_id])
|
|
->with('success', trans('admin/custom_fields/message.field.delete.success'));
|
|
}
|
|
|
|
return redirect()->back()->withErrors(['message' => 'Field is in-use']);
|
|
}
|
|
|
|
/**
|
|
* Delete a custom field.
|
|
*
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @since [v1.8]
|
|
* @return Redirect
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function destroy($field_id)
|
|
{
|
|
if ($field = CustomField::find($field_id)) {
|
|
$this->authorize('delete', $field);
|
|
|
|
if (($field->fieldset) && ($field->fieldset->count() > 0)) {
|
|
return redirect()->back()->withErrors(['message' => 'Field is in-use']);
|
|
}
|
|
$field->delete();
|
|
return redirect()->route("fields.index")
|
|
->with("success", trans('admin/custom_fields/message.field.delete.success'));
|
|
}
|
|
|
|
return redirect()->route('fields.index')
|
|
->with('success', trans('admin/custom_fields/message.field.delete.success'));
|
|
}
|
|
|
|
return redirect()->back()->withErrors(['message' => 'Field does not exist']);
|
|
}
|
|
|
|
/**
|
|
* Return a view to edit a custom field
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @param int $id
|
|
* @since [v4.0]
|
|
* @return \Illuminate\Support\Facades\View
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
$field = CustomField::find($id);
|
|
|
|
$this->authorize('update', $field);
|
|
|
|
$customFormat = '';
|
|
if ((stripos($field->format, 'regex') === 0) && ($field->format !== CustomField::PREDEFINED_FORMATS['MAC'])) {
|
|
$customFormat = $field->format;
|
|
}
|
|
|
|
return view('custom_fields.fields.edit', [
|
|
'field' => $field,
|
|
'customFormat' => $customFormat,
|
|
'predefinedFormats' => Helper::predefined_formats(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Store the updated field
|
|
*
|
|
* @todo Allow encrypting/decrypting if encryption status changes
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @param int $id
|
|
* @since [v4.0]
|
|
* @return Redirect
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function update(CustomFieldRequest $request, $id)
|
|
{
|
|
$field = CustomField::find($id);
|
|
|
|
$this->authorize('update', $field);
|
|
|
|
$field->name = trim(e($request->get("name")));
|
|
$field->element = e($request->get("element"));
|
|
$field->field_values = e($request->get("field_values"));
|
|
$field->user_id = Auth::id();
|
|
$field->help_text = $request->get("help_text");
|
|
$field->show_in_email = $request->get("show_in_email", 0);
|
|
|
|
if ($request->get('format') == 'CUSTOM REGEX') {
|
|
$field->format = e($request->get('custom_format'));
|
|
} else {
|
|
$field->format = e($request->get('format'));
|
|
}
|
|
|
|
if ($field->save()) {
|
|
return redirect()->route('fields.index')->with('success', trans('admin/custom_fields/message.field.update.success'));
|
|
}
|
|
|
|
return redirect()->back()->withInput()->with('error', trans('admin/custom_fields/message.field.update.error'));
|
|
}
|
|
}
|