| 
									
										
										
										
											2015-09-11 02:31:09 +08:00
										 |  |  | <?php namespace BookStack\Services; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-11 02:31:09 +08:00
										 |  |  | use BookStack\Setting; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |         $value = $this->getValueFromStore($key, $default); | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         return $this->formatValue($value, $default); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 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); | 
					
						
							|  |  |  |         if ($overrideValue !== null) return $overrideValue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 02:26:13 +08:00
										 |  |  |         // Check the cache
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         $cacheKey = $this->cachePrefix . $key; | 
					
						
							|  |  |  |         if ($this->cache->has($cacheKey)) { | 
					
						
							|  |  |  |             return $this->cache->get($cacheKey); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 02:26:13 +08:00
										 |  |  |         // Check the defaults set in the app config.
 | 
					
						
							|  |  |  |         $configPrefix = 'setting-defaults.' . $key; | 
					
						
							|  |  |  |         if (config()->has($configPrefix)) { | 
					
						
							|  |  |  |             $value = config($configPrefix); | 
					
						
							|  |  |  |             $this->cache->forever($cacheKey, $value); | 
					
						
							|  |  |  |             return $value; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 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
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +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
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         if ($value === '') $value = $default; | 
					
						
							|  |  |  |         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; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 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; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 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; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 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) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($key === 'registration-enabled' && config('auth.method') === 'ldap') return false; | 
					
						
							|  |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | } |