48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace CachetHQ\Cachet\Http\Controllers;
|
|
|
|
use CachetHQ\Cachet\Models\Component;
|
|
use Exception;
|
|
use GrahamCampbell\Binput\Facades\Binput;
|
|
use Illuminate\Routing\Controller;
|
|
|
|
class DashAPIController extends Controller
|
|
{
|
|
/**
|
|
* Updates a component with the entered info.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Component $component
|
|
*
|
|
* @throws \Exception
|
|
*
|
|
* @return \CachetHQ\Cachet\Models\Component
|
|
*/
|
|
public function postUpdateComponent(Component $component)
|
|
{
|
|
if (!$component->update(Binput::except(['_token']))) {
|
|
throw new Exception('Failed to update the component.');
|
|
}
|
|
|
|
return $component;
|
|
}
|
|
|
|
/**
|
|
* Updates a components ordering.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function postUpdateComponentOrder()
|
|
{
|
|
$componentData = Binput::all();
|
|
unset($componentData['component'][0]); // Remove random 0 index.
|
|
|
|
foreach ($componentData['component'] as $componentId => $order) {
|
|
$component = Component::find($componentId);
|
|
$component->update(['order' => $order]);
|
|
}
|
|
|
|
return $componentData;
|
|
}
|
|
}
|