2017-05-22 21:32:33 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
2019-03-13 20:12:03 -07:00
|
|
|
use App\Helpers\Helper;
|
2017-05-22 21:32:33 -07:00
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Http\Transformers\DepartmentsTransformer;
|
2017-10-28 09:21:39 -07:00
|
|
|
use App\Http\Transformers\SelectlistTransformer;
|
2021-07-06 00:08:29 -07:00
|
|
|
use App\Models\Company;
|
2019-03-13 20:12:03 -07:00
|
|
|
use App\Models\Department;
|
|
|
|
use Auth;
|
|
|
|
use Illuminate\Http\Request;
|
2021-07-05 21:10:03 -07:00
|
|
|
use App\Http\Requests\ImageUploadRequest;
|
2018-09-29 21:33:52 -07:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2017-05-22 21:32:33 -07:00
|
|
|
|
|
|
|
class DepartmentsController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*
|
2020-02-10 19:27:23 -08:00
|
|
|
* @author [Godfrey Martinez] [<snipe@snipe.net>]
|
2017-05-22 21:32:33 -07:00
|
|
|
* @since [v4.0]
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
|
|
|
$this->authorize('view', Department::class);
|
2021-06-10 13:15:52 -07:00
|
|
|
$allowed_columns = ['id', 'name', 'image', 'users_count'];
|
2017-05-22 21:32:33 -07:00
|
|
|
|
2023-08-07 16:54:23 -07:00
|
|
|
$departments = Department::select(
|
2018-02-21 05:04:20 -08:00
|
|
|
'departments.id',
|
|
|
|
'departments.name',
|
2023-07-10 11:44:21 -07:00
|
|
|
'departments.phone',
|
|
|
|
'departments.fax',
|
2018-02-21 05:04:20 -08:00
|
|
|
'departments.location_id',
|
|
|
|
'departments.company_id',
|
|
|
|
'departments.manager_id',
|
|
|
|
'departments.created_at',
|
|
|
|
'departments.updated_at',
|
2023-08-07 16:54:23 -07:00
|
|
|
'departments.image'
|
|
|
|
)->with('users')->with('location')->with('manager')->with('company')->withCount('users as users_count');
|
2017-05-22 21:32:33 -07:00
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('search')) {
|
2017-05-22 21:32:33 -07:00
|
|
|
$departments = $departments->TextSearch($request->input('search'));
|
|
|
|
}
|
|
|
|
|
2022-06-28 19:59:45 -07:00
|
|
|
if ($request->filled('name')) {
|
|
|
|
$departments->where('name', '=', $request->input('name'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->filled('company_id')) {
|
|
|
|
$departments->where('company_id', '=', $request->input('company_id'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->filled('manager_id')) {
|
|
|
|
$departments->where('manager_id', '=', $request->input('manager_id'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->filled('location_id')) {
|
|
|
|
$departments->where('location_id', '=', $request->input('location_id'));
|
|
|
|
}
|
|
|
|
|
2023-04-12 11:28:46 -07:00
|
|
|
// Make sure the offset and limit are actually integers and do not exceed system limits
|
2023-10-14 12:39:52 -07:00
|
|
|
$offset = ($request->input('offset') > $departments->count()) ? $departments->count() : app('api_offset_value');
|
2023-04-16 08:46:39 -07:00
|
|
|
$limit = app('api_limit_value');
|
2019-09-03 14:02:08 -07:00
|
|
|
|
2017-05-22 21:32:33 -07:00
|
|
|
$order = $request->input('order') === 'asc' ? 'asc' : 'desc';
|
|
|
|
$sort = in_array($request->input('sort'), $allowed_columns) ? $request->input('sort') : 'created_at';
|
2018-02-21 05:04:20 -08:00
|
|
|
|
|
|
|
switch ($request->input('sort')) {
|
|
|
|
case 'location':
|
|
|
|
$departments->OrderLocation($order);
|
|
|
|
break;
|
|
|
|
case 'manager':
|
|
|
|
$departments->OrderManager($order);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$departments->orderBy($sort, $order);
|
|
|
|
break;
|
|
|
|
}
|
2017-05-22 21:32:33 -07:00
|
|
|
|
|
|
|
$total = $departments->count();
|
|
|
|
$departments = $departments->skip($offset)->take($limit)->get();
|
2021-06-10 13:15:52 -07:00
|
|
|
return (new DepartmentsTransformer)->transformDepartments($departments, $total);
|
2017-05-22 21:32:33 -07:00
|
|
|
|
|
|
|
}
|
2017-05-23 01:08:55 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created resource in storage.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
2021-06-29 02:28:32 -07:00
|
|
|
* @param \App\Http\Requests\ImageUploadRequest $request
|
2017-05-23 01:08:55 -07:00
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2021-06-29 02:28:32 -07:00
|
|
|
public function store(ImageUploadRequest $request)
|
2017-05-23 01:08:55 -07:00
|
|
|
{
|
|
|
|
$this->authorize('create', Department::class);
|
|
|
|
$department = new Department;
|
|
|
|
$department->fill($request->all());
|
2021-06-29 04:25:20 -07:00
|
|
|
$department = $request->handleImages($department);
|
2021-06-29 02:28:32 -07:00
|
|
|
|
2017-05-23 01:08:55 -07:00
|
|
|
$department->user_id = Auth::user()->id;
|
2021-06-10 13:15:52 -07:00
|
|
|
$department->manager_id = ($request->filled('manager_id') ? $request->input('manager_id') : null);
|
2017-05-23 01:08:55 -07:00
|
|
|
|
|
|
|
if ($department->save()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', $department, trans('admin/departments/message.create.success')));
|
|
|
|
}
|
2021-06-10 13:15:52 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $department->getErrors()));
|
2017-05-23 01:08:55 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
|
|
|
$this->authorize('view', Department::class);
|
|
|
|
$department = Department::findOrFail($id);
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2017-05-23 01:08:55 -07:00
|
|
|
return (new DepartmentsTransformer)->transformDepartment($department);
|
|
|
|
}
|
2017-05-23 02:45:51 -07:00
|
|
|
|
2018-10-31 14:31:57 -07:00
|
|
|
/**
|
|
|
|
* Update the specified resource in storage.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v5.0]
|
2021-06-29 02:28:32 -07:00
|
|
|
* @param \App\Http\Requests\ImageUploadRequest $request
|
2018-10-31 14:31:57 -07:00
|
|
|
* @param int $id
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2021-06-29 02:28:32 -07:00
|
|
|
public function update(ImageUploadRequest $request, $id)
|
2018-10-31 14:31:57 -07:00
|
|
|
{
|
|
|
|
$this->authorize('update', Department::class);
|
|
|
|
$department = Department::findOrFail($id);
|
|
|
|
$department->fill($request->all());
|
2021-06-29 02:28:32 -07:00
|
|
|
$department = $request->handleImages($department);
|
2018-10-31 14:31:57 -07:00
|
|
|
|
|
|
|
if ($department->save()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', $department, trans('admin/departments/message.update.success')));
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $department->getErrors()));
|
|
|
|
}
|
|
|
|
|
2017-05-23 02:45:51 -07:00
|
|
|
|
|
|
|
/**
|
2018-10-31 14:31:57 -07:00
|
|
|
* Validates and deletes selected department.
|
2017-05-23 02:45:51 -07:00
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $locationId
|
2018-10-31 14:31:57 -07:00
|
|
|
* @since [v4.0]
|
2017-05-23 02:45:51 -07:00
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
2017-08-22 14:15:13 -07:00
|
|
|
$department = Department::findOrFail($id);
|
2017-05-23 02:45:51 -07:00
|
|
|
|
2018-07-12 18:28:02 -07:00
|
|
|
$this->authorize('delete', $department);
|
|
|
|
|
2017-05-23 02:45:51 -07:00
|
|
|
if ($department->users->count() > 0) {
|
2017-08-22 14:15:13 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, trans('admin/departments/message.assoc_users')));
|
2017-05-23 02:45:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
$department->delete();
|
2021-06-10 13:15:52 -07:00
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/departments/message.delete.success')));
|
2017-05-23 02:45:51 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-10-28 09:21:39 -07:00
|
|
|
/**
|
|
|
|
* Gets a paginated collection for the select2 menus
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0.16]
|
|
|
|
* @see \App\Http\Transformers\SelectlistTransformer
|
|
|
|
*/
|
|
|
|
public function selectlist(Request $request)
|
|
|
|
{
|
|
|
|
|
2022-02-11 11:46:14 -08:00
|
|
|
$this->authorize('view.selectlists');
|
2017-10-28 09:21:39 -07:00
|
|
|
$departments = Department::select([
|
|
|
|
'id',
|
|
|
|
'name',
|
|
|
|
'image',
|
|
|
|
]);
|
|
|
|
|
2019-05-23 17:39:50 -07:00
|
|
|
if ($request->filled('search')) {
|
2017-10-28 09:21:39 -07:00
|
|
|
$departments = $departments->where('name', 'LIKE', '%'.$request->get('search').'%');
|
|
|
|
}
|
|
|
|
|
|
|
|
$departments = $departments->orderBy('name', 'ASC')->paginate(50);
|
|
|
|
|
|
|
|
// Loop through and set some custom properties for the transformer to use.
|
|
|
|
// This lets us have more flexibility in special cases like assets, where
|
|
|
|
// they may not have a ->name value but we want to display something anyway
|
|
|
|
foreach ($departments as $department) {
|
2018-09-29 21:33:52 -07:00
|
|
|
$department->use_image = ($department->image) ? Storage::disk('public')->url('departments/'.$department->image, $department->image) : null;
|
2017-10-28 09:21:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return (new SelectlistTransformer)->transformSelectlist($departments);
|
|
|
|
}
|
2017-05-22 21:32:33 -07:00
|
|
|
}
|