2022-03-05 16:02:12 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2022-05-14 17:21:51 +02:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
2022-03-05 16:02:12 +01:00
|
|
|
|
|
|
|
class Yabs extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
|
|
|
|
|
|
|
public $incrementing = false;
|
|
|
|
|
2022-07-22 15:49:18 +02:00
|
|
|
protected $keyType = 'string';
|
|
|
|
|
2022-03-05 16:02:12 +01:00
|
|
|
protected $table = 'yabs';
|
|
|
|
|
2022-07-20 04:51:45 +02:00
|
|
|
protected $fillable = ['id', 'server_id', 'has_ipv6', 'aes', 'vm', 'output_date', 'cpu_cores', 'cpu_freq', 'cpu_model', 'ram', 'ram_type', 'ram_mb', 'disk', 'disk_type', 'disk_gb', 'gb5_single', 'gb5_multi', 'gb5_id', '4k', '4k_type', '4k_as_mbps', '64k', '64k_type', '64k_as_mbps', '512k', '512k_type', '512k_as_mbps', '1m', '1m_type', '1m_as_mbps', 'location', 'send', 'send_type', 'send_as_mbps', 'receive', 'receive_type', 'receive_as_mbps', 'uptime', 'distro', 'kernel', 'swap', 'swap_type', 'swap_mb'];
|
2022-05-14 17:21:51 +02:00
|
|
|
|
2022-07-18 06:27:11 +02:00
|
|
|
public static function yabs(string $yabs_id)
|
|
|
|
{
|
|
|
|
return Cache::remember("yabs.$yabs_id", now()->addMonth(1), function () use ($yabs_id) {
|
2022-07-19 16:20:15 +02:00
|
|
|
return self::where('id', $yabs_id)->with(['server', 'disk_speed', 'network_speed', 'server.location', 'server.provider'])
|
2022-07-18 06:27:11 +02:00
|
|
|
->get();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function allYabs()
|
|
|
|
{
|
|
|
|
return Cache::remember("all_yabs", now()->addMonth(1), function () {
|
2022-07-19 16:20:15 +02:00
|
|
|
return self::with(['server', 'disk_speed', 'network_speed', 'server.location', 'server.provider'])
|
2022-07-18 06:27:11 +02:00
|
|
|
->get();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function server()
|
|
|
|
{
|
|
|
|
return $this->hasOne(Server::class, 'id', 'server_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function disk_speed()
|
|
|
|
{
|
|
|
|
return $this->hasOne(DiskSpeed::class, 'id', 'id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function network_speed()
|
|
|
|
{
|
|
|
|
return $this->hasMany(NetworkSpeed::class, 'id', 'id');
|
|
|
|
}
|
|
|
|
|
2022-07-19 16:20:15 +02:00
|
|
|
public static function buildYabsArray($data): array
|
|
|
|
{
|
|
|
|
$speed_tests = [];
|
|
|
|
foreach ($data->network_speed as $ns) {
|
|
|
|
$speed_tests[] = array(
|
|
|
|
'location' => $ns->location,
|
2022-07-20 04:51:45 +02:00
|
|
|
'send' => $ns->send . ' ' . $ns->send_type,
|
|
|
|
'receive' => $ns->receive . ' ' . $ns->receive_type,
|
2022-07-19 16:20:15 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return array(
|
|
|
|
'date_time' => $data->output_date,
|
|
|
|
'location' => $data->server->location->name,
|
|
|
|
'provider' => $data->server->provider->name,
|
2022-07-20 04:51:45 +02:00
|
|
|
'uptime' => $data->uptime,
|
|
|
|
'distro' => $data->distro,
|
|
|
|
'kernel' => $data->kernel,
|
2022-07-19 16:20:15 +02:00
|
|
|
'cpu' => array(
|
|
|
|
'cores' => $data->cpu_cores,
|
|
|
|
'speed_mhz' => $data->cpu_freq,
|
|
|
|
'model' => $data->cpu_model,
|
|
|
|
'aes' => $data->aes === 1,
|
|
|
|
'vm' => $data->vm === 1,
|
|
|
|
'GB5_single' => $data->gb5_single,
|
|
|
|
'GB5_multi' => $data->gb5_multi,
|
|
|
|
),
|
|
|
|
'ram' => array(
|
2022-07-20 04:51:45 +02:00
|
|
|
'amount' => $data->ram . ' ' . $data->ram_type,
|
2022-07-19 16:20:15 +02:00
|
|
|
'mb' => $data->ram_mb,
|
2022-07-20 04:51:45 +02:00
|
|
|
'swap' => array(
|
|
|
|
'amount' => $data->swap ?? null . ' ' . $data->swap_type ?? null,
|
|
|
|
'mb' => $data->swap_mb ?? null,
|
|
|
|
),
|
2022-07-19 16:20:15 +02:00
|
|
|
),
|
|
|
|
'disk' => array(
|
2022-07-20 04:51:45 +02:00
|
|
|
'amount' => $data->disk . ' ' . $data->disk_type,
|
2022-07-19 16:20:15 +02:00
|
|
|
'gb' => $data->disk_gb,
|
|
|
|
'speed_tests' => array(
|
2022-07-20 04:51:45 +02:00
|
|
|
'4k' => $data->disk_speed->d_4k . ' ' . $data->disk_speed->d_4k_type,
|
|
|
|
'64k' => $data->disk_speed->d_64k . ' ' . $data->disk_speed->d_64k_type,
|
|
|
|
'512k' => $data->disk_speed->d_512k . ' ' . $data->disk_speed->d_512k_type,
|
|
|
|
'1m' => $data->disk_speed->d_1m . ' ' . $data->disk_speed->d_1m_type,
|
2022-07-19 16:20:15 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
'network' => array(
|
|
|
|
'has_ipv6' => $data->has_ipv6 === 1,
|
|
|
|
'speed_tests' => $speed_tests
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-05 16:02:12 +01:00
|
|
|
}
|