]>
Commit | Line | Data |
---|---|---|
1 | <?php | |
2 | use Shaarli\Config\ConfigJson; | |
3 | use Shaarli\Config\ConfigPhp; | |
4 | use Shaarli\Config\ConfigManager; | |
5 | ||
6 | /** | |
7 | * Class Updater. | |
8 | * Used to update stuff when a new Shaarli's version is reached. | |
9 | * Update methods are ran only once, and the stored in a JSON file. | |
10 | */ | |
11 | class Updater | |
12 | { | |
13 | /** | |
14 | * @var array Updates which are already done. | |
15 | */ | |
16 | protected $doneUpdates; | |
17 | ||
18 | /** | |
19 | * @var LinkDB instance. | |
20 | */ | |
21 | protected $linkDB; | |
22 | ||
23 | /** | |
24 | * @var ConfigManager $conf Configuration Manager instance. | |
25 | */ | |
26 | protected $conf; | |
27 | ||
28 | /** | |
29 | * @var bool True if the user is logged in, false otherwise. | |
30 | */ | |
31 | protected $isLoggedIn; | |
32 | ||
33 | /** | |
34 | * @var ReflectionMethod[] List of current class methods. | |
35 | */ | |
36 | protected $methods; | |
37 | ||
38 | /** | |
39 | * Object constructor. | |
40 | * | |
41 | * @param array $doneUpdates Updates which are already done. | |
42 | * @param LinkDB $linkDB LinkDB instance. | |
43 | * @param ConfigManager $conf Configuration Manager instance. | |
44 | * @param boolean $isLoggedIn True if the user is logged in. | |
45 | */ | |
46 | public function __construct($doneUpdates, $linkDB, $conf, $isLoggedIn) | |
47 | { | |
48 | $this->doneUpdates = $doneUpdates; | |
49 | $this->linkDB = $linkDB; | |
50 | $this->conf = $conf; | |
51 | $this->isLoggedIn = $isLoggedIn; | |
52 | ||
53 | // Retrieve all update methods. | |
54 | $class = new ReflectionClass($this); | |
55 | $this->methods = $class->getMethods(); | |
56 | } | |
57 | ||
58 | /** | |
59 | * Run all new updates. | |
60 | * Update methods have to start with 'updateMethod' and return true (on success). | |
61 | * | |
62 | * @return array An array containing ran updates. | |
63 | * | |
64 | * @throws UpdaterException If something went wrong. | |
65 | */ | |
66 | public function update() | |
67 | { | |
68 | $updatesRan = array(); | |
69 | ||
70 | // If the user isn't logged in, exit without updating. | |
71 | if ($this->isLoggedIn !== true) { | |
72 | return $updatesRan; | |
73 | } | |
74 | ||
75 | if ($this->methods === null) { | |
76 | throw new UpdaterException(t('Couldn\'t retrieve Updater class methods.')); | |
77 | } | |
78 | ||
79 | foreach ($this->methods as $method) { | |
80 | // Not an update method or already done, pass. | |
81 | if (! startsWith($method->getName(), 'updateMethod') | |
82 | || in_array($method->getName(), $this->doneUpdates) | |
83 | ) { | |
84 | continue; | |
85 | } | |
86 | ||
87 | try { | |
88 | $method->setAccessible(true); | |
89 | $res = $method->invoke($this); | |
90 | // Update method must return true to be considered processed. | |
91 | if ($res === true) { | |
92 | $updatesRan[] = $method->getName(); | |
93 | } | |
94 | } catch (Exception $e) { | |
95 | throw new UpdaterException($method, $e); | |
96 | } | |
97 | } | |
98 | ||
99 | $this->doneUpdates = array_merge($this->doneUpdates, $updatesRan); | |
100 | ||
101 | return $updatesRan; | |
102 | } | |
103 | ||
104 | /** | |
105 | * @return array Updates methods already processed. | |
106 | */ | |
107 | public function getDoneUpdates() | |
108 | { | |
109 | return $this->doneUpdates; | |
110 | } | |
111 | ||
112 | /** | |
113 | * Move deprecated options.php to config.php. | |
114 | * | |
115 | * Milestone 0.9 (old versioning) - shaarli/Shaarli#41: | |
116 | * options.php is not supported anymore. | |
117 | */ | |
118 | public function updateMethodMergeDeprecatedConfigFile() | |
119 | { | |
120 | if (is_file($this->conf->get('resource.data_dir') . '/options.php')) { | |
121 | include $this->conf->get('resource.data_dir') . '/options.php'; | |
122 | ||
123 | // Load GLOBALS into config | |
124 | $allowedKeys = array_merge(ConfigPhp::$ROOT_KEYS); | |
125 | $allowedKeys[] = 'config'; | |
126 | foreach ($GLOBALS as $key => $value) { | |
127 | if (in_array($key, $allowedKeys)) { | |
128 | $this->conf->set($key, $value); | |
129 | } | |
130 | } | |
131 | $this->conf->write($this->isLoggedIn); | |
132 | unlink($this->conf->get('resource.data_dir').'/options.php'); | |
133 | } | |
134 | ||
135 | return true; | |
136 | } | |
137 | ||
138 | /** | |
139 | * Move old configuration in PHP to the new config system in JSON format. | |
140 | * | |
141 | * Will rename 'config.php' into 'config.save.php' and create 'config.json.php'. | |
142 | * It will also convert legacy setting keys to the new ones. | |
143 | */ | |
144 | public function updateMethodConfigToJson() | |
145 | { | |
146 | // JSON config already exists, nothing to do. | |
147 | if ($this->conf->getConfigIO() instanceof ConfigJson) { | |
148 | return true; | |
149 | } | |
150 | ||
151 | $configPhp = new ConfigPhp(); | |
152 | $configJson = new ConfigJson(); | |
153 | $oldConfig = $configPhp->read($this->conf->getConfigFile() . '.php'); | |
154 | rename($this->conf->getConfigFileExt(), $this->conf->getConfigFile() . '.save.php'); | |
155 | $this->conf->setConfigIO($configJson); | |
156 | $this->conf->reload(); | |
157 | ||
158 | $legacyMap = array_flip(ConfigPhp::$LEGACY_KEYS_MAPPING); | |
159 | foreach (ConfigPhp::$ROOT_KEYS as $key) { | |
160 | $this->conf->set($legacyMap[$key], $oldConfig[$key]); | |
161 | } | |
162 | ||
163 | // Set sub config keys (config and plugins) | |
164 | $subConfig = array('config', 'plugins'); | |
165 | foreach ($subConfig as $sub) { | |
166 | foreach ($oldConfig[$sub] as $key => $value) { | |
167 | if (isset($legacyMap[$sub .'.'. $key])) { | |
168 | $configKey = $legacyMap[$sub .'.'. $key]; | |
169 | } else { | |
170 | $configKey = $sub .'.'. $key; | |
171 | } | |
172 | $this->conf->set($configKey, $value); | |
173 | } | |
174 | } | |
175 | ||
176 | try{ | |
177 | $this->conf->write($this->isLoggedIn); | |
178 | return true; | |
179 | } catch (IOException $e) { | |
180 | error_log($e->getMessage()); | |
181 | return false; | |
182 | } | |
183 | } | |
184 | ||
185 | /** | |
186 | * Escape settings which have been manually escaped in every request in previous versions: | |
187 | * - general.title | |
188 | * - general.header_link | |
189 | * - redirector.url | |
190 | * | |
191 | * @return bool true if the update is successful, false otherwise. | |
192 | */ | |
193 | public function updateMethodEscapeUnescapedConfig() | |
194 | { | |
195 | try { | |
196 | $this->conf->set('general.title', escape($this->conf->get('general.title'))); | |
197 | $this->conf->set('general.header_link', escape($this->conf->get('general.header_link'))); | |
198 | $this->conf->set('redirector.url', escape($this->conf->get('redirector.url'))); | |
199 | $this->conf->write($this->isLoggedIn); | |
200 | } catch (Exception $e) { | |
201 | error_log($e->getMessage()); | |
202 | return false; | |
203 | } | |
204 | return true; | |
205 | } | |
206 | ||
207 | /** | |
208 | * Update the database to use the new ID system, which replaces linkdate primary keys. | |
209 | * Also, creation and update dates are now DateTime objects (done by LinkDB). | |
210 | * | |
211 | * Since this update is very sensitve (changing the whole database), the datastore will be | |
212 | * automatically backed up into the file datastore.<datetime>.php. | |
213 | * | |
214 | * LinkDB also adds the field 'shorturl' with the precedent format (linkdate smallhash), | |
215 | * which will be saved by this method. | |
216 | * | |
217 | * @return bool true if the update is successful, false otherwise. | |
218 | */ | |
219 | public function updateMethodDatastoreIds() | |
220 | { | |
221 | // up to date database | |
222 | if (isset($this->linkDB[0])) { | |
223 | return true; | |
224 | } | |
225 | ||
226 | $save = $this->conf->get('resource.data_dir') .'/datastore.'. date('YmdHis') .'.php'; | |
227 | copy($this->conf->get('resource.datastore'), $save); | |
228 | ||
229 | $links = array(); | |
230 | foreach ($this->linkDB as $offset => $value) { | |
231 | $links[] = $value; | |
232 | unset($this->linkDB[$offset]); | |
233 | } | |
234 | $links = array_reverse($links); | |
235 | $cpt = 0; | |
236 | foreach ($links as $l) { | |
237 | unset($l['linkdate']); | |
238 | $l['id'] = $cpt; | |
239 | $this->linkDB[$cpt++] = $l; | |
240 | } | |
241 | ||
242 | $this->linkDB->save($this->conf->get('resource.page_cache')); | |
243 | $this->linkDB->reorder(); | |
244 | ||
245 | return true; | |
246 | } | |
247 | ||
248 | /** | |
249 | * Rename tags starting with a '-' to work with tag exclusion search. | |
250 | */ | |
251 | public function updateMethodRenameDashTags() | |
252 | { | |
253 | $linklist = $this->linkDB->filterSearch(); | |
254 | foreach ($linklist as $key => $link) { | |
255 | $link['tags'] = preg_replace('/(^| )\-/', '$1', $link['tags']); | |
256 | $link['tags'] = implode(' ', array_unique(LinkFilter::tagsStrToArray($link['tags'], true))); | |
257 | $this->linkDB[$key] = $link; | |
258 | } | |
259 | $this->linkDB->save($this->conf->get('resource.page_cache')); | |
260 | return true; | |
261 | } | |
262 | ||
263 | /** | |
264 | * Initialize API settings: | |
265 | * - api.enabled: true | |
266 | * - api.secret: generated secret | |
267 | */ | |
268 | public function updateMethodApiSettings() | |
269 | { | |
270 | if ($this->conf->exists('api.secret')) { | |
271 | return true; | |
272 | } | |
273 | ||
274 | $this->conf->set('api.enabled', true); | |
275 | $this->conf->set( | |
276 | 'api.secret', | |
277 | generate_api_secret( | |
278 | $this->conf->get('credentials.login'), | |
279 | $this->conf->get('credentials.salt') | |
280 | ) | |
281 | ); | |
282 | $this->conf->write($this->isLoggedIn); | |
283 | return true; | |
284 | } | |
285 | ||
286 | /** | |
287 | * New setting: theme name. If the default theme is used, nothing to do. | |
288 | * | |
289 | * If the user uses a custom theme, raintpl_tpl dir is updated to the parent directory, | |
290 | * and the current theme is set as default in the theme setting. | |
291 | * | |
292 | * @return bool true if the update is successful, false otherwise. | |
293 | */ | |
294 | public function updateMethodDefaultTheme() | |
295 | { | |
296 | // raintpl_tpl isn't the root template directory anymore. | |
297 | // We run the update only if this folder still contains the template files. | |
298 | $tplDir = $this->conf->get('resource.raintpl_tpl'); | |
299 | $tplFile = $tplDir . '/linklist.html'; | |
300 | if (! file_exists($tplFile)) { | |
301 | return true; | |
302 | } | |
303 | ||
304 | $parent = dirname($tplDir); | |
305 | $this->conf->set('resource.raintpl_tpl', $parent); | |
306 | $this->conf->set('resource.theme', trim(str_replace($parent, '', $tplDir), '/')); | |
307 | $this->conf->write($this->isLoggedIn); | |
308 | ||
309 | // Dependency injection gore | |
310 | RainTPL::$tpl_dir = $tplDir; | |
311 | ||
312 | return true; | |
313 | } | |
314 | ||
315 | /** | |
316 | * Move the file to inc/user.css to data/user.css. | |
317 | * | |
318 | * Note: Due to hardcoded paths, it's not unit testable. But one line of code should be fine. | |
319 | * | |
320 | * @return bool true if the update is successful, false otherwise. | |
321 | */ | |
322 | public function updateMethodMoveUserCss() | |
323 | { | |
324 | if (! is_file('inc/user.css')) { | |
325 | return true; | |
326 | } | |
327 | ||
328 | return rename('inc/user.css', 'data/user.css'); | |
329 | } | |
330 | ||
331 | /** | |
332 | * * `markdown_escape` is a new setting, set to true as default. | |
333 | * | |
334 | * If the markdown plugin was already enabled, escaping is disabled to avoid | |
335 | * breaking existing entries. | |
336 | */ | |
337 | public function updateMethodEscapeMarkdown() | |
338 | { | |
339 | if ($this->conf->exists('security.markdown_escape')) { | |
340 | return true; | |
341 | } | |
342 | ||
343 | if (in_array('markdown', $this->conf->get('general.enabled_plugins'))) { | |
344 | $this->conf->set('security.markdown_escape', false); | |
345 | } else { | |
346 | $this->conf->set('security.markdown_escape', true); | |
347 | } | |
348 | $this->conf->write($this->isLoggedIn); | |
349 | ||
350 | return true; | |
351 | } | |
352 | ||
353 | /** | |
354 | * Add 'http://' to Piwik URL the setting is set. | |
355 | * | |
356 | * @return bool true if the update is successful, false otherwise. | |
357 | */ | |
358 | public function updateMethodPiwikUrl() | |
359 | { | |
360 | if (! $this->conf->exists('plugins.PIWIK_URL') || startsWith($this->conf->get('plugins.PIWIK_URL'), 'http')) { | |
361 | return true; | |
362 | } | |
363 | ||
364 | $this->conf->set('plugins.PIWIK_URL', 'http://'. $this->conf->get('plugins.PIWIK_URL')); | |
365 | $this->conf->write($this->isLoggedIn); | |
366 | ||
367 | return true; | |
368 | } | |
369 | ||
370 | /** | |
371 | * Use ATOM feed as default. | |
372 | */ | |
373 | public function updateMethodAtomDefault() | |
374 | { | |
375 | if (!$this->conf->exists('feed.show_atom') || $this->conf->get('feed.show_atom') === true) { | |
376 | return true; | |
377 | } | |
378 | ||
379 | $this->conf->set('feed.show_atom', true); | |
380 | $this->conf->write($this->isLoggedIn); | |
381 | ||
382 | return true; | |
383 | } | |
384 | ||
385 | /** | |
386 | * Update updates.check_updates_branch setting. | |
387 | * | |
388 | * If the current major version digit matches the latest branch | |
389 | * major version digit, we set the branch to `latest`, | |
390 | * otherwise we'll check updates on the `stable` branch. | |
391 | * | |
392 | * No update required for the dev version. | |
393 | * | |
394 | * Note: due to hardcoded URL and lack of dependency injection, this is not unit testable. | |
395 | * | |
396 | * FIXME! This needs to be removed when we switch to first digit major version | |
397 | * instead of the second one since the versionning process will change. | |
398 | */ | |
399 | public function updateMethodCheckUpdateRemoteBranch() | |
400 | { | |
401 | if (SHAARLI_VERSION === 'dev' || $this->conf->get('updates.check_updates_branch') === 'latest') { | |
402 | return true; | |
403 | } | |
404 | ||
405 | // Get latest branch major version digit | |
406 | $latestVersion = ApplicationUtils::getLatestGitVersionCode( | |
407 | 'https://raw.githubusercontent.com/shaarli/Shaarli/latest/shaarli_version.php', | |
408 | 5 | |
409 | ); | |
410 | if (preg_match('/(\d+)\.\d+$/', $latestVersion, $matches) === false) { | |
411 | return false; | |
412 | } | |
413 | $latestMajor = $matches[1]; | |
414 | ||
415 | // Get current major version digit | |
416 | preg_match('/(\d+)\.\d+$/', SHAARLI_VERSION, $matches); | |
417 | $currentMajor = $matches[1]; | |
418 | ||
419 | if ($currentMajor === $latestMajor) { | |
420 | $branch = 'latest'; | |
421 | } else { | |
422 | $branch = 'stable'; | |
423 | } | |
424 | $this->conf->set('updates.check_updates_branch', $branch); | |
425 | $this->conf->write($this->isLoggedIn); | |
426 | return true; | |
427 | } | |
428 | ||
429 | /** | |
430 | * Reset history store file due to date format change. | |
431 | */ | |
432 | public function updateMethodResetHistoryFile() | |
433 | { | |
434 | if (is_file($this->conf->get('resource.history'))) { | |
435 | unlink($this->conf->get('resource.history')); | |
436 | } | |
437 | return true; | |
438 | } | |
439 | ||
440 | /** | |
441 | * Save the datastore -> the link order is now applied when links are saved. | |
442 | */ | |
443 | public function updateMethodReorderDatastore() | |
444 | { | |
445 | $this->linkDB->save($this->conf->get('resource.page_cache')); | |
446 | return true; | |
447 | } | |
448 | ||
449 | /** | |
450 | * Change privateonly session key to visibility. | |
451 | */ | |
452 | public function updateMethodVisibilitySession() | |
453 | { | |
454 | if (isset($_SESSION['privateonly'])) { | |
455 | unset($_SESSION['privateonly']); | |
456 | $_SESSION['visibility'] = 'private'; | |
457 | } | |
458 | return true; | |
459 | } | |
460 | } | |
461 | ||
462 | /** | |
463 | * Class UpdaterException. | |
464 | */ | |
465 | class UpdaterException extends Exception | |
466 | { | |
467 | /** | |
468 | * @var string Method where the error occurred. | |
469 | */ | |
470 | protected $method; | |
471 | ||
472 | /** | |
473 | * @var Exception The parent exception. | |
474 | */ | |
475 | protected $previous; | |
476 | ||
477 | /** | |
478 | * Constructor. | |
479 | * | |
480 | * @param string $message Force the error message if set. | |
481 | * @param string $method Method where the error occurred. | |
482 | * @param Exception|bool $previous Parent exception. | |
483 | */ | |
484 | public function __construct($message = '', $method = '', $previous = false) | |
485 | { | |
486 | $this->method = $method; | |
487 | $this->previous = $previous; | |
488 | $this->message = $this->buildMessage($message); | |
489 | } | |
490 | ||
491 | /** | |
492 | * Build the exception error message. | |
493 | * | |
494 | * @param string $message Optional given error message. | |
495 | * | |
496 | * @return string The built error message. | |
497 | */ | |
498 | private function buildMessage($message) | |
499 | { | |
500 | $out = ''; | |
501 | if (! empty($message)) { | |
502 | $out .= $message . PHP_EOL; | |
503 | } | |
504 | ||
505 | if (! empty($this->method)) { | |
506 | $out .= t('An error occurred while running the update ') . $this->method . PHP_EOL; | |
507 | } | |
508 | ||
509 | if (! empty($this->previous)) { | |
510 | $out .= ' '. $this->previous->getMessage(); | |
511 | } | |
512 | ||
513 | return $out; | |
514 | } | |
515 | } | |
516 | ||
517 | /** | |
518 | * Read the updates file, and return already done updates. | |
519 | * | |
520 | * @param string $updatesFilepath Updates file path. | |
521 | * | |
522 | * @return array Already done update methods. | |
523 | */ | |
524 | function read_updates_file($updatesFilepath) | |
525 | { | |
526 | if (! empty($updatesFilepath) && is_file($updatesFilepath)) { | |
527 | $content = file_get_contents($updatesFilepath); | |
528 | if (! empty($content)) { | |
529 | return explode(';', $content); | |
530 | } | |
531 | } | |
532 | return array(); | |
533 | } | |
534 | ||
535 | /** | |
536 | * Write updates file. | |
537 | * | |
538 | * @param string $updatesFilepath Updates file path. | |
539 | * @param array $updates Updates array to write. | |
540 | * | |
541 | * @throws Exception Couldn't write version number. | |
542 | */ | |
543 | function write_updates_file($updatesFilepath, $updates) | |
544 | { | |
545 | if (empty($updatesFilepath)) { | |
546 | throw new Exception(t('Updates file path is not set, can\'t write updates.')); | |
547 | } | |
548 | ||
549 | $res = file_put_contents($updatesFilepath, implode(';', $updates)); | |
550 | if ($res === false) { | |
551 | throw new Exception(t('Unable to write updates in '. $updatesFilepath . '.')); | |
552 | } | |
553 | } |