mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
69 lines
1.6 KiB
PHP
69 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\ServiceStatusEnum;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $slug
|
|
* @property string|null $endpoint_url
|
|
* @property string $check_type
|
|
* @property string|null $probe_identifier
|
|
* @property ServiceStatusEnum $status
|
|
* @property Carbon|null $last_checked_at
|
|
* @property string $uptime_percentage
|
|
* @property int|null $response_time_ms
|
|
* @property bool $is_enabled
|
|
* @property int $sort_order
|
|
*/
|
|
class ServiceStatus extends Model
|
|
{
|
|
protected $table = 'service_statuses';
|
|
|
|
/**
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'slug',
|
|
'endpoint_url',
|
|
'check_type',
|
|
'probe_identifier',
|
|
'status',
|
|
'last_checked_at',
|
|
'uptime_percentage',
|
|
'response_time_ms',
|
|
'is_enabled',
|
|
'sort_order',
|
|
];
|
|
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'status' => ServiceStatusEnum::class,
|
|
'last_checked_at' => 'datetime',
|
|
'is_enabled' => 'boolean',
|
|
'uptime_percentage' => 'decimal:2',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return BelongsToMany<ServiceIncident, $this>
|
|
*/
|
|
public function incidents(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(ServiceIncident::class, 'service_incident_service_status')
|
|
->withTimestamps();
|
|
}
|
|
}
|