| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Settings; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | use BookStack\Users\Models\User; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class SettingService | 
					
						
							|  |  |  |  * The settings are a simple key-value database store. | 
					
						
							| 
									
										
										
										
											2019-05-08 05:56:48 +08:00
										 |  |  |  * For non-authenticated users, user settings are stored via the session instead. | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |  * A local array-based cache is used to for setting accesses across a request. | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | class SettingService | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-25 19:03:19 +08:00
										 |  |  |     protected array $localCache = []; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Gets a setting from the database, | 
					
						
							|  |  |  |      * If not found, Returns default, Which is false by default. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |     public function get(string $key, $default = null): mixed | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-02-08 07:12:05 +08:00
										 |  |  |         if (is_null($default)) { | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |             $default = config('setting-defaults.' . $key, false); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-03-08 05:09:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         $value = $this->getValueFromStore($key) ?? $default; | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         return $this->formatValue($value, $default); | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 05:56:48 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get a value from the session instead of the main store option. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     protected function getFromSession(string $key, $default = false) | 
					
						
							| 
									
										
										
										
											2019-05-08 05:56:48 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $value = session()->get($key, $default); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         return $this->formatValue($value, $default); | 
					
						
							| 
									
										
										
										
											2019-05-08 05:56:48 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get a user-specific setting from the database or cache. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-02-08 07:12:05 +08:00
										 |  |  |     public function getUser(User $user, string $key, $default = null) | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-02-08 07:12:05 +08:00
										 |  |  |         if (is_null($default)) { | 
					
						
							|  |  |  |             $default = config('setting-defaults.user.' . $key, false); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-16 20:18:35 +08:00
										 |  |  |         if ($user->isGuest()) { | 
					
						
							| 
									
										
										
										
											2019-05-08 05:56:48 +08:00
										 |  |  |             return $this->getFromSession($key, $default); | 
					
						
							| 
									
										
										
										
											2018-12-08 02:33:32 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |         return $this->get($this->userKey($user->id, $key), $default); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get a value for the current logged-in user. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-02-08 07:12:05 +08:00
										 |  |  |     public function getForCurrentUser(string $key, $default = null) | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-04-14 20:19:33 +08:00
										 |  |  |         return $this->getUser(user(), $key, $default); | 
					
						
							| 
									
										
										
										
											2019-04-14 20:01:51 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |      * Gets a setting value from the local cache. | 
					
						
							|  |  |  |      * Will load the local cache if not previously loaded. | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |     protected function getValueFromStore(string $key): mixed | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         $cacheCategory = $this->localCacheCategory($key); | 
					
						
							|  |  |  |         if (!isset($this->localCache[$cacheCategory])) { | 
					
						
							|  |  |  |             $this->loadToLocalCache($cacheCategory); | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         return $this->localCache[$cacheCategory][$key] ?? null; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08: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-31 08:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         $this->localCache[$cacheCategory][$key] = $value; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08: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 22:26:31 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 00:42:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         return 'app'; | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |      * For the given category, load the relevant settings from the database into the local cache. | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |     protected function loadToLocalCache(string $cacheCategory): void | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08: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-31 00:09:27 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * Format a settings value. | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |     protected function formatValue(mixed $value, mixed $default): mixed | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |         } elseif ($value === 'false') { | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |             $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; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         return $value; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Checks if a setting exists. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     public function has(string $key): bool | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $setting = $this->getSettingObjectByKey($key); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         return $setting !== null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Add a setting to the database. | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |      * Values can be an array or a string. | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |     public function put(string $key, mixed $value): bool | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         $setting = Setting::query()->firstOrNew([ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'setting_key' => $key, | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         $setting->type = 'string'; | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         $setting->value = $value; | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (is_array($value)) { | 
					
						
							|  |  |  |             $setting->type = 'array'; | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |             $setting->value = $this->formatArrayValue($value); | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         $setting->save(); | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         $this->putValueIntoLocalCache($key, $value); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08: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-08 06:24:05 +08:00
										 |  |  |         $values = collect($value)->values()->filter(function (array $item) { | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |             return count(array_filter($item)) > 0; | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         return json_encode($values); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Put a user-specific setting into the database. | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08:00
										 |  |  |      * Can only take string value types since this may use | 
					
						
							|  |  |  |      * the session which is less flexible to data types. | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     public function putUser(User $user, string $key, string $value): bool | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-09-16 20:18:35 +08:00
										 |  |  |         if ($user->isGuest()) { | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |             session()->put($key, $value); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2018-12-08 02:33:32 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |         return $this->put($this->userKey($user->id, $key), $value); | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08: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-24 06:14:47 +08:00
										 |  |  |     public function putForCurrentUser(string $key, string $value): bool | 
					
						
							| 
									
										
										
										
											2022-11-10 03:30:08 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->putUser(user(), $key, $value); | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Convert a setting key into a user-specific key. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     protected function userKey(string $userId, string $key = ''): string | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return 'user:' . $userId . ':' . $key; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Removes a setting from the database. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     public function remove(string $key): void | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $setting = $this->getSettingObjectByKey($key); | 
					
						
							| 
									
										
										
										
											2015-09-01 03:11:44 +08:00
										 |  |  |         if ($setting) { | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |             $setting->delete(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $cacheCategory = $this->localCacheCategory($key); | 
					
						
							|  |  |  |         if (isset($this->localCache[$cacheCategory])) { | 
					
						
							|  |  |  |             unset($this->localCache[$cacheCategory][$key]); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Delete settings for a given user id. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |     public function deleteUserSettings(string $userId): void | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08:00
										 |  |  |         Setting::query() | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |             ->where('setting_key', 'like', $this->userKey($userId) . '%') | 
					
						
							|  |  |  |             ->delete(); | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Gets a setting model from the database for the given key. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     protected function getSettingObjectByKey(string $key): ?Setting | 
					
						
							| 
									
										
										
										
											2015-09-01 03:11:44 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-02-24 06:14:47 +08: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 22:31:16 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  | } |