]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/Updater.php
Merge pull request #732 from ArthurHoaro/feature/theme-manager
[github/shaarli/Shaarli.git] / application / Updater.php
CommitLineData
510377d2
A
1<?php
2
3/**
4 * Class Updater.
5 * Used to update stuff when a new Shaarli's version is reached.
6 * Update methods are ran only once, and the stored in a JSON file.
7 */
8class Updater
9{
10 /**
11 * @var array Updates which are already done.
12 */
13 protected $doneUpdates;
14
510377d2
A
15 /**
16 * @var LinkDB instance.
17 */
18 protected $linkDB;
19
278d9ee2
A
20 /**
21 * @var ConfigManager $conf Configuration Manager instance.
22 */
23 protected $conf;
24
510377d2
A
25 /**
26 * @var bool True if the user is logged in, false otherwise.
27 */
28 protected $isLoggedIn;
29
30 /**
31 * @var ReflectionMethod[] List of current class methods.
32 */
33 protected $methods;
34
35 /**
36 * Object constructor.
37 *
278d9ee2
A
38 * @param array $doneUpdates Updates which are already done.
39 * @param LinkDB $linkDB LinkDB instance.
7af9a418 40 * @param ConfigManager $conf Configuration Manager instance.
278d9ee2 41 * @param boolean $isLoggedIn True if the user is logged in.
510377d2 42 */
278d9ee2 43 public function __construct($doneUpdates, $linkDB, $conf, $isLoggedIn)
510377d2
A
44 {
45 $this->doneUpdates = $doneUpdates;
510377d2 46 $this->linkDB = $linkDB;
278d9ee2 47 $this->conf = $conf;
510377d2
A
48 $this->isLoggedIn = $isLoggedIn;
49
50 // Retrieve all update methods.
51 $class = new ReflectionClass($this);
52 $this->methods = $class->getMethods();
53 }
54
55 /**
56 * Run all new updates.
57 * Update methods have to start with 'updateMethod' and return true (on success).
58 *
59 * @return array An array containing ran updates.
60 *
61 * @throws UpdaterException If something went wrong.
62 */
63 public function update()
64 {
65 $updatesRan = array();
66
67 // If the user isn't logged in, exit without updating.
68 if ($this->isLoggedIn !== true) {
69 return $updatesRan;
70 }
71
72 if ($this->methods == null) {
73 throw new UpdaterException('Couldn\'t retrieve Updater class methods.');
74 }
75
76 foreach ($this->methods as $method) {
77 // Not an update method or already done, pass.
78 if (! startsWith($method->getName(), 'updateMethod')
79 || in_array($method->getName(), $this->doneUpdates)
80 ) {
81 continue;
82 }
83
84 try {
85 $method->setAccessible(true);
86 $res = $method->invoke($this);
87 // Update method must return true to be considered processed.
88 if ($res === true) {
89 $updatesRan[] = $method->getName();
90 }
91 } catch (Exception $e) {
92 throw new UpdaterException($method, $e);
93 }
94 }
95
96 $this->doneUpdates = array_merge($this->doneUpdates, $updatesRan);
97
98 return $updatesRan;
99 }
100
101 /**
102 * @return array Updates methods already processed.
103 */
104 public function getDoneUpdates()
105 {
106 return $this->doneUpdates;
107 }
108
109 /**
110 * Move deprecated options.php to config.php.
111 *
112 * Milestone 0.9 (old versioning) - shaarli/Shaarli#41:
113 * options.php is not supported anymore.
114 */
115 public function updateMethodMergeDeprecatedConfigFile()
116 {
894a3c4b
A
117 if (is_file($this->conf->get('resource.data_dir') . '/options.php')) {
118 include $this->conf->get('resource.data_dir') . '/options.php';
510377d2
A
119
120 // Load GLOBALS into config
684e662a
A
121 $allowedKeys = array_merge(ConfigPhp::$ROOT_KEYS);
122 $allowedKeys[] = 'config';
510377d2 123 foreach ($GLOBALS as $key => $value) {
684e662a 124 if (in_array($key, $allowedKeys)) {
278d9ee2 125 $this->conf->set($key, $value);
684e662a 126 }
510377d2 127 }
278d9ee2 128 $this->conf->write($this->isLoggedIn);
894a3c4b 129 unlink($this->conf->get('resource.data_dir').'/options.php');
510377d2
A
130 }
131
132 return true;
133 }
21979ff1
A
134
135 /**
136 * Rename tags starting with a '-' to work with tag exclusion search.
137 */
138 public function updateMethodRenameDashTags()
139 {
528a6f8a 140 $linklist = $this->linkDB->filterSearch();
1dc37f9c 141 foreach ($linklist as $key => $link) {
21979ff1
A
142 $link['tags'] = preg_replace('/(^| )\-/', '$1', $link['tags']);
143 $link['tags'] = implode(' ', array_unique(LinkFilter::tagsStrToArray($link['tags'], true)));
1dc37f9c 144 $this->linkDB[$key] = $link;
21979ff1 145 }
f21abf32 146 $this->linkDB->save($this->conf->get('resource.page_cache'));
21979ff1
A
147 return true;
148 }
b74b96bf
A
149
150 /**
151 * Move old configuration in PHP to the new config system in JSON format.
152 *
da10377b
A
153 * Will rename 'config.php' into 'config.save.php' and create 'config.json.php'.
154 * It will also convert legacy setting keys to the new ones.
b74b96bf
A
155 */
156 public function updateMethodConfigToJson()
157 {
b74b96bf 158 // JSON config already exists, nothing to do.
278d9ee2 159 if ($this->conf->getConfigIO() instanceof ConfigJson) {
b74b96bf
A
160 return true;
161 }
162
163 $configPhp = new ConfigPhp();
164 $configJson = new ConfigJson();
278d9ee2
A
165 $oldConfig = $configPhp->read($this->conf->getConfigFile() . '.php');
166 rename($this->conf->getConfigFileExt(), $this->conf->getConfigFile() . '.save.php');
167 $this->conf->setConfigIO($configJson);
168 $this->conf->reload();
b74b96bf 169
da10377b 170 $legacyMap = array_flip(ConfigPhp::$LEGACY_KEYS_MAPPING);
b74b96bf 171 foreach (ConfigPhp::$ROOT_KEYS as $key) {
278d9ee2 172 $this->conf->set($legacyMap[$key], $oldConfig[$key]);
b74b96bf
A
173 }
174
175 // Set sub config keys (config and plugins)
176 $subConfig = array('config', 'plugins');
177 foreach ($subConfig as $sub) {
178 foreach ($oldConfig[$sub] as $key => $value) {
da10377b
A
179 if (isset($legacyMap[$sub .'.'. $key])) {
180 $configKey = $legacyMap[$sub .'.'. $key];
181 } else {
182 $configKey = $sub .'.'. $key;
183 }
278d9ee2 184 $this->conf->set($configKey, $value);
b74b96bf
A
185 }
186 }
187
188 try{
278d9ee2 189 $this->conf->write($this->isLoggedIn);
b74b96bf
A
190 return true;
191 } catch (IOException $e) {
192 error_log($e->getMessage());
193 return false;
194 }
195 }
7f179985
A
196
197 /**
198 * Escape settings which have been manually escaped in every request in previous versions:
199 * - general.title
200 * - general.header_link
b9f8b837 201 * - redirector.url
7f179985
A
202 *
203 * @return bool true if the update is successful, false otherwise.
204 */
b9f8b837 205 public function updateMethodEscapeUnescapedConfig()
7f179985 206 {
7f179985 207 try {
278d9ee2
A
208 $this->conf->set('general.title', escape($this->conf->get('general.title')));
209 $this->conf->set('general.header_link', escape($this->conf->get('general.header_link')));
894a3c4b 210 $this->conf->set('redirector.url', escape($this->conf->get('redirector.url')));
278d9ee2 211 $this->conf->write($this->isLoggedIn);
7f179985
A
212 } catch (Exception $e) {
213 error_log($e->getMessage());
214 return false;
215 }
216 return true;
217 }
1dc37f9c
A
218
219 /**
220 * Update the database to use the new ID system, which replaces linkdate primary keys.
01878a75 221 * Also, creation and update dates are now DateTime objects (done by LinkDB).
1dc37f9c
A
222 *
223 * Since this update is very sensitve (changing the whole database), the datastore will be
224 * automatically backed up into the file datastore.<datetime>.php.
225 *
d592daea
A
226 * LinkDB also adds the field 'shorturl' with the precedent format (linkdate smallhash),
227 * which will be saved by this method.
228 *
1dc37f9c
A
229 * @return bool true if the update is successful, false otherwise.
230 */
231 public function updateMethodDatastoreIds()
232 {
233 // up to date database
234 if (isset($this->linkDB[0])) {
235 return true;
236 }
237
238 $save = $this->conf->get('resource.data_dir') .'/datastore.'. date('YmdHis') .'.php';
239 copy($this->conf->get('resource.datastore'), $save);
240
241 $links = array();
242 foreach ($this->linkDB as $offset => $value) {
243 $links[] = $value;
244 unset($this->linkDB[$offset]);
245 }
246 $links = array_reverse($links);
247 $cpt = 0;
248 foreach ($links as $l) {
1dc37f9c
A
249 unset($l['linkdate']);
250 $l['id'] = $cpt;
251 $this->linkDB[$cpt++] = $l;
252 }
253
254 $this->linkDB->save($this->conf->get('resource.page_cache'));
255 $this->linkDB->reorder();
256
257 return true;
258 }
cbfdcff2
A
259
260 /**
261 * Initialize API settings:
262 * - api.enabled: true
263 * - api.secret: generated secret
264 */
265 public function updateMethodApiSettings()
266 {
267 if ($this->conf->exists('api.secret')) {
268 return true;
269 }
270
271 $this->conf->set('api.enabled', true);
272 $this->conf->set(
273 'api.secret',
274 generate_api_secret(
275 $this->conf->get('credentials.login'),
276 $this->conf->get('credentials.salt')
277 )
278 );
279 $this->conf->write($this->isLoggedIn);
280 return true;
281 }
04a0e8ea
A
282
283 /**
284 * New setting: theme name. If the default theme is used, nothing to do.
285 *
286 * If the user uses a custom theme, raintpl_tpl dir is updated to the parent directory,
287 * and the current theme is set as default in the theme setting.
288 *
289 * @return bool true if the update is successful, false otherwise.
290 */
291 public function updateMethodDefaultTheme()
292 {
293 // raintpl_tpl isn't the root template directory anymore.
294 // We run the update only if this folder still contains the template files.
295 $tplDir = $this->conf->get('resource.raintpl_tpl');
296 $tplFile = $tplDir . '/linklist.html';
297 if (! file_exists($tplFile)) {
298 return true;
299 }
300
301 $parent = dirname($tplDir);
302 $this->conf->set('resource.raintpl_tpl', $parent);
303 $this->conf->set('resource.theme', trim(str_replace($parent, '', $tplDir), '/'));
304 $this->conf->write($this->isLoggedIn);
305
306 // Dependency injection gore
307 RainTPL::$tpl_dir = $tplDir;
308
309 return true;
310 }
510377d2
A
311}
312
313/**
314 * Class UpdaterException.
315 */
316class UpdaterException extends Exception
317{
318 /**
319 * @var string Method where the error occurred.
320 */
321 protected $method;
322
323 /**
324 * @var Exception The parent exception.
325 */
326 protected $previous;
327
328 /**
329 * Constructor.
330 *
331 * @param string $message Force the error message if set.
332 * @param string $method Method where the error occurred.
333 * @param Exception|bool $previous Parent exception.
334 */
335 public function __construct($message = '', $method = '', $previous = false)
336 {
337 $this->method = $method;
338 $this->previous = $previous;
339 $this->message = $this->buildMessage($message);
340 }
341
342 /**
343 * Build the exception error message.
344 *
345 * @param string $message Optional given error message.
346 *
347 * @return string The built error message.
348 */
349 private function buildMessage($message)
350 {
351 $out = '';
352 if (! empty($message)) {
353 $out .= $message . PHP_EOL;
354 }
355
356 if (! empty($this->method)) {
357 $out .= 'An error occurred while running the update '. $this->method . PHP_EOL;
358 }
359
360 if (! empty($this->previous)) {
361 $out .= ' '. $this->previous->getMessage();
362 }
363
364 return $out;
365 }
366}
367
510377d2
A
368/**
369 * Read the updates file, and return already done updates.
370 *
371 * @param string $updatesFilepath Updates file path.
372 *
373 * @return array Already done update methods.
374 */
375function read_updates_file($updatesFilepath)
376{
377 if (! empty($updatesFilepath) && is_file($updatesFilepath)) {
378 $content = file_get_contents($updatesFilepath);
379 if (! empty($content)) {
380 return explode(';', $content);
381 }
382 }
383 return array();
384}
385
386/**
387 * Write updates file.
388 *
389 * @param string $updatesFilepath Updates file path.
390 * @param array $updates Updates array to write.
391 *
392 * @throws Exception Couldn't write version number.
393 */
394function write_updates_file($updatesFilepath, $updates)
395{
396 if (empty($updatesFilepath)) {
397 throw new Exception('Updates file path is not set, can\'t write updates.');
398 }
399
400 $res = file_put_contents($updatesFilepath, implode(';', $updates));
401 if ($res === false) {
402 throw new Exception('Unable to write updates in '. $updatesFilepath . '.');
403 }
404}