58 lines
1.5 KiB
PHP
58 lines
1.5 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\Handlers\Commands\Metric;
|
|
|
|
use CachetHQ\Cachet\Commands\Metric\UpdateMetricCommand;
|
|
use CachetHQ\Cachet\Events\Metric\MetricWasUpdatedEvent;
|
|
use CachetHQ\Cachet\Models\Metric;
|
|
|
|
class UpdateMetricCommandHandler
|
|
{
|
|
/**
|
|
* Handle the update metric command.
|
|
*
|
|
* @param \CachetHQ\Cachet\Commands\Metric\UpdateMetricCommand $command
|
|
*
|
|
* @return \CachetHQ\Cachet\Models\Metric
|
|
*/
|
|
public function handle(UpdateMetricCommand $command)
|
|
{
|
|
$metric = $command->metric;
|
|
|
|
$metric->update($this->filter($command));
|
|
|
|
event(new MetricWasUpdatedEvent($metric));
|
|
|
|
return $metric;
|
|
}
|
|
|
|
/**
|
|
* Filter the command data.
|
|
*
|
|
* @param \CachetHQ\Cachet\Commands\Metric\UpdateMetricCommand $command
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function filter(UpdateMetricCommand $command)
|
|
{
|
|
return array_filter([
|
|
'name' => $command->name,
|
|
'suffix' => $command->suffix,
|
|
'description' => $command->description,
|
|
'default_value' => $command->default_value,
|
|
'calc_type' => $command->calc_type,
|
|
'display_chart' => $command->display_chart,
|
|
'places' => $command->places,
|
|
], 'is_null');
|
|
}
|
|
}
|