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.
165 lines
5.4 KiB
PHP
Executable file
165 lines
5.4 KiB
PHP
Executable file
<?php
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Support\Facades\Input;
|
|
use App\Models\Group;
|
|
use App\Helpers\Helper;
|
|
|
|
/**
|
|
* This controller handles all actions related to User Groups for
|
|
* the Snipe-IT Asset Management application.
|
|
*
|
|
* @version v1.0
|
|
*/
|
|
class GroupsController extends Controller
|
|
{
|
|
/**
|
|
* Returns a view that invokes the ajax tables which actually contains
|
|
* the content for the user group listing, which is generated in getDatatable.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net]
|
|
* @see GroupsController::getDatatable() method that generates the JSON response
|
|
* @since [v1.0]
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function index()
|
|
{
|
|
// Show the page
|
|
return view('groups/index', compact('groups'));
|
|
}
|
|
|
|
/**
|
|
* Returns a view that displays a form to create a new User Group.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net]
|
|
* @see GroupsController::postCreate()
|
|
* @since [v1.0]
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function create()
|
|
{
|
|
$group = new Group;
|
|
// Get all the available permissions
|
|
$permissions = config('permissions');
|
|
$groupPermissions = Helper::selectedPermissionsArray($permissions, $permissions);
|
|
$selectedPermissions = Input::old('permissions', $groupPermissions);
|
|
|
|
// Show the page
|
|
return view('groups/edit', compact('permissions', 'selectedPermissions', 'groupPermissions'))->with('group', $group);
|
|
}
|
|
|
|
/**
|
|
* Validates and stores the new User Group data.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net]
|
|
* @see GroupsController::getCreate()
|
|
* @since [v1.0]
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function store()
|
|
{
|
|
// create a new group instance
|
|
$group = new Group();
|
|
$group->name = e(Input::get('name'));
|
|
$group->permissions = json_encode(Input::get('permission'));
|
|
|
|
if ($group->save()) {
|
|
return redirect()->route("groups.index")->with('success', trans('admin/groups/message.success.create'));
|
|
}
|
|
return redirect(route('groups.create'))->withInput()->withErrors($group->getErrors());
|
|
}
|
|
|
|
/**
|
|
* Returns a view that presents a form to edit a User Group.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net]
|
|
* @see GroupsController::postEdit()
|
|
* @param int $id
|
|
* @since [v1.0]
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
$group = Group::find($id);
|
|
|
|
if ($group) {
|
|
$permissions = config('permissions');
|
|
$groupPermissions = $group->decodePermissions();
|
|
$selected_array = Helper::selectedPermissionsArray($permissions, $groupPermissions);
|
|
return view('groups.edit', compact('group', 'permissions', 'selected_array', 'groupPermissions'));
|
|
}
|
|
|
|
return redirect()->route('groups.index')->with('error', trans('admin/groups/message.group_not_found'));
|
|
}
|
|
|
|
/**
|
|
* Validates and stores the updated User Group data.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net]
|
|
* @see GroupsController::getEdit()
|
|
* @param int $id
|
|
* @since [v1.0]
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function update($id = null)
|
|
{
|
|
if (!$group = Group::find($id)) {
|
|
return redirect()->route('groups')->with('error', trans('admin/groups/message.group_not_found', compact('id')));
|
|
}
|
|
$group->name = e(Input::get('name'));
|
|
$group->permissions = json_encode(Input::get('permission'));
|
|
|
|
if (!config('app.lock_passwords')) {
|
|
if ($group->save()) {
|
|
return redirect()->route('groups.index')->with('success', trans('admin/groups/message.success.update'));
|
|
}
|
|
return redirect()->back()->withInput()->withErrors($group->getErrors());
|
|
}
|
|
return redirect()->route('groups.index')->with('error', trans('general.feature_disabled'));
|
|
}
|
|
|
|
/**
|
|
* Validates and deletes the User Group.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net]
|
|
* @see GroupsController::getEdit()
|
|
* @param int $id
|
|
* @since [v1.0]
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
* @throws \Exception
|
|
*/
|
|
public function destroy($id = null)
|
|
{
|
|
if (!config('app.lock_passwords')) {
|
|
if (!$group = Group::find($id)) {
|
|
return redirect()->route('groups')->with('error', trans('admin/groups/message.group_not_found', compact('id')));
|
|
}
|
|
$group->delete();
|
|
// Redirect to the group management page
|
|
return redirect()->route('groups.index')->with('success', trans('admin/groups/message.success.delete'));
|
|
}
|
|
return redirect()->route('groups.index')->with('error', trans('general.feature_disabled'));
|
|
}
|
|
|
|
/**
|
|
* Returns a view that invokes the ajax tables which actually contains
|
|
* the content for the group detail page.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @param $id
|
|
* @return \Illuminate\Contracts\View\View
|
|
* @since [v4.0.11]
|
|
*/
|
|
public function show($id)
|
|
{
|
|
$group = Group::find($id);
|
|
|
|
if ($group) {
|
|
return view('groups/view', compact('group'));
|
|
}
|
|
|
|
return redirect()->route('groups.index')->with('error', trans('admin/groups/message.group_not_found', compact('id')));
|
|
}
|
|
|
|
}
|