Added caching to settings

This commit is contained in:
Dan Brown 2015-09-06 15:26:31 +01:00
parent 2acbe0f0c8
commit b61c1d8df0
2 changed files with 58 additions and 10 deletions

View File

@ -30,7 +30,10 @@ class CustomFacadeProvider extends ServiceProvider
}); });
$this->app->bind('setting', function() { $this->app->bind('setting', function() {
return new SettingService($this->app->make('Oxbow\Setting')); return new SettingService(
$this->app->make('Oxbow\Setting'),
$this->app->make('Illuminate\Contracts\Cache\Repository')
);
}); });
} }
} }

View File

@ -1,6 +1,7 @@
<?php namespace Oxbow\Services; <?php namespace Oxbow\Services;
use Oxbow\Setting; use Oxbow\Setting;
use Illuminate\Contracts\Cache\Repository as Cache;
/** /**
* Class SettingService * Class SettingService
@ -13,14 +14,19 @@ class SettingService
{ {
protected $setting; protected $setting;
protected $cache;
protected $cachePrefix = 'setting-';
/** /**
* SettingService constructor. * SettingService constructor.
* @param $setting * @param Setting $setting
* @param Cache $cache
*/ */
public function __construct(Setting $setting) public function __construct(Setting $setting, Cache $cache)
{ {
$this->setting = $setting; $this->setting = $setting;
$this->cache = $cache;
} }
/** /**
@ -32,17 +38,54 @@ class SettingService
*/ */
public function get($key, $default = false) public function get($key, $default = false)
{ {
$setting = $this->getSettingObjectByKey($key); $value = $this->getValueFromStore($key, $default);
$value = $setting === null ? null : $setting->value; return $this->formatValue($value, $default);
}
/**
* Gets a setting value from the cache or database.
* @param $key
* @param $default
* @return mixed
*/
protected function getValueFromStore($key, $default)
{
$cacheKey = $this->cachePrefix . $key;
if ($this->cache->has($cacheKey)) {
return $this->cache->get($cacheKey);
}
$settingObject = $this->getSettingObjectByKey($key);
if($settingObject !== null) {
$value = $settingObject->value;
$this->cache->forever($cacheKey, $value);
return $value;
}
return $default;
}
protected function clearFromCache($key)
{
$cacheKey = $this->cachePrefix . $key;
$this->cache->forget($cacheKey);
}
/**
* Format a settings value
* @param $value
* @param $default
* @return mixed
*/
protected function formatValue($value, $default)
{
// Change string booleans to actual booleans // Change string booleans to actual booleans
if($value === 'true') $value = true; if ($value === 'true') $value = true;
if($value === 'false') $value = false; if ($value === 'false') $value = false;
// Set to default if empty // Set to default if empty
if($value === '') $value = $default; if ($value === '') $value = $default;
return $value;
return $value === null ? $default : $value;
} }
/** /**
@ -69,6 +112,7 @@ class SettingService
]); ]);
$setting->value = $value; $setting->value = $value;
$setting->save(); $setting->save();
$this->clearFromCache($key);
return true; return true;
} }
@ -83,6 +127,7 @@ class SettingService
if ($setting) { if ($setting) {
$setting->delete(); $setting->delete();
} }
$this->clearFromCache($key);
return true; return true;
} }