| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Settings; | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  | use BookStack\Auth\User; | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							| 
									
										
										
										
											2019-05-08 05:56:48 +08:00
										 |  |  |  * For non-authenticated users, user settings are stored via the session instead. | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     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. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-02-08 07:12:05 +08:00
										 |  |  |     public function get(string $key, $default = null) | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if (isset($this->localCache[$key])) { | 
					
						
							|  |  |  |             return $this->localCache[$key]; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-02-06 02:57:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         $value = $this->getValueFromStore($key) ?? $default; | 
					
						
							| 
									
										
										
										
											2017-02-06 02:57:57 +08:00
										 |  |  |         $formatted = $this->formatValue($value, $default); | 
					
						
							|  |  |  |         $this->localCache[$key] = $formatted; | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-06 02:57:57 +08:00
										 |  |  |         return $formatted; | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-08 02:33:32 +08:00
										 |  |  |         if ($user->isDefault()) { | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     /** | 
					
						
							|  |  |  |      * 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. | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |      * Returns null if nothing is found. | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     protected function getValueFromStore(string $key) | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +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; | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if ($settingObject->type === 'array') { | 
					
						
							|  |  |  |                 $value = json_decode($value, true) ?? []; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |             $this->cache->forever($cacheKey, $value); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |             return $value; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 00:42:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         return null; | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-14 06:22:30 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Clear an item from the cache completely. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     protected function clearFromCache(string $key) | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $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
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * Format a settings value. | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     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; | 
					
						
							| 
									
										
										
										
											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
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     public function put(string $key, $value): bool | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         $setting = $this->setting->newQuery()->firstOrNew([ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'setting_key' => $key, | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         $setting->type = 'string'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (is_array($value)) { | 
					
						
							|  |  |  |             $setting->type = 'array'; | 
					
						
							|  |  |  |             $value = $this->formatArrayValue($value); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |         $setting->value = $value; | 
					
						
							|  |  |  |         $setting->save(); | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         $this->clearFromCache($key); | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-08 02:33:32 +08:00
										 |  |  |         if ($user->isDefault()) { | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function putForCurrentUser(string $key, string $value) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         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(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-06 22:26:31 +08:00
										 |  |  |         $this->clearFromCache($key); | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Delete settings for a given user id. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |     public function deleteUserSettings(string $userId) | 
					
						
							| 
									
										
										
										
											2017-01-16 00:27:24 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         return $this->setting->newQuery() | 
					
						
							|  |  |  |             ->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
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-01-31 08:23:15 +08:00
										 |  |  |         return $this->setting->newQuery() | 
					
						
							|  |  |  |             ->where('setting_key', '=', $key)->first(); | 
					
						
							| 
									
										
										
										
											2015-08-30 22:31:16 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  | } |