83 lines
1.9 KiB
PHP
83 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use Log;
|
|
use Illuminate\Support\Carbon;
|
|
use Prettus\Repository\Contracts\CacheableInterface;
|
|
|
|
use App\Models\Setting;
|
|
use App\Repositories\Traits\CacheableRepository;
|
|
use Prettus\Validator\Exceptions\ValidatorException;
|
|
|
|
class SettingRepository extends BaseRepository implements CacheableInterface
|
|
{
|
|
use CacheableRepository;
|
|
|
|
public $cacheMinutes = 1;
|
|
|
|
public function model()
|
|
{
|
|
return Setting::class;
|
|
}
|
|
|
|
/**
|
|
* Get a setting, reading it from the cache possibly
|
|
* @param string $key
|
|
* @return mixed
|
|
*/
|
|
public function retrieve($key)
|
|
{
|
|
$key = str_replace('.', '_', strtolower($key));
|
|
$setting = $this->findWhere(['id' => $key], ['type', 'value'])->first();
|
|
|
|
if(!$setting) {
|
|
return null;
|
|
}
|
|
|
|
# cast some types
|
|
switch($setting->type) {
|
|
case 'bool':
|
|
case 'boolean':
|
|
return (bool) $setting->value;
|
|
break;
|
|
case 'date':
|
|
return Carbon::parse($setting->value);
|
|
break;
|
|
case 'int':
|
|
case 'integer':
|
|
case 'number':
|
|
return (int) $setting->value;
|
|
break;
|
|
case 'float':
|
|
return (float) $setting->value;
|
|
break;
|
|
default:
|
|
return $setting->value;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update an existing setting with a new value. Doesn't create
|
|
* a new setting
|
|
* @param $key
|
|
* @param $value
|
|
* @return null
|
|
*/
|
|
public function store($key, $value)
|
|
{
|
|
$setting = $this->findWhere(['key' => $key], ['id'])->first();
|
|
if (!$setting) {
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
$this->update(['value' => $value], $setting->id);
|
|
} catch (ValidatorException $e) {
|
|
Log::error($e->getMessage(), $e->getTrace());
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
}
|