mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
64d649be7f
* Extract a handlesimages trait to centralize logic for parsing/storing images on upload in create/edit methods. * Use same image upload/layout in accessories as consum+components. * Monster: Cleanup/Refactor http controllers. This cleans up docblocks, pulls most non-crudy actions into their own controllers, and does general cleanup/logic refactoring. There /should/ be no functional changes, but we all know how should works.. Extract checkin/checkout functions to a separate controller for accessories. Move controllers to subdirectory. Cleanup AssetModelsController Extract component checkin/checkout Assorted cleanups/doc/formatting in controllers. Refactor LicenseController. Refactor UsersController Update viewassetscontroller. * Codacy cleanups * More codacy cleanups. Extract a LicenseCheckout Form request as well. * A bit more refactor/cleaning of the license checkout method. * Review Related Cleanups * Fix most of the item_not_found translations. In many cases, the string being generated did not even use the id parameter. Where it does, pass it as id instead of as a different value. * Remove some old $data arrays from when we manually sent emails from the controllers. This has been superseeded by the notification system (yay!) * Bugfix: Only log the checkin of an accessory if the checkin completes sucessfully.
199 lines
5.7 KiB
PHP
199 lines
5.7 KiB
PHP
<?php
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\CustomFieldset;
|
|
use App\Models\CustomField;
|
|
use Illuminate\Support\Facades\Input;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Redirect;
|
|
use App\Models\AssetModel;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* 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 CustomFieldsetsController extends Controller
|
|
{
|
|
|
|
/**
|
|
* Validates and stores a new custom field.
|
|
*
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @param int $id
|
|
* @return \Illuminate\Support\Facades\View
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
* @since [v1.8]
|
|
*/
|
|
public function show($id)
|
|
{
|
|
$cfset = CustomFieldset::with('fields')
|
|
->where('id', '=', $id)->orderBy('id', 'ASC')->first();
|
|
|
|
$this->authorize('view', $cfset);
|
|
|
|
if ($cfset) {
|
|
$custom_fields_list = ["" => "Add New Field to Fieldset"] + CustomField::pluck("name", "id")->toArray();
|
|
|
|
$maxid = 0;
|
|
foreach ($cfset->fields() as $field) {
|
|
if ($field->pivot->order > $maxid) {
|
|
$maxid=$field->pivot->order;
|
|
}
|
|
if (isset($custom_fields_list[$field->id])) {
|
|
unset($custom_fields_list[$field->id]);
|
|
}
|
|
}
|
|
|
|
return view("custom_fields.fieldsets.view")
|
|
->with("custom_fieldset", $cfset)
|
|
->with("maxid", $maxid+1)
|
|
->with("custom_fields_list", $custom_fields_list);
|
|
}
|
|
|
|
return redirect()->route("fields.index")
|
|
->with("error", trans('admin/custom_fields/message.fieldset.does_not_exist'));
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Returns a view with a form for creating a new custom fieldset.
|
|
*
|
|
* @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', CustomFieldset::class);
|
|
|
|
return view("custom_fields.fieldsets.edit");
|
|
}
|
|
|
|
|
|
/**
|
|
* Validates and stores a new custom fieldset.
|
|
*
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @since [v1.8]
|
|
* @param Request $request
|
|
* @return Redirect
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
$this->authorize('create', CustomFieldset::class);
|
|
|
|
$cfset = new CustomFieldset([
|
|
"name" => e($request->get("name")),
|
|
"user_id" => Auth::user()->id
|
|
]);
|
|
|
|
$validator = Validator::make(Input::all(), $cfset->rules);
|
|
if ($validator->passes()) {
|
|
$cfset->save();
|
|
return redirect()->route("fieldsets.show", [$cfset->id])
|
|
->with('success', trans('admin/custom_fields/message.fieldset.create.success'));
|
|
}
|
|
return redirect()->back()->withInput()->withErrors($validator);
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
* What the actual fuck, Brady?
|
|
*
|
|
* @todo Uhh, build this?
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @param int $id
|
|
* @since [v1.8]
|
|
* @return Fuckall
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
//
|
|
}
|
|
|
|
|
|
/**
|
|
* GET IN THE SEA BRADY.
|
|
*
|
|
* @todo Uhh, build this too?
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @param int $id
|
|
* @since [v1.8]
|
|
* @return Fuckall
|
|
*/
|
|
public function update($id)
|
|
{
|
|
//
|
|
}
|
|
|
|
|
|
/**
|
|
* Validates a custom fieldset and then deletes if it has no models associated.
|
|
*
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @param int $id
|
|
* @since [v1.8]
|
|
* @return View
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function destroy($id)
|
|
{
|
|
$fieldset = CustomFieldset::find($id);
|
|
|
|
$this->authorize('delete', $fieldset);
|
|
|
|
if ($fieldset) {
|
|
$models = AssetModel::where("fieldset_id", "=", $id);
|
|
if ($models->count() == 0) {
|
|
$fieldset->delete();
|
|
return redirect()->route("fields.index")->with("success", trans('admin/custom_fields/message.fieldset.delete.success'));
|
|
}
|
|
return redirect()->route("fields.index")->with("error", trans('admin/custom_fields/message.fieldset.delete.in_use'));
|
|
}
|
|
|
|
return redirect()->route("fields.index")->with("error", trans('admin/custom_fields/message.fieldset.does_not_exist'));
|
|
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Associate the custom field with a custom fieldset.
|
|
*
|
|
* @author [Brady Wetherington] [<uberbrady@gmail.com>]
|
|
* @since [v1.8]
|
|
* @return View
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function associate($id)
|
|
{
|
|
|
|
$set = CustomFieldset::find($id);
|
|
|
|
$this->authorize('update', $set);
|
|
|
|
foreach ($set->fields as $field) {
|
|
if ($field->id == Input::get('field_id')) {
|
|
return redirect()->route("fieldsets.show", [$id])->withInput()->withErrors(['field_id' => trans('admin/custom_fields/message.field.already_added')]);
|
|
}
|
|
}
|
|
|
|
$results=$set->fields()->attach(Input::get('field_id'), ["required" => (Input::get('required') == "on"),"order" => Input::get('order')]);
|
|
|
|
return redirect()->route("fieldsets.show", [$id])->with("success", trans('admin/custom_fields/message.field.create.assoc_success'));
|
|
}
|
|
}
|