2017-05-22 21:32:33 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Models\Department;
|
|
|
|
use App\Http\Transformers\DepartmentsTransformer;
|
2017-05-23 01:08:55 -07:00
|
|
|
use App\Helpers\Helper;
|
|
|
|
use Auth;
|
2017-05-22 21:32:33 -07:00
|
|
|
|
|
|
|
class DepartmentsController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v4.0]
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
|
|
|
$this->authorize('view', Department::class);
|
|
|
|
$allowed_columns = ['id','name'];
|
|
|
|
|
|
|
|
$departments = Department::select([
|
|
|
|
'id',
|
|
|
|
'name',
|
|
|
|
'location_id'
|
2017-05-23 01:08:55 -07:00
|
|
|
])->with('users')->withCount('users');
|
2017-05-22 21:32:33 -07:00
|
|
|
|
|
|
|
if ($request->has('search')) {
|
|
|
|
$departments = $departments->TextSearch($request->input('search'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$offset = $request->input('offset', 0);
|
|
|
|
$limit = $request->input('limit', 50);
|
|
|
|
$order = $request->input('order') === 'asc' ? 'asc' : 'desc';
|
|
|
|
$sort = in_array($request->input('sort'), $allowed_columns) ? $request->input('sort') : 'created_at';
|
|
|
|
$departments->orderBy($sort, $order);
|
|
|
|
|
|
|
|
$total = $departments->count();
|
|
|
|
$departments = $departments->skip($offset)->take($limit)->get();
|
|
|
|
return (new DepartmentsTransformer)->transformDepartments($departments, $total);
|
|
|
|
|
|
|
|
}
|
2017-05-23 01:08:55 -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(Request $request)
|
|
|
|
{
|
|
|
|
$this->authorize('create', Department::class);
|
|
|
|
$department = new Department;
|
|
|
|
$department->fill($request->all());
|
|
|
|
$department->user_id = Auth::user()->id;
|
|
|
|
|
|
|
|
if ($department->save()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('success', $department, trans('admin/departments/message.create.success')));
|
|
|
|
}
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $department->getErrors()));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
return (new DepartmentsTransformer)->transformDepartment($department);
|
|
|
|
}
|
2017-05-22 21:32:33 -07:00
|
|
|
}
|