mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 13:38:20 +01:00
197 lines
4.3 KiB
PHP
197 lines
4.3 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\Models\Traits\SearchableTrait;
|
|
use CachetHQ\Cachet\Models\Traits\SortableTrait;
|
|
use CachetHQ\Cachet\Presenters\ComponentGroupPresenter;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Collection;
|
|
use McCool\LaravelAutoPresenter\HasPresenter;
|
|
|
|
/**
|
|
* This is the component group model class.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
*/
|
|
class ComponentGroup extends Model implements HasPresenter
|
|
{
|
|
use SearchableTrait, SortableTrait, ValidatingTrait;
|
|
|
|
/**
|
|
* Viewable only authenticated users.
|
|
*
|
|
* @var int
|
|
*/
|
|
const VISIBLE_AUTHENTICATED = 0;
|
|
|
|
/**
|
|
* Viewable by public.
|
|
*
|
|
* @var int
|
|
*/
|
|
const VISIBLE_GUEST = 1;
|
|
|
|
/**
|
|
* The model's attributes.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $attributes = [
|
|
'order' => 0,
|
|
'collapsed' => 0,
|
|
'visible' => 0,
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $casts = [
|
|
'name' => 'string',
|
|
'order' => 'int',
|
|
'collapsed' => 'int',
|
|
'visible' => 'int',
|
|
];
|
|
|
|
/**
|
|
* The fillable properties.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $fillable = ['name', 'order', 'collapsed', 'visible'];
|
|
|
|
/**
|
|
* The validation rules.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public $rules = [
|
|
'name' => 'required|string',
|
|
'order' => 'required|int',
|
|
'collapsed' => 'required|int|between:0,4',
|
|
'visible' => 'required|bool',
|
|
];
|
|
|
|
/**
|
|
* The searchable fields.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $searchable = [
|
|
'id',
|
|
'name',
|
|
'order',
|
|
'collapsed',
|
|
'visible',
|
|
];
|
|
|
|
/**
|
|
* The sortable fields.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $sortable = [
|
|
'id',
|
|
'name',
|
|
'order',
|
|
'collapsed',
|
|
'visible',
|
|
];
|
|
|
|
/**
|
|
* The relations to eager load on every query.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $with = ['enabled_components', 'enabled_components_lowest'];
|
|
|
|
/**
|
|
* Get the components relation.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function components()
|
|
{
|
|
return $this->hasMany(Component::class, 'group_id', 'id');
|
|
}
|
|
|
|
/**
|
|
* Get the incidents relation.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasManyThrough
|
|
*/
|
|
public function incidents()
|
|
{
|
|
return $this->hasManyThrough(Incident::class, Component::class, 'id', 'component_id');
|
|
}
|
|
|
|
/**
|
|
* Return all of the enabled components.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
public function enabled_components()
|
|
{
|
|
return $this->components()->enabled()->orderBy('order');
|
|
}
|
|
|
|
/**
|
|
* Return all of the enabled components ordered by status.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
public function enabled_components_lowest()
|
|
{
|
|
return $this->components()->enabled()->orderBy('status', 'desc');
|
|
}
|
|
|
|
/**
|
|
* Get the presenter class.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getPresenterClass()
|
|
{
|
|
return ComponentGroupPresenter::class;
|
|
}
|
|
|
|
/**
|
|
* Finds all component groups which are visible to public.
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Builder $query
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
public function scopeVisible(Builder $query)
|
|
{
|
|
return $query->where('visible', '=', self::VISIBLE_GUEST);
|
|
}
|
|
|
|
/**
|
|
* Finds all used component groups.
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Builder $query
|
|
* @param \Illuminate\Support\Collection $usedComponentGroups
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
public function scopeUsed(Builder $query, Collection $usedComponentGroups)
|
|
{
|
|
return $query->whereIn('id', $usedComponentGroups)
|
|
->orderBy('order');
|
|
}
|
|
}
|