| 
									
										
										
										
											2018-09-25 19:30:50 +08:00
										 |  |  | <?php namespace BookStack\Settings; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  | use Illuminate\Contracts\Cache\Repository as Cache; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class SettingService | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The settings are a simple key-value database store. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2015-09-11 02:31:09 +08:00
										 |  |  |  * @package BookStack\Services | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | class SettingService | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected $setting; | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     protected $cache; | 
					
						
							| 
									
										
										
										
											2017-02-06 02:57:57 +08:00
										 |  |  |     protected $localCache = []; | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     protected $cachePrefix = 'setting-'; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * SettingService constructor. | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |      * @param Setting $setting | 
					
						
							|  |  |  |      * @param Cache   $cache | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     public function __construct(Setting $setting, Cache $cache) | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $this->setting = $setting; | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         $this->cache = $cache; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08: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-29 00:58:52 +08:00
										 |  |  |         if ($default === false) { | 
					
						
							|  |  |  |             $default = config('setting-defaults.' . $key, false); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (isset($this->localCache[$key])) { | 
					
						
							|  |  |  |             return $this->localCache[$key]; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-02-06 02:57:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |         $value = $this->getValueFromStore($key, $default); | 
					
						
							| 
									
										
										
										
											2017-02-06 02:57:57 +08:00
										 |  |  |         $formatted = $this->formatValue($value, $default); | 
					
						
							|  |  |  |         $this->localCache[$key] = $formatted; | 
					
						
							|  |  |  |         return $formatted; | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get a user-specific setting from the database or cache. | 
					
						
							| 
									
										
										
										
											2018-09-25 19:30:50 +08:00
										 |  |  |      * @param \BookStack\Auth\User $user | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |      * @param $key | 
					
						
							|  |  |  |      * @param bool $default | 
					
						
							|  |  |  |      * @return bool|string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getUser($user, $key, $default = false) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-08 02:33:32 +08:00
										 |  |  |         if ($user->isDefault()) { | 
					
						
							|  |  |  |             return session()->get($key, $default); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |         return $this->get($this->userKey($user->id, $key), $default); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Gets a setting value from the cache or database. | 
					
						
							| 
									
										
										
										
											2016-03-30 02:26:13 +08:00
										 |  |  |      * Looks at the system defaults if not cached or in database. | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |      * @param $key | 
					
						
							|  |  |  |      * @param $default | 
					
						
							|  |  |  |      * @return mixed | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function getValueFromStore($key, $default) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-03-30 02:26:13 +08:00
										 |  |  |         // Check for an overriding value
 | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |         $overrideValue = $this->getOverrideValue($key); | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if ($overrideValue !== null) { | 
					
						
							|  |  |  |             return $overrideValue; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 02:26:13 +08:00
										 |  |  |         // Check the cache
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         $cacheKey = $this->cachePrefix . $key; | 
					
						
							| 
									
										
										
										
											2017-02-06 02:57:57 +08:00
										 |  |  |         $cacheVal = $this->cache->get($cacheKey, null); | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if ($cacheVal !== null) { | 
					
						
							|  |  |  |             return $cacheVal; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 02:26:13 +08:00
										 |  |  |         // Check the database
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         $settingObject = $this->getSettingObjectByKey($key); | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |         if ($settingObject !== null) { | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |             $value = $settingObject->value; | 
					
						
							|  |  |  |             $this->cache->forever($cacheKey, $value); | 
					
						
							|  |  |  |             return $value; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 00:42:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         return $default; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Clear an item from the cache completely. | 
					
						
							|  |  |  |      * @param $key | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     protected function clearFromCache($key) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $cacheKey = $this->cachePrefix . $key; | 
					
						
							|  |  |  |         $this->cache->forget($cacheKey); | 
					
						
							| 
									
										
										
										
											2017-12-31 00:09:27 +08:00
										 |  |  |         if (isset($this->localCache[$key])) { | 
					
						
							|  |  |  |             unset($this->localCache[$key]); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Format a settings value | 
					
						
							|  |  |  |      * @param $value | 
					
						
							|  |  |  |      * @param $default | 
					
						
							|  |  |  |      * @return mixed | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function formatValue($value, $default) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-09-06 00:42:05 +08:00
										 |  |  |         // Change string booleans to actual booleans
 | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if ($value === 'true') { | 
					
						
							|  |  |  |             $value = true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($value === 'false') { | 
					
						
							|  |  |  |             $value = false; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 00:42:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Set to default if empty
 | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if ($value === '') { | 
					
						
							|  |  |  |             $value = $default; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         return $value; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Checks if a setting exists. | 
					
						
							|  |  |  |      * @param $key | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function has($key) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $setting = $this->getSettingObjectByKey($key); | 
					
						
							|  |  |  |         return $setting !== null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08: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 22:31:16 +08: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 22:26:31 +08:00
										 |  |  |         $this->clearFromCache($key); | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Put a user-specific setting into the database. | 
					
						
							| 
									
										
										
										
											2018-09-25 19:30:50 +08:00
										 |  |  |      * @param \BookStack\Auth\User $user | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |      * @param $key | 
					
						
							|  |  |  |      * @param $value | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function putUser($user, $key, $value) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-08 02:33:32 +08:00
										 |  |  |         if ($user->isDefault()) { | 
					
						
							|  |  |  |             return session()->put($key, $value); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08: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 22:31:16 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Removes a setting from the database. | 
					
						
							|  |  |  |      * @param $key | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function remove($key) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $setting = $this->getSettingObjectByKey($key); | 
					
						
							| 
									
										
										
										
											2015-09-01 03:11:44 +08:00
										 |  |  |         if ($setting) { | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |             $setting->delete(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         $this->clearFromCache($key); | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08: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 22:31:16 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Gets a setting model from the database for the given key. | 
					
						
							|  |  |  |      * @param $key | 
					
						
							|  |  |  |      * @return mixed | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |     protected function getSettingObjectByKey($key) | 
					
						
							| 
									
										
										
										
											2015-09-01 03:11:44 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         return $this->setting->where('setting_key', '=', $key)->first(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Returns an override value for a setting based on certain app conditions. | 
					
						
							|  |  |  |      * Used where certain configuration options overrule others. | 
					
						
							|  |  |  |      * Returns null if no override value is available. | 
					
						
							|  |  |  |      * @param $key | 
					
						
							|  |  |  |      * @return bool|null | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function getOverrideValue($key) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if ($key === 'registration-enabled' && config('auth.method') === 'ldap') { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  | } |