mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 11:16:05 +01:00
155 lines
4.4 KiB
PHP
155 lines
4.4 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\Component\AddComponentCommand;
|
|
use CachetHQ\Cachet\Bus\Commands\Component\RemoveComponentCommand;
|
|
use CachetHQ\Cachet\Bus\Commands\Component\UpdateComponentCommand;
|
|
use CachetHQ\Cachet\Models\Component;
|
|
use CachetHQ\Cachet\Models\Tag;
|
|
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;
|
|
|
|
class ComponentController extends AbstractApiController
|
|
{
|
|
/**
|
|
* Get all components.
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function getComponents()
|
|
{
|
|
if (app(Guard::class)->check()) {
|
|
$components = Component::query();
|
|
} else {
|
|
$components = Component::enabled();
|
|
}
|
|
|
|
$components->search(Binput::except(['sort', 'order', 'per_page']));
|
|
|
|
if ($sortBy = Binput::get('sort')) {
|
|
$direction = Binput::has('order') && Binput::get('order') == 'desc';
|
|
|
|
$components->sort($sortBy, $direction);
|
|
}
|
|
|
|
$components = $components->paginate(Binput::get('per_page', 20));
|
|
|
|
return $this->paginator($components, Request::instance());
|
|
}
|
|
|
|
/**
|
|
* Get a single component.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Component $component
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function getComponent(Component $component)
|
|
{
|
|
return $this->item($component);
|
|
}
|
|
|
|
/**
|
|
* Create a new component.
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function postComponents()
|
|
{
|
|
try {
|
|
$component = dispatch(new AddComponentCommand(
|
|
Binput::get('name'),
|
|
Binput::get('description'),
|
|
Binput::get('status'),
|
|
Binput::get('link'),
|
|
Binput::get('order'),
|
|
Binput::get('group_id'),
|
|
(bool) Binput::get('enabled', true)
|
|
));
|
|
} catch (QueryException $e) {
|
|
throw new BadRequestHttpException();
|
|
}
|
|
|
|
if (Binput::has('tags')) {
|
|
// The component was added successfully, so now let's deal with the tags.
|
|
$tags = preg_split('/ ?, ?/', Binput::get('tags'));
|
|
|
|
// For every tag, do we need to create it?
|
|
$componentTags = array_map(function ($taggable) use ($component) {
|
|
return Tag::firstOrCreate([
|
|
'name' => $taggable,
|
|
])->id;
|
|
}, $tags);
|
|
|
|
$component->tags()->sync($componentTags);
|
|
}
|
|
|
|
return $this->item($component);
|
|
}
|
|
|
|
/**
|
|
* Update an existing component.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Component $component
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function putComponent(Component $component)
|
|
{
|
|
try {
|
|
dispatch(new UpdateComponentCommand(
|
|
$component,
|
|
Binput::get('name'),
|
|
Binput::get('description'),
|
|
Binput::get('status'),
|
|
Binput::get('link'),
|
|
Binput::get('order'),
|
|
Binput::get('group_id'),
|
|
(bool) Binput::get('enabled', true)
|
|
));
|
|
} catch (QueryException $e) {
|
|
throw new BadRequestHttpException();
|
|
}
|
|
|
|
if (Binput::has('tags')) {
|
|
$tags = preg_split('/ ?, ?/', Binput::get('tags'));
|
|
|
|
// For every tag, do we need to create it?
|
|
$componentTags = array_map(function ($taggable) use ($component) {
|
|
return Tag::firstOrCreate(['name' => $taggable])->id;
|
|
}, $tags);
|
|
|
|
$component->tags()->sync($componentTags);
|
|
}
|
|
|
|
return $this->item($component);
|
|
}
|
|
|
|
/**
|
|
* Delete an existing component.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Component $component
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function deleteComponent(Component $component)
|
|
{
|
|
dispatch(new RemoveComponentCommand($component));
|
|
|
|
return $this->noContent();
|
|
}
|
|
}
|