2018-09-25 07:30:50 -04:00
|
|
|
<?php namespace BookStack\Settings;
|
2015-08-30 10:31:16 -04:00
|
|
|
|
2015-09-06 10:26:31 -04:00
|
|
|
use Illuminate\Contracts\Cache\Repository as Cache;
|
2015-08-30 10:31:16 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class SettingService
|
|
|
|
* The settings are a simple key-value database store.
|
2019-05-07 17:56:48 -04:00
|
|
|
* For non-authenticated users, user settings are stored via the session instead.
|
2015-08-30 10:31:16 -04:00
|
|
|
*/
|
|
|
|
class SettingService
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $setting;
|
2015-09-06 10:26:31 -04:00
|
|
|
protected $cache;
|
2017-02-05 13:57:57 -05:00
|
|
|
protected $localCache = [];
|
2015-09-06 10:26:31 -04:00
|
|
|
|
|
|
|
protected $cachePrefix = 'setting-';
|
2015-08-30 10:31:16 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SettingService constructor.
|
2015-09-06 10:26:31 -04:00
|
|
|
* @param Setting $setting
|
|
|
|
* @param Cache $cache
|
2015-08-30 10:31:16 -04:00
|
|
|
*/
|
2015-09-06 10:26:31 -04:00
|
|
|
public function __construct(Setting $setting, Cache $cache)
|
2015-08-30 10:31:16 -04:00
|
|
|
{
|
|
|
|
$this->setting = $setting;
|
2015-09-06 10:26:31 -04:00
|
|
|
$this->cache = $cache;
|
2015-08-30 10:31:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a setting from the database,
|
|
|
|
* If not found, Returns default, Which is false by default.
|
|
|
|
* @param $key
|
|
|
|
* @param string|bool $default
|
|
|
|
* @return bool|string
|
|
|
|
*/
|
|
|
|
public function get($key, $default = false)
|
|
|
|
{
|
2018-01-28 11:58:52 -05:00
|
|
|
if ($default === false) {
|
|
|
|
$default = config('setting-defaults.' . $key, false);
|
|
|
|
}
|
2019-03-07 16:09:23 -05:00
|
|
|
|
2018-01-28 11:58:52 -05:00
|
|
|
if (isset($this->localCache[$key])) {
|
|
|
|
return $this->localCache[$key];
|
|
|
|
}
|
2017-02-05 13:57:57 -05:00
|
|
|
|
2016-01-13 17:22:30 -05:00
|
|
|
$value = $this->getValueFromStore($key, $default);
|
2017-02-05 13:57:57 -05:00
|
|
|
$formatted = $this->formatValue($value, $default);
|
|
|
|
$this->localCache[$key] = $formatted;
|
|
|
|
return $formatted;
|
2015-09-06 10:26:31 -04:00
|
|
|
}
|
|
|
|
|
2019-05-07 17:56:48 -04:00
|
|
|
/**
|
|
|
|
* Get a value from the session instead of the main store option.
|
|
|
|
* @param $key
|
|
|
|
* @param bool $default
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
protected function getFromSession($key, $default = false)
|
|
|
|
{
|
|
|
|
$value = session()->get($key, $default);
|
|
|
|
$formatted = $this->formatValue($value, $default);
|
|
|
|
return $formatted;
|
|
|
|
}
|
|
|
|
|
2017-01-15 11:27:24 -05:00
|
|
|
/**
|
|
|
|
* Get a user-specific setting from the database or cache.
|
2018-09-25 07:30:50 -04:00
|
|
|
* @param \BookStack\Auth\User $user
|
2017-01-15 11:27:24 -05:00
|
|
|
* @param $key
|
|
|
|
* @param bool $default
|
|
|
|
* @return bool|string
|
|
|
|
*/
|
|
|
|
public function getUser($user, $key, $default = false)
|
|
|
|
{
|
2018-12-07 13:33:32 -05:00
|
|
|
if ($user->isDefault()) {
|
2019-05-07 17:56:48 -04:00
|
|
|
return $this->getFromSession($key, $default);
|
2018-12-07 13:33:32 -05:00
|
|
|
}
|
2017-01-15 11:27:24 -05:00
|
|
|
return $this->get($this->userKey($user->id, $key), $default);
|
|
|
|
}
|
|
|
|
|
2019-04-14 08:01:51 -04:00
|
|
|
/**
|
|
|
|
* Get a value for the current logged-in user.
|
|
|
|
* @param $key
|
|
|
|
* @param bool $default
|
|
|
|
* @return bool|string
|
|
|
|
*/
|
|
|
|
public function getForCurrentUser($key, $default = false)
|
|
|
|
{
|
2019-04-14 08:19:33 -04:00
|
|
|
return $this->getUser(user(), $key, $default);
|
2019-04-14 08:01:51 -04:00
|
|
|
}
|
|
|
|
|
2015-09-06 10:26:31 -04:00
|
|
|
/**
|
|
|
|
* Gets a setting value from the cache or database.
|
2016-03-29 14:26:13 -04:00
|
|
|
* Looks at the system defaults if not cached or in database.
|
2015-09-06 10:26:31 -04:00
|
|
|
* @param $key
|
|
|
|
* @param $default
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
protected function getValueFromStore($key, $default)
|
|
|
|
{
|
2016-03-29 14:26:13 -04:00
|
|
|
// Check the cache
|
2015-09-06 10:26:31 -04:00
|
|
|
$cacheKey = $this->cachePrefix . $key;
|
2017-02-05 13:57:57 -05:00
|
|
|
$cacheVal = $this->cache->get($cacheKey, null);
|
2018-01-28 11:58:52 -05:00
|
|
|
if ($cacheVal !== null) {
|
|
|
|
return $cacheVal;
|
|
|
|
}
|
2015-09-06 10:26:31 -04:00
|
|
|
|
2016-03-29 14:26:13 -04:00
|
|
|
// Check the database
|
2015-09-06 10:26:31 -04:00
|
|
|
$settingObject = $this->getSettingObjectByKey($key);
|
2016-01-13 17:22:30 -05:00
|
|
|
if ($settingObject !== null) {
|
2015-09-06 10:26:31 -04:00
|
|
|
$value = $settingObject->value;
|
|
|
|
$this->cache->forever($cacheKey, $value);
|
|
|
|
return $value;
|
|
|
|
}
|
2015-09-05 12:42:05 -04:00
|
|
|
|
2015-09-06 10:26:31 -04:00
|
|
|
return $default;
|
|
|
|
}
|
|
|
|
|
2016-01-13 17:22:30 -05:00
|
|
|
/**
|
|
|
|
* Clear an item from the cache completely.
|
|
|
|
* @param $key
|
|
|
|
*/
|
2015-09-06 10:26:31 -04:00
|
|
|
protected function clearFromCache($key)
|
|
|
|
{
|
|
|
|
$cacheKey = $this->cachePrefix . $key;
|
|
|
|
$this->cache->forget($cacheKey);
|
2017-12-30 11:09:27 -05:00
|
|
|
if (isset($this->localCache[$key])) {
|
|
|
|
unset($this->localCache[$key]);
|
|
|
|
}
|
2015-09-06 10:26:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a settings value
|
|
|
|
* @param $value
|
|
|
|
* @param $default
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
protected function formatValue($value, $default)
|
|
|
|
{
|
2015-09-05 12:42:05 -04:00
|
|
|
// Change string booleans to actual booleans
|
2018-01-28 11:58:52 -05:00
|
|
|
if ($value === 'true') {
|
|
|
|
$value = true;
|
|
|
|
}
|
|
|
|
if ($value === 'false') {
|
|
|
|
$value = false;
|
|
|
|
}
|
2015-09-05 12:42:05 -04:00
|
|
|
|
|
|
|
// Set to default if empty
|
2018-01-28 11:58:52 -05:00
|
|
|
if ($value === '') {
|
|
|
|
$value = $default;
|
|
|
|
}
|
2015-09-06 10:26:31 -04:00
|
|
|
return $value;
|
2015-08-30 10:31:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a setting exists.
|
|
|
|
* @param $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function has($key)
|
|
|
|
{
|
|
|
|
$setting = $this->getSettingObjectByKey($key);
|
|
|
|
return $setting !== null;
|
|
|
|
}
|
|
|
|
|
2017-01-15 11:27:24 -05:00
|
|
|
/**
|
|
|
|
* Check if a user setting is in the database.
|
|
|
|
* @param $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasUser($key)
|
|
|
|
{
|
|
|
|
return $this->has($this->userKey($key));
|
|
|
|
}
|
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
/**
|
|
|
|
* Add a setting to the database.
|
|
|
|
* @param $key
|
|
|
|
* @param $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function put($key, $value)
|
|
|
|
{
|
|
|
|
$setting = $this->setting->firstOrNew([
|
|
|
|
'setting_key' => $key
|
|
|
|
]);
|
|
|
|
$setting->value = $value;
|
|
|
|
$setting->save();
|
2015-09-06 10:26:31 -04:00
|
|
|
$this->clearFromCache($key);
|
2015-08-30 10:31:16 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-15 11:27:24 -05:00
|
|
|
/**
|
|
|
|
* Put a user-specific setting into the database.
|
2018-09-25 07:30:50 -04:00
|
|
|
* @param \BookStack\Auth\User $user
|
2017-01-15 11:27:24 -05:00
|
|
|
* @param $key
|
|
|
|
* @param $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function putUser($user, $key, $value)
|
|
|
|
{
|
2018-12-07 13:33:32 -05:00
|
|
|
if ($user->isDefault()) {
|
|
|
|
return session()->put($key, $value);
|
|
|
|
}
|
2017-01-15 11:27:24 -05:00
|
|
|
return $this->put($this->userKey($user->id, $key), $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a setting key into a user-specific key.
|
|
|
|
* @param $key
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function userKey($userId, $key = '')
|
|
|
|
{
|
|
|
|
return 'user:' . $userId . ':' . $key;
|
|
|
|
}
|
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
/**
|
|
|
|
* Removes a setting from the database.
|
|
|
|
* @param $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function remove($key)
|
|
|
|
{
|
|
|
|
$setting = $this->getSettingObjectByKey($key);
|
2015-08-31 15:11:44 -04:00
|
|
|
if ($setting) {
|
2015-08-30 10:31:16 -04:00
|
|
|
$setting->delete();
|
|
|
|
}
|
2015-09-06 10:26:31 -04:00
|
|
|
$this->clearFromCache($key);
|
2015-08-30 10:31:16 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-15 11:27:24 -05:00
|
|
|
/**
|
|
|
|
* Delete settings for a given user id.
|
|
|
|
* @param $userId
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function deleteUserSettings($userId)
|
|
|
|
{
|
|
|
|
return $this->setting->where('setting_key', 'like', $this->userKey($userId) . '%')->delete();
|
|
|
|
}
|
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
/**
|
|
|
|
* Gets a setting model from the database for the given key.
|
|
|
|
* @param $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-01-13 17:22:30 -05:00
|
|
|
protected function getSettingObjectByKey($key)
|
2015-08-31 15:11:44 -04:00
|
|
|
{
|
2015-08-30 10:31:16 -04:00
|
|
|
return $this->setting->where('setting_key', '=', $key)->first();
|
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|