mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-12 11:31:07 +01:00
118 lines
2.4 KiB
PHP
118 lines
2.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\Models;
|
|
|
|
use AltThree\Validator\ValidatingTrait;
|
|
use CachetHQ\Cachet\Presenters\MetricPresenter;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use McCool\LaravelAutoPresenter\HasPresenter;
|
|
|
|
class Metric extends Model implements HasPresenter
|
|
{
|
|
use ValidatingTrait;
|
|
|
|
const CALC_SUM = 0;
|
|
const CALC_AVG = 1;
|
|
|
|
/**
|
|
* The model's attributes.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $attributes = [
|
|
'name' => '',
|
|
'display_chart' => 1,
|
|
'default_value' => 0,
|
|
'calc_type' => 0,
|
|
'places' => 2,
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $casts = [
|
|
'id' => 'int',
|
|
'name' => 'string',
|
|
'display_chart' => 'bool',
|
|
'default_value' => 'int',
|
|
'calc_type' => 'int',
|
|
'places' => 'int',
|
|
];
|
|
|
|
/**
|
|
* The fillable properties.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'suffix',
|
|
'description',
|
|
'display_chart',
|
|
'default_value',
|
|
'calc_type',
|
|
'places',
|
|
];
|
|
|
|
/**
|
|
* The validation rules.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public $rules = [
|
|
'name' => 'required',
|
|
'suffix' => 'required',
|
|
'display_chart' => 'boolean',
|
|
'default_value' => 'numeric',
|
|
'places' => 'numeric|min:0|max:4',
|
|
];
|
|
|
|
/**
|
|
* The relations to eager load on every query.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $with = ['points'];
|
|
|
|
/**
|
|
* Metrics contain many metric points.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function points()
|
|
{
|
|
return $this->hasMany(MetricPoint::class, 'metric_id', 'id');
|
|
}
|
|
|
|
/**
|
|
* Determines whether a chart should be shown.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function getShouldDisplayAttribute()
|
|
{
|
|
return $this->display_chart === 1;
|
|
}
|
|
|
|
/**
|
|
* Get the presenter class.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getPresenterClass()
|
|
{
|
|
return MetricPresenter::class;
|
|
}
|
|
}
|