mirror of
https://github.com/koel/koel
synced 2024-12-25 12:03:06 +00:00
55 lines
1.3 KiB
PHP
55 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property string $key
|
|
* @property mixed $value
|
|
*
|
|
* @method static self find(string $key)
|
|
* @method static self updateOrCreate(array $where, array $params)
|
|
*/
|
|
class Setting extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $primaryKey = 'key';
|
|
public $timestamps = false;
|
|
protected $guarded = [];
|
|
|
|
public static function get(string $key): mixed
|
|
{
|
|
return self::find($key)?->value;
|
|
}
|
|
|
|
/**
|
|
* Set a setting (no pun) value.
|
|
*
|
|
* @param array|string $key the key of the setting, or an associative array of settings,
|
|
* in which case $value will be discarded
|
|
*/
|
|
public static function set(array|string $key, $value = null): void
|
|
{
|
|
if (is_array($key)) {
|
|
foreach ($key as $k => $v) {
|
|
self::set($k, $v);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
self::updateOrCreate(compact('key'), compact('value'));
|
|
}
|
|
|
|
protected function value(): Attribute
|
|
{
|
|
return new Attribute(
|
|
get: static fn ($value) => unserialize($value),
|
|
set: static fn ($value) => serialize($value)
|
|
);
|
|
}
|
|
}
|