146 lines
3.7 KiB
PHP
146 lines
3.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Http\Controllers\Api;
|
|
|
|
use CachetHQ\Cachet\Bus\Commands\ComponentGroup\CreateComponentGroupCommand;
|
|
use CachetHQ\Cachet\Bus\Commands\ComponentGroup\RemoveComponentGroupCommand;
|
|
use CachetHQ\Cachet\Bus\Commands\ComponentGroup\UpdateComponentGroupCommand;
|
|
use CachetHQ\Cachet\Models\ComponentGroup;
|
|
use GrahamCampbell\Binput\Facades\Binput;
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Database\QueryException;
|
|
use Illuminate\Support\Facades\Request;
|
|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
|
|
|
|
/**
|
|
* This is the component group controller.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
* @author Graham Campbell <graham@alt-three.com>
|
|
* @author Joseph Cohen <joe@alt-three.com>
|
|
*/
|
|
class ComponentGroupController extends AbstractApiController
|
|
{
|
|
/**
|
|
* The user session object.
|
|
*
|
|
* @var \Illuminate\Contracts\Auth\Guard
|
|
*/
|
|
protected $guard;
|
|
|
|
/**
|
|
* Creates a new component group controller instance.
|
|
*
|
|
* @param \Illuminate\Contracts\Auth\Guard $guard
|
|
*/
|
|
public function __construct(Guard $guard)
|
|
{
|
|
$this->guard = $guard;
|
|
}
|
|
|
|
/**
|
|
* Get all groups.
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function index()
|
|
{
|
|
$groups = ComponentGroup::query();
|
|
if (!$this->guard->check()) {
|
|
$groups = ComponentGroup::visible();
|
|
}
|
|
|
|
$groups->search(Binput::except(['sort', 'order', 'per_page']));
|
|
|
|
if ($sortBy = Binput::get('sort')) {
|
|
$direction = Binput::get('order', 'asc');
|
|
|
|
$groups->sort($sortBy, $direction);
|
|
}
|
|
|
|
$groups = $groups->paginate(Binput::get('per_page', 20));
|
|
|
|
return $this->paginator($groups, Request::instance());
|
|
}
|
|
|
|
/**
|
|
* Get a single group.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\ComponentGroup $group
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function show(ComponentGroup $group)
|
|
{
|
|
return $this->item($group);
|
|
}
|
|
|
|
/**
|
|
* Create a new component group.
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function store()
|
|
{
|
|
try {
|
|
$group = execute(new CreateComponentGroupCommand(
|
|
Binput::get('name'),
|
|
Binput::get('order', 0),
|
|
Binput::get('collapsed', 0),
|
|
Binput::get('visible', ComponentGroup::VISIBLE_AUTHENTICATED)
|
|
));
|
|
} catch (QueryException $e) {
|
|
throw new BadRequestHttpException();
|
|
}
|
|
|
|
return $this->item($group);
|
|
}
|
|
|
|
/**
|
|
* Update an existing group.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\ComponentGroup $group
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function update(ComponentGroup $group)
|
|
{
|
|
try {
|
|
$group = execute(new UpdateComponentGroupCommand(
|
|
$group,
|
|
Binput::get('name'),
|
|
Binput::get('order'),
|
|
Binput::get('collapsed'),
|
|
Binput::get('visible')
|
|
));
|
|
} catch (QueryException $e) {
|
|
throw new BadRequestHttpException();
|
|
}
|
|
|
|
return $this->item($group);
|
|
}
|
|
|
|
/**
|
|
* Delete an existing group.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\ComponentGroup $group
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function destroy(ComponentGroup $group)
|
|
{
|
|
execute(new RemoveComponentGroupCommand($group));
|
|
|
|
return $this->noContent();
|
|
}
|
|
}
|