Files
jabali-panel/app/Models/DnsSetting.php
2026-02-02 03:11:45 +02:00

44 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Cache;
class DnsSetting extends Model
{
protected $fillable = ['key', 'value'];
public static function get(string $key, mixed $default = null): mixed
{
return Cache::remember("dns_setting_{$key}", 3600, function () use ($key, $default) {
$setting = static::where('key', $key)->first();
return $setting?->value ?? $default;
});
}
public static function set(string $key, mixed $value): void
{
static::updateOrCreate(['key' => $key], ['value' => $value]);
Cache::forget("dns_setting_{$key}");
}
public static function getAll(): array
{
return Cache::remember('dns_settings_all', 3600, function () {
return static::pluck('value', 'key')->toArray();
});
}
public static function clearCache(): void
{
$settings = static::pluck('key');
foreach ($settings as $key) {
Cache::forget("dns_setting_{$key}");
}
Cache::forget('dns_settings_all');
}
}