mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
149 lines
4.3 KiB
PHP
149 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Helpers\Helper;
|
|
use App\Models\Statuslabel;
|
|
use App\Models\Asset;
|
|
use App\Http\Transformers\StatuslabelsTransformer;
|
|
|
|
class StatuslabelsController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v4.0]
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->authorize('view', Statuslabel::class);
|
|
$statuslabels = Statuslabel::all();
|
|
return (new StatuslabelsTransformer)->transformStatuslabels($statuslabels);
|
|
}
|
|
|
|
|
|
/**
|
|
* 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', Statuslabel::class);
|
|
$statuslabel = new Statuslabel;
|
|
$statuslabel->fill($request->all());
|
|
|
|
if ($statuslabel->save()) {
|
|
return response()->json(Helper::formatStandardApiResponse('success', $statuslabel, trans('admin/statuslabels/message.create.success')));
|
|
}
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $statuslabel->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', Statuslabel::class);
|
|
$statuslabel = Statuslabel::findOrFail($id);
|
|
return $statuslabel;
|
|
}
|
|
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v4.0]
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param int $id
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(Request $request, $id)
|
|
{
|
|
$this->authorize('edit', Statuslabel::class);
|
|
$statuslabel = Statuslabel::findOrFail($id);
|
|
$statuslabel->fill($request->all());
|
|
|
|
if ($statuslabel->save()) {
|
|
return response()->json(Helper::formatStandardApiResponse('success', $statuslabel, trans('admin/statuslabels/message.update.success')));
|
|
}
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $statuslabel->getErrors()));
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v4.0]
|
|
* @param int $id
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy($id)
|
|
{
|
|
$this->authorize('delete', Statuslabel::class);
|
|
$statuslabel = Statuslabel::findOrFail($id);
|
|
$this->authorize('delete', $statuslabel);
|
|
$statuslabel->delete();
|
|
return response()->json(Helper::formatStandardApiResponse('success', null, trans('admin/statuslabels/message.delete.success')));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Show a count of assets by status label for pie chart
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v3.0]
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
|
|
public function getAssetCountByStatuslabel()
|
|
{
|
|
|
|
$statusLabels = Statuslabel::with('assets')->get();
|
|
$labels=[];
|
|
$points=[];
|
|
$colors=[];
|
|
foreach ($statusLabels as $statusLabel) {
|
|
if ($statusLabel->assets()->count() > 0) {
|
|
$labels[]=$statusLabel->name;
|
|
$points[]=$statusLabel->assets()->whereNull('assigned_to')->count();
|
|
if ($statusLabel->color!='') {
|
|
$colors[]=$statusLabel->color;
|
|
}
|
|
}
|
|
}
|
|
$labels[]='Deployed';
|
|
$points[]=Asset::whereNotNull('assigned_to')->count();
|
|
|
|
$colors_array = array_merge($colors, Helper::chartColors());
|
|
|
|
$result= [
|
|
"labels" => $labels,
|
|
"datasets" => [ [
|
|
"data" => $points,
|
|
"backgroundColor" => $colors_array,
|
|
"hoverBackgroundColor" => $colors_array
|
|
]]
|
|
];
|
|
return $result;
|
|
}
|
|
|
|
}
|