]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/config/ConfigManager.php
PluginManager no longer uses singleton pattern
[github/shaarli/Shaarli.git] / application / config / ConfigManager.php
CommitLineData
59404d79
A
1<?php
2
3// FIXME! Namespaces...
4require_once 'ConfigIO.php';
b74b96bf 5require_once 'ConfigJson.php';
278d9ee2 6require_once 'ConfigPhp.php';
59404d79
A
7
8/**
9 * Class ConfigManager
10 *
278d9ee2 11 * Manages all Shaarli's settings.
7f179985
A
12 * See the documentation for more information on settings:
13 * - doc/Shaarli-configuration.html
14 * - https://github.com/shaarli/Shaarli/wiki/Shaarli-configuration
59404d79
A
15 */
16class ConfigManager
17{
18 /**
278d9ee2 19 * @var string Flag telling a setting is not found.
59404d79 20 */
278d9ee2 21 protected static $NOT_FOUND = 'NOT_FOUND';
59404d79
A
22
23 /**
24 * @var string Config folder.
25 */
278d9ee2 26 protected $configFile;
59404d79
A
27
28 /**
29 * @var array Loaded config array.
30 */
31 protected $loadedConfig;
32
33 /**
34 * @var ConfigIO implementation instance.
35 */
36 protected $configIO;
37
38 /**
278d9ee2 39 * Constructor.
59404d79 40 */
278d9ee2 41 public function __construct($configFile = 'data/config')
59404d79 42 {
278d9ee2
A
43 $this->configFile = $configFile;
44 $this->initialize();
59404d79
A
45 }
46
684e662a
A
47 /**
48 * Reset the ConfigManager instance.
49 */
278d9ee2 50 public function reset()
684e662a 51 {
278d9ee2 52 $this->initialize();
684e662a
A
53 }
54
59404d79
A
55 /**
56 * Rebuild the loaded config array from config files.
57 */
58 public function reload()
59 {
684e662a 60 $this->load();
59404d79
A
61 }
62
63 /**
684e662a 64 * Initialize the ConfigIO and loaded the conf.
59404d79
A
65 */
66 protected function initialize()
67 {
278d9ee2 68 if (file_exists($this->configFile . '.php')) {
59404d79 69 $this->configIO = new ConfigPhp();
278d9ee2
A
70 } else {
71 $this->configIO = new ConfigJson();
b74b96bf 72 }
684e662a
A
73 $this->load();
74 }
75
76 /**
77 * Load configuration in the ConfigurationManager.
78 */
79 protected function load()
80 {
278d9ee2 81 $this->loadedConfig = $this->configIO->read($this->getConfigFileExt());
59404d79
A
82 $this->setDefaultValues();
83 }
84
85 /**
86 * Get a setting.
87 *
88 * Supports nested settings with dot separated keys.
89 * Eg. 'config.stuff.option' will find $conf[config][stuff][option],
90 * or in JSON:
91 * { "config": { "stuff": {"option": "mysetting" } } } }
92 *
93 * @param string $setting Asked setting, keys separated with dots.
94 * @param string $default Default value if not found.
95 *
96 * @return mixed Found setting, or the default value.
97 */
98 public function get($setting, $default = '')
99 {
da10377b
A
100 // During the ConfigIO transition, map legacy settings to the new ones.
101 if ($this->configIO instanceof ConfigPhp && isset(ConfigPhp::$LEGACY_KEYS_MAPPING[$setting])) {
102 $setting = ConfigPhp::$LEGACY_KEYS_MAPPING[$setting];
103 }
104
59404d79
A
105 $settings = explode('.', $setting);
106 $value = self::getConfig($settings, $this->loadedConfig);
107 if ($value === self::$NOT_FOUND) {
108 return $default;
109 }
110 return $value;
111 }
112
113 /**
114 * Set a setting, and eventually write it.
115 *
116 * Supports nested settings with dot separated keys.
117 *
118 * @param string $setting Asked setting, keys separated with dots.
119 * @param string $value Value to set.
120 * @param bool $write Write the new setting in the config file, default false.
121 * @param bool $isLoggedIn User login state, default false.
684e662a
A
122 *
123 * @throws Exception Invalid
59404d79
A
124 */
125 public function set($setting, $value, $write = false, $isLoggedIn = false)
126 {
684e662a
A
127 if (empty($setting) || ! is_string($setting)) {
128 throw new Exception('Invalid setting key parameter. String expected, got: '. gettype($setting));
129 }
130
da10377b
A
131 // During the ConfigIO transition, map legacy settings to the new ones.
132 if ($this->configIO instanceof ConfigPhp && isset(ConfigPhp::$LEGACY_KEYS_MAPPING[$setting])) {
133 $setting = ConfigPhp::$LEGACY_KEYS_MAPPING[$setting];
134 }
135
59404d79
A
136 $settings = explode('.', $setting);
137 self::setConfig($settings, $value, $this->loadedConfig);
138 if ($write) {
139 $this->write($isLoggedIn);
140 }
141 }
142
143 /**
144 * Check if a settings exists.
145 *
146 * Supports nested settings with dot separated keys.
147 *
148 * @param string $setting Asked setting, keys separated with dots.
149 *
150 * @return bool true if the setting exists, false otherwise.
151 */
152 public function exists($setting)
153 {
da10377b
A
154 // During the ConfigIO transition, map legacy settings to the new ones.
155 if ($this->configIO instanceof ConfigPhp && isset(ConfigPhp::$LEGACY_KEYS_MAPPING[$setting])) {
156 $setting = ConfigPhp::$LEGACY_KEYS_MAPPING[$setting];
157 }
158
59404d79
A
159 $settings = explode('.', $setting);
160 $value = self::getConfig($settings, $this->loadedConfig);
161 if ($value === self::$NOT_FOUND) {
162 return false;
163 }
164 return true;
165 }
166
167 /**
168 * Call the config writer.
169 *
170 * @param bool $isLoggedIn User login state.
171 *
684e662a
A
172 * @return bool True if the configuration has been successfully written, false otherwise.
173 *
59404d79
A
174 * @throws MissingFieldConfigException: a mandatory field has not been provided in $conf.
175 * @throws UnauthorizedConfigException: user is not authorize to change configuration.
176 * @throws IOException: an error occurred while writing the new config file.
177 */
178 public function write($isLoggedIn)
179 {
180 // These fields are required in configuration.
181 $mandatoryFields = array(
da10377b
A
182 'credentials.login',
183 'credentials.hash',
184 'credentials.salt',
185 'security.session_protection_disabled',
186 'general.timezone',
187 'general.title',
188 'general.header_link',
189 'general.default_private_links',
190 'extras.redirector',
59404d79
A
191 );
192
193 // Only logged in user can alter config.
278d9ee2 194 if (is_file($this->getConfigFileExt()) && !$isLoggedIn) {
59404d79
A
195 throw new UnauthorizedConfigException();
196 }
197
198 // Check that all mandatory fields are provided in $conf.
199 foreach ($mandatoryFields as $field) {
200 if (! $this->exists($field)) {
201 throw new MissingFieldConfigException($field);
202 }
203 }
204
278d9ee2 205 return $this->configIO->write($this->getConfigFileExt(), $this->loadedConfig);
59404d79
A
206 }
207
208 /**
278d9ee2 209 * Set the config file path (without extension).
59404d79 210 *
278d9ee2
A
211 * @param string $configFile File path.
212 */
213 public function setConfigFile($configFile)
214 {
215 $this->configFile = $configFile;
216 }
217
218 /**
219 * Return the configuration file path (without extension).
220 *
221 * @return string Config path.
59404d79
A
222 */
223 public function getConfigFile()
224 {
278d9ee2
A
225 return $this->configFile;
226 }
227
228 /**
229 * Get the configuration file path with its extension.
230 *
231 * @return string Config file path.
232 */
233 public function getConfigFileExt()
234 {
235 return $this->configFile . $this->configIO->getExtension();
59404d79
A
236 }
237
238 /**
239 * Recursive function which find asked setting in the loaded config.
240 *
241 * @param array $settings Ordered array which contains keys to find.
242 * @param array $conf Loaded settings, then sub-array.
243 *
244 * @return mixed Found setting or NOT_FOUND flag.
245 */
246 protected static function getConfig($settings, $conf)
247 {
248 if (!is_array($settings) || count($settings) == 0) {
249 return self::$NOT_FOUND;
250 }
251
252 $setting = array_shift($settings);
253 if (!isset($conf[$setting])) {
254 return self::$NOT_FOUND;
255 }
256
257 if (count($settings) > 0) {
258 return self::getConfig($settings, $conf[$setting]);
259 }
260 return $conf[$setting];
261 }
262
263 /**
264 * Recursive function which find asked setting in the loaded config.
265 *
266 * @param array $settings Ordered array which contains keys to find.
267 * @param mixed $value
268 * @param array $conf Loaded settings, then sub-array.
269 *
270 * @return mixed Found setting or NOT_FOUND flag.
271 */
272 protected static function setConfig($settings, $value, &$conf)
273 {
274 if (!is_array($settings) || count($settings) == 0) {
275 return self::$NOT_FOUND;
276 }
277
278 $setting = array_shift($settings);
279 if (count($settings) > 0) {
280 return self::setConfig($settings, $value, $conf[$setting]);
281 }
282 $conf[$setting] = $value;
283 }
284
285 /**
286 * Set a bunch of default values allowing Shaarli to start without a config file.
287 */
288 protected function setDefaultValues()
289 {
da10377b 290 $this->setEmpty('path.data_dir', 'data');
da10377b 291 $this->setEmpty('path.config', 'data/config.php');
da10377b 292 $this->setEmpty('path.datastore', 'data/datastore.php');
da10377b 293 $this->setEmpty('path.ban_file', 'data/ipbans.php');
da10377b 294 $this->setEmpty('path.updates', 'data/updates.txt');
da10377b 295 $this->setEmpty('path.log', 'data/log.txt');
da10377b 296 $this->setEmpty('path.update_check', 'data/lastupdatecheck.txt');
da10377b 297 $this->setEmpty('path.raintpl_tpl', 'tpl/');
7f179985 298 $this->setEmpty('path.raintpl_tmp', 'tmp/');
da10377b 299 $this->setEmpty('path.thumbnails_cache', 'cache');
da10377b 300 $this->setEmpty('path.page_cache', 'pagecache');
59404d79 301
da10377b 302 $this->setEmpty('security.ban_after', 4);
278d9ee2 303 $this->setEmpty('security.ban_duration', 1800);
7f179985 304 $this->setEmpty('security.session_protection_disabled', false);
59404d79 305
7f179985 306 $this->setEmpty('general.check_updates', false);
da10377b 307 $this->setEmpty('general.rss_permalinks', true);
da10377b 308 $this->setEmpty('general.links_per_page', 20);
da10377b 309 $this->setEmpty('general.default_private_links', false);
da10377b 310 $this->setEmpty('general.enable_thumbnails', true);
da10377b 311 $this->setEmpty('general.enable_localcache', true);
da10377b
A
312 $this->setEmpty('general.check_updates_branch', 'stable');
313 $this->setEmpty('general.check_updates_interval', 86400);
7f179985
A
314 $this->setEmpty('general.header_link', '?');
315 $this->setEmpty('general.enabled_plugins', array('qrcode'));
59404d79 316
7f179985
A
317 $this->setEmpty('extras.show_atom', false);
318 $this->setEmpty('extras.hide_public_links', false);
319 $this->setEmpty('extras.hide_timestamps', false);
320 $this->setEmpty('extras.open_shaarli', false);
da10377b
A
321 $this->setEmpty('extras.redirector', '');
322 $this->setEmpty('extras.redirector_encode_url', true);
59404d79 323
59404d79
A
324 $this->setEmpty('plugins', array());
325 }
326
327 /**
328 * Set only if the setting does not exists.
329 *
330 * @param string $key Setting key.
331 * @param mixed $value Setting value.
332 */
7f179985 333 public function setEmpty($key, $value)
59404d79
A
334 {
335 if (! $this->exists($key)) {
336 $this->set($key, $value);
337 }
338 }
684e662a
A
339
340 /**
341 * @return ConfigIO
342 */
343 public function getConfigIO()
344 {
345 return $this->configIO;
346 }
347
348 /**
349 * @param ConfigIO $configIO
350 */
351 public function setConfigIO($configIO)
352 {
353 $this->configIO = $configIO;
354 }
59404d79
A
355}
356
357/**
358 * Exception used if a mandatory field is missing in given configuration.
359 */
360class MissingFieldConfigException extends Exception
361{
362 public $field;
363
364 /**
365 * Construct exception.
366 *
367 * @param string $field field name missing.
368 */
369 public function __construct($field)
370 {
371 $this->field = $field;
372 $this->message = 'Configuration value is required for '. $this->field;
373 }
374}
375
376/**
377 * Exception used if an unauthorized attempt to edit configuration has been made.
378 */
379class UnauthorizedConfigException extends Exception
380{
381 /**
382 * Construct exception.
383 */
384 public function __construct()
385 {
386 $this->message = 'You are not authorized to alter config.';
387 }
388}