2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Settings;
|
2015-08-30 10:31:16 -04:00
|
|
|
|
2023-05-17 12:56:55 -04:00
|
|
|
use BookStack\Users\Models\User;
|
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.
|
2023-02-23 17:14:47 -05:00
|
|
|
* A local array-based cache is used to for setting accesses across a request.
|
2015-08-30 10:31:16 -04:00
|
|
|
*/
|
|
|
|
class SettingService
|
|
|
|
{
|
2023-01-25 06:03:19 -05:00
|
|
|
protected array $localCache = [];
|
2015-08-30 10:31:16 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a setting from the database,
|
|
|
|
* If not found, Returns default, Which is false by default.
|
|
|
|
*/
|
2023-02-23 17:14:47 -05:00
|
|
|
public function get(string $key, $default = null): mixed
|
2015-08-30 10:31:16 -04:00
|
|
|
{
|
2021-02-07 18:12:05 -05:00
|
|
|
if (is_null($default)) {
|
2018-01-28 11:58:52 -05:00
|
|
|
$default = config('setting-defaults.' . $key, false);
|
|
|
|
}
|
2019-03-07 16:09:23 -05:00
|
|
|
|
2021-01-30 19:23:15 -05:00
|
|
|
$value = $this->getValueFromStore($key) ?? $default;
|
2023-02-23 17:14:47 -05:00
|
|
|
return $this->formatValue($value, $default);
|
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.
|
|
|
|
*/
|
2021-01-30 19:23:15 -05:00
|
|
|
protected function getFromSession(string $key, $default = false)
|
2019-05-07 17:56:48 -04:00
|
|
|
{
|
|
|
|
$value = session()->get($key, $default);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-01-30 19:23:15 -05:00
|
|
|
return $this->formatValue($value, $default);
|
2019-05-07 17:56:48 -04:00
|
|
|
}
|
|
|
|
|
2017-01-15 11:27:24 -05:00
|
|
|
/**
|
|
|
|
* Get a user-specific setting from the database or cache.
|
|
|
|
*/
|
2021-02-07 18:12:05 -05:00
|
|
|
public function getUser(User $user, string $key, $default = null)
|
2017-01-15 11:27:24 -05:00
|
|
|
{
|
2021-02-07 18:12:05 -05:00
|
|
|
if (is_null($default)) {
|
|
|
|
$default = config('setting-defaults.user.' . $key, 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
|
|
|
}
|
2021-06-26 11:23:15 -04: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.
|
|
|
|
*/
|
2021-02-07 18:12:05 -05:00
|
|
|
public function getForCurrentUser(string $key, $default = null)
|
2019-04-14 08:01:51 -04:00
|
|
|
{
|
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
|
|
|
/**
|
2023-02-23 17:14:47 -05:00
|
|
|
* Gets a setting value from the local cache.
|
|
|
|
* Will load the local cache if not previously loaded.
|
2015-09-06 10:26:31 -04:00
|
|
|
*/
|
2023-02-23 17:14:47 -05:00
|
|
|
protected function getValueFromStore(string $key): mixed
|
2015-09-06 10:26:31 -04:00
|
|
|
{
|
2023-02-23 17:14:47 -05:00
|
|
|
$cacheCategory = $this->localCacheCategory($key);
|
|
|
|
if (!isset($this->localCache[$cacheCategory])) {
|
|
|
|
$this->loadToLocalCache($cacheCategory);
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|
2015-09-06 10:26:31 -04:00
|
|
|
|
2023-02-23 17:14:47 -05:00
|
|
|
return $this->localCache[$cacheCategory][$key] ?? null;
|
|
|
|
}
|
2021-01-30 19:23:15 -05:00
|
|
|
|
2023-02-23 17:14:47 -05:00
|
|
|
/**
|
|
|
|
* Put the given value into the local cached under the given key.
|
|
|
|
*/
|
|
|
|
protected function putValueIntoLocalCache(string $key, mixed $value): void
|
|
|
|
{
|
|
|
|
$cacheCategory = $this->localCacheCategory($key);
|
|
|
|
if (!isset($this->localCache[$cacheCategory])) {
|
|
|
|
$this->loadToLocalCache($cacheCategory);
|
|
|
|
}
|
2021-01-30 19:23:15 -05:00
|
|
|
|
2023-02-23 17:14:47 -05:00
|
|
|
$this->localCache[$cacheCategory][$key] = $value;
|
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2023-02-23 17:14:47 -05:00
|
|
|
/**
|
|
|
|
* Get the category for the given setting key.
|
|
|
|
* Will return 'app' for a general app setting otherwise 'user:<user_id>' for a user setting.
|
|
|
|
*/
|
|
|
|
protected function localCacheCategory(string $key): string
|
|
|
|
{
|
|
|
|
if (str_starts_with($key, 'user:')) {
|
|
|
|
return implode(':', array_slice(explode(':', $key), 0, 2));
|
2015-09-06 10:26:31 -04:00
|
|
|
}
|
2015-09-05 12:42:05 -04:00
|
|
|
|
2023-02-23 17:14:47 -05:00
|
|
|
return 'app';
|
2015-09-06 10:26:31 -04:00
|
|
|
}
|
|
|
|
|
2016-01-13 17:22:30 -05:00
|
|
|
/**
|
2023-02-23 17:14:47 -05:00
|
|
|
* For the given category, load the relevant settings from the database into the local cache.
|
2016-01-13 17:22:30 -05:00
|
|
|
*/
|
2023-02-23 17:14:47 -05:00
|
|
|
protected function loadToLocalCache(string $cacheCategory): void
|
2015-09-06 10:26:31 -04:00
|
|
|
{
|
2023-02-23 17:14:47 -05:00
|
|
|
$query = Setting::query();
|
|
|
|
|
|
|
|
if ($cacheCategory === 'app') {
|
|
|
|
$query->where('setting_key', 'not like', 'user:%');
|
|
|
|
} else {
|
|
|
|
$query->where('setting_key', 'like', $cacheCategory . ':%');
|
|
|
|
}
|
|
|
|
$settings = $query->toBase()->get();
|
|
|
|
|
|
|
|
if (!isset($this->localCache[$cacheCategory])) {
|
|
|
|
$this->localCache[$cacheCategory] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($settings as $setting) {
|
|
|
|
$value = $setting->value;
|
|
|
|
|
|
|
|
if ($setting->type === 'array') {
|
|
|
|
$value = json_decode($value, true) ?? [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->localCache[$cacheCategory][$setting->setting_key] = $value;
|
2017-12-30 11:09:27 -05:00
|
|
|
}
|
2015-09-06 10:26:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Format a settings value.
|
2015-09-06 10:26:31 -04:00
|
|
|
*/
|
2023-02-23 17:14:47 -05:00
|
|
|
protected function formatValue(mixed $value, mixed $default): mixed
|
2015-09-06 10:26:31 -04:00
|
|
|
{
|
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;
|
2021-06-26 11:23:15 -04:00
|
|
|
} elseif ($value === 'false') {
|
2018-01-28 11:58:52 -05:00
|
|
|
$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;
|
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2015-09-06 10:26:31 -04:00
|
|
|
return $value;
|
2015-08-30 10:31:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a setting exists.
|
|
|
|
*/
|
2021-01-30 19:23:15 -05:00
|
|
|
public function has(string $key): bool
|
2015-08-30 10:31:16 -04:00
|
|
|
{
|
|
|
|
$setting = $this->getSettingObjectByKey($key);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
return $setting !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a setting to the database.
|
2021-01-30 19:23:15 -05:00
|
|
|
* Values can be an array or a string.
|
2015-08-30 10:31:16 -04:00
|
|
|
*/
|
2023-02-23 17:14:47 -05:00
|
|
|
public function put(string $key, mixed $value): bool
|
2015-08-30 10:31:16 -04:00
|
|
|
{
|
2023-02-23 17:14:47 -05:00
|
|
|
$setting = Setting::query()->firstOrNew([
|
2021-06-26 11:23:15 -04:00
|
|
|
'setting_key' => $key,
|
2015-08-30 10:31:16 -04:00
|
|
|
]);
|
2023-02-23 17:14:47 -05:00
|
|
|
|
2021-01-30 19:23:15 -05:00
|
|
|
$setting->type = 'string';
|
2023-02-23 17:14:47 -05:00
|
|
|
$setting->value = $value;
|
2021-01-30 19:23:15 -05:00
|
|
|
|
|
|
|
if (is_array($value)) {
|
|
|
|
$setting->type = 'array';
|
2023-02-23 17:14:47 -05:00
|
|
|
$setting->value = $this->formatArrayValue($value);
|
2021-01-30 19:23:15 -05:00
|
|
|
}
|
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
$setting->save();
|
2023-02-23 17:14:47 -05:00
|
|
|
$this->putValueIntoLocalCache($key, $value);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-01-30 19:23:15 -05:00
|
|
|
/**
|
|
|
|
* Format an array to be stored as a setting.
|
|
|
|
* Array setting types are expected to be a flat array of child key=>value array items.
|
|
|
|
* This filters out any child items that are empty.
|
|
|
|
*/
|
|
|
|
protected function formatArrayValue(array $value): string
|
|
|
|
{
|
2021-03-07 17:24:05 -05:00
|
|
|
$values = collect($value)->values()->filter(function (array $item) {
|
2021-01-30 19:23:15 -05:00
|
|
|
return count(array_filter($item)) > 0;
|
|
|
|
});
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-01-30 19:23:15 -05:00
|
|
|
return json_encode($values);
|
|
|
|
}
|
|
|
|
|
2017-01-15 11:27:24 -05:00
|
|
|
/**
|
|
|
|
* Put a user-specific setting into the database.
|
2022-11-09 14:30:08 -05:00
|
|
|
* Can only take string value types since this may use
|
|
|
|
* the session which is less flexible to data types.
|
2017-01-15 11:27:24 -05:00
|
|
|
*/
|
2021-01-30 19:23:15 -05:00
|
|
|
public function putUser(User $user, string $key, string $value): bool
|
2017-01-15 11:27:24 -05:00
|
|
|
{
|
2018-12-07 13:33:32 -05:00
|
|
|
if ($user->isDefault()) {
|
2021-01-30 19:23:15 -05:00
|
|
|
session()->put($key, $value);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-01-30 19:23:15 -05:00
|
|
|
return true;
|
2018-12-07 13:33:32 -05:00
|
|
|
}
|
2021-01-30 19:23:15 -05:00
|
|
|
|
2017-01-15 11:27:24 -05:00
|
|
|
return $this->put($this->userKey($user->id, $key), $value);
|
2022-11-09 14:30:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put a user-specific setting into the database for the current access user.
|
|
|
|
* Can only take string value types since this may use
|
|
|
|
* the session which is less flexible to data types.
|
|
|
|
*/
|
2023-02-23 17:14:47 -05:00
|
|
|
public function putForCurrentUser(string $key, string $value): bool
|
2022-11-09 14:30:08 -05:00
|
|
|
{
|
|
|
|
return $this->putUser(user(), $key, $value);
|
2017-01-15 11:27:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a setting key into a user-specific key.
|
|
|
|
*/
|
2021-01-30 19:23:15 -05:00
|
|
|
protected function userKey(string $userId, string $key = ''): string
|
2017-01-15 11:27:24 -05:00
|
|
|
{
|
|
|
|
return 'user:' . $userId . ':' . $key;
|
|
|
|
}
|
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
/**
|
|
|
|
* Removes a setting from the database.
|
|
|
|
*/
|
2021-01-30 19:23:15 -05:00
|
|
|
public function remove(string $key): void
|
2015-08-30 10:31:16 -04:00
|
|
|
{
|
|
|
|
$setting = $this->getSettingObjectByKey($key);
|
2015-08-31 15:11:44 -04:00
|
|
|
if ($setting) {
|
2015-08-30 10:31:16 -04:00
|
|
|
$setting->delete();
|
|
|
|
}
|
2023-02-23 17:14:47 -05:00
|
|
|
|
|
|
|
$cacheCategory = $this->localCacheCategory($key);
|
|
|
|
if (isset($this->localCache[$cacheCategory])) {
|
|
|
|
unset($this->localCache[$cacheCategory][$key]);
|
|
|
|
}
|
2015-08-30 10:31:16 -04:00
|
|
|
}
|
|
|
|
|
2017-01-15 11:27:24 -05:00
|
|
|
/**
|
|
|
|
* Delete settings for a given user id.
|
|
|
|
*/
|
2023-02-23 17:14:47 -05:00
|
|
|
public function deleteUserSettings(string $userId): void
|
2017-01-15 11:27:24 -05:00
|
|
|
{
|
2023-02-23 17:14:47 -05:00
|
|
|
Setting::query()
|
2021-01-30 19:23:15 -05:00
|
|
|
->where('setting_key', 'like', $this->userKey($userId) . '%')
|
|
|
|
->delete();
|
2017-01-15 11:27:24 -05:00
|
|
|
}
|
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
/**
|
|
|
|
* Gets a setting model from the database for the given key.
|
|
|
|
*/
|
2021-01-30 19:23:15 -05:00
|
|
|
protected function getSettingObjectByKey(string $key): ?Setting
|
2015-08-31 15:11:44 -04:00
|
|
|
{
|
2023-02-23 17:14:47 -05:00
|
|
|
return Setting::query()
|
|
|
|
->where('setting_key', '=', $key)
|
|
|
|
->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Empty the local setting value cache used by this service.
|
|
|
|
*/
|
|
|
|
public function flushCache(): void
|
|
|
|
{
|
|
|
|
$this->localCache = [];
|
2015-08-30 10:31:16 -04:00
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|