mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 13:38:20 +01:00
103 lines
2.1 KiB
PHP
103 lines
2.1 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\Models;
|
|
|
|
use AltThree\Validator\ValidatingTrait;
|
|
use CachetHQ\Cachet\Presenters\MetricPointPresenter;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use McCool\LaravelAutoPresenter\HasPresenter;
|
|
|
|
class MetricPoint extends Model implements HasPresenter
|
|
{
|
|
use ValidatingTrait;
|
|
|
|
/**
|
|
* The model's attributes.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $attributes = [
|
|
'value' => 0,
|
|
'counter' => 1,
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $casts = [
|
|
'metric_id' => 'int',
|
|
'value' => 'float',
|
|
'counter' => 'int',
|
|
];
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $fillable = [
|
|
'metric_id',
|
|
'value',
|
|
'counter',
|
|
'created_at',
|
|
];
|
|
|
|
/**
|
|
* The validation rules.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public $rules = [
|
|
'value' => 'numeric|required',
|
|
];
|
|
|
|
/**
|
|
* Get the metric relation.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function metric()
|
|
{
|
|
return $this->belongsTo(Metric::class);
|
|
}
|
|
|
|
/**
|
|
* Override the value attribute.
|
|
*
|
|
* @param mixed $value
|
|
*
|
|
* @return float
|
|
*/
|
|
public function getActiveValueAttribute($value)
|
|
{
|
|
if ($this->metric->calc_type === Metric::CALC_SUM) {
|
|
return round((float) $value * $this->counter, $this->metric->places);
|
|
} elseif ($this->metric->calc_type === Metric::CALC_AVG) {
|
|
return round((float) $value * $this->counter, $this->metric->places);
|
|
}
|
|
|
|
return round((float) $value, $this->metric->places);
|
|
}
|
|
|
|
/**
|
|
* Get the presenter class.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getPresenterClass()
|
|
{
|
|
return MetricPointPresenter::class;
|
|
}
|
|
}
|