mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 11:43:33 +01:00
133 lines
3.4 KiB
PHP
133 lines
3.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Cachet HQ <support@cachethq.io>
|
|
*
|
|
* 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\Models\Component;
|
|
use CachetHQ\Cachet\Models\Tag;
|
|
use Exception;
|
|
use GrahamCampbell\Binput\Facades\Binput;
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Http\Request;
|
|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
|
|
|
|
class ComponentController extends AbstractApiController
|
|
{
|
|
/**
|
|
* Get all components.
|
|
*
|
|
* @param \Symfony\Component\HttpFoundation\Request $request
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Collection
|
|
*/
|
|
public function getComponents(Request $request)
|
|
{
|
|
$components = Component::paginate(Binput::get('per_page', 20));
|
|
|
|
return $this->paginator($components, $request);
|
|
}
|
|
|
|
/**
|
|
* Get a single component.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Component $component
|
|
*
|
|
* @return \CachetHQ\Cachet\Models\Component
|
|
*/
|
|
public function getComponent(Component $component)
|
|
{
|
|
return $this->item($component);
|
|
}
|
|
|
|
/**
|
|
* Create a new component.
|
|
*
|
|
* @param \Illuminate\Contracts\Auth\Guard $auth
|
|
*
|
|
* @return \CachetHQ\Cachet\Models\Component
|
|
*/
|
|
public function postComponents(Guard $auth)
|
|
{
|
|
$componentData = Binput::except('tags');
|
|
|
|
try {
|
|
$component = Component::create($componentData);
|
|
} catch (Exception $e) {
|
|
throw new BadRequestHttpException();
|
|
}
|
|
|
|
if (!$component->isValid()) {
|
|
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\Componet $component
|
|
*
|
|
* @return \CachetHQ\Cachet\Models\Component
|
|
*/
|
|
public function putComponent(Component $component)
|
|
{
|
|
$component->update(Binput::except('tags'));
|
|
|
|
if (!$component->isValid('updating')) {
|
|
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)
|
|
{
|
|
$component->delete();
|
|
|
|
return $this->noContent();
|
|
}
|
|
}
|