snipe-it/app/Http/Controllers/DepartmentsController.php

166 lines
5.3 KiB
PHP
Raw Normal View History

2017-05-22 21:32:33 -07:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Department;
2017-05-23 02:47:25 -07:00
use App\Helpers\Helper;
use Auth;
use Image;
use App\Http\Requests\ImageUploadRequest;
2017-05-22 21:32:33 -07:00
class DepartmentsController extends Controller
{
public function __construct()
{
$this->middleware('auth');
parent::__construct();
}
/**
* Returns a view that invokes the ajax tables which actually contains
* the content for the assets listing, which is generated in getDatatable.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @see AssetController::getDatatable() method that generates the JSON response
2017-05-23 02:47:25 -07:00
* @since [v4.0]
2017-05-22 21:32:33 -07:00
* @return View
*/
public function index(Request $request)
{
$this->authorize('index', Department::class);
$company = null;
2019-05-23 17:39:50 -07:00
if ($request->filled('company_id')) {
2017-05-22 21:32:33 -07:00
$company = Company::find($request->input('company_id'));
}
return view('departments/index')->with('company', $company);
2017-05-22 21:32:33 -07:00
}
/**
* Store a newly created resource in storage.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v4.0]
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(ImageUploadRequest $request)
2017-05-22 21:32:33 -07:00
{
$this->authorize('create', Department::class);
$department = new Department;
$department->fill($request->all());
2017-05-23 02:47:25 -07:00
$department->user_id = Auth::user()->id;
2019-05-23 17:39:50 -07:00
$department->manager_id = ($request->filled('manager_id' ) ? $request->input('manager_id') : null);
2017-05-23 02:47:25 -07:00
$department = $request->handleImages($department,600, public_path().'/uploads/departments');
2017-05-22 21:32:33 -07:00
if ($department->save()) {
return redirect()->route("departments.index")->with('success', trans('admin/departments/message.create.success'));
2017-05-22 21:32:33 -07:00
}
return redirect()->back()->withInput()->withErrors($department->getErrors());
2017-05-22 21:32:33 -07:00
}
/**
* Returns a view that invokes the ajax tables which actually contains
* the content for the department detail page.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @param int $id
* @since [v4.0]
* @return \Illuminate\Contracts\View\View
*/
public function show($id)
{
$department = Department::find($id);
$this->authorize('view', $department);
if (isset($department->id)) {
return view('departments/view', compact('department'));
}
return redirect()->route('departments.index')->with('error', trans('admin/departments/message.does_not_exist', compact('id')));
}
2017-05-23 02:47:25 -07:00
/**
* Returns a form view used to create a new department.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @see DepartmentsController::postCreate() method that validates and stores the data
* @since [v4.0]
* @return \Illuminate\Contracts\View\View
*/
public function create()
{
$this->authorize('create', Department::class);
2017-10-28 11:17:52 -07:00
return view('departments/edit')->with('item', new Department);
2017-05-23 02:47:25 -07:00
}
/**
* Validates and deletes selected department.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @param int $locationId
* @since [v4.0]
* @return \Illuminate\Http\RedirectResponse
*/
public function destroy($id)
{
if (is_null($department = Department::find($id))) {
return redirect()->to(route('departments.index'))->with('error', trans('admin/departments/message.not_found'));
}
$this->authorize('delete', $department);
2017-05-23 02:47:25 -07:00
if ($department->users->count() > 0) {
return redirect()->to(route('departments.index'))->with('error', trans('admin/departments/message.assoc_users'));
}
$department->delete();
return redirect()->back()->with('success', trans('admin/departments/message.delete.success'));
}
/**
* Makes a form view to edit location information.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @see LocationsController::postCreate() method that validates and stores
* @param int $locationId
* @since [v1.0]
* @return \Illuminate\Contracts\View\View
*/
public function edit($id = null)
{
if (is_null($item = Department::find($id))) {
return redirect()->back()->with('error', trans('admin/locations/message.does_not_exist'));
}
$this->authorize('update', $item);
2017-10-28 11:17:52 -07:00
return view('departments/edit', compact('item'));
2017-05-23 02:47:25 -07:00
}
2017-12-06 14:38:01 -08:00
public function update(ImageUploadRequest $request, $id) {
2017-05-23 02:47:25 -07:00
if (is_null($department = Department::find($id))) {
return redirect()->route('departments.index')->with('error', trans('admin/departments/message.does_not_exist'));
2017-05-23 02:47:25 -07:00
}
$this->authorize('update', $department);
2017-05-23 02:47:25 -07:00
$department->fill($request->all());
2019-05-23 17:39:50 -07:00
$department->manager_id = ($request->filled('manager_id' ) ? $request->input('manager_id') : null);
$department = $request->handleImages($department,600, public_path().'/uploads/departments');
2017-05-23 02:47:25 -07:00
if ($department->save()) {
return redirect()->route("departments.index")->with('success', trans('admin/departments/message.update.success'));
}
return redirect()->back()->withInput()->withErrors($department->getErrors());
}
2017-05-22 21:32:33 -07:00
}