]> git.wh0rd.org - tt-rss.git/blob - plugins/updater/init.php
updater: fix permissions of cache/js
[tt-rss.git] / plugins / updater / init.php
1 <?php
2 class Updater extends Plugin {
3
4 private $link;
5 private $host;
6
7 function about() {
8 return array(1.0,
9 "Updates tt-rss installation to latest version.",
10 "fox",
11 true);
12 }
13
14 function init($host) {
15 $this->link = $host->get_link();
16 $this->host = $host;
17
18 $host->add_hook($host::HOOK_PREFS_TAB, $this);
19
20 $host->add_command("update-self",
21 "update tt-rss installation to latest version",
22 $this);
23 }
24
25 function update_self_step($link, $step, $params, $force = false) {
26 // __FILE__ is in plugins/updater so we need to go one level up
27 $work_dir = dirname(dirname(dirname(__FILE__)));
28 $parent_dir = dirname($work_dir);
29
30 $log = array();
31 if (!is_array($params)) $params = array();
32
33 $stop = false;
34
35 if (!chdir($work_dir)) {
36 array_push($log, "Unable to change to work directory: $work_dir");
37 $stop = true;
38 }
39
40 if (!$stop) {
41 switch ($step) {
42 case 0:
43 array_push($log, "Work directory: $work_dir");
44
45 if (!is_writable($work_dir) && !is_writable("$parent_dir")) {
46 $user = posix_getpwuid(posix_geteuid());
47 $user = $user["name"];
48 array_push($log, "Both tt-rss and parent directories should be writable as current user ($user).");
49 $stop = true; break;
50 }
51
52 if (!file_exists("$work_dir/config.php") || !file_exists("$work_dir/include/sanity_check.php")) {
53 array_push($log, "Work directory $work_dir doesn't look like tt-rss installation.");
54 $stop = true; break;
55 }
56
57 if (!is_writable(sys_get_temp_dir())) {
58 array_push($log, "System temporary directory should be writable as current user.");
59 $stop = true; break;
60 }
61
62 array_push($log, "Checking for tar...");
63
64 $system_rc = 0;
65 system("which tar >/dev/null", $system_rc);
66
67 if ($system_rc != 0) {
68 array_push($log, "Could not run tar executable (RC=$system_rc).");
69 $stop = true; break;
70 }
71
72 array_push($log, "Checking for gunzip...");
73
74 $system_rc = 0;
75 system("which gunzip >/dev/null", $system_rc);
76
77 if ($system_rc != 0) {
78 array_push($log, "Could not run gunzip executable (RC=$system_rc).");
79 $stop = true; break;
80 }
81
82 array_push($log, "Checking for latest version...");
83
84 $version_info = json_decode(fetch_file_contents("http://tt-rss.org/version.php"),
85 true);
86
87 if (!is_array($version_info)) {
88 array_push($log, "Unable to fetch version information.");
89 $stop = true; break;
90 }
91
92 $target_version = $version_info["version"];
93 $target_dir = "$parent_dir/Tiny-Tiny-RSS-$target_version";
94
95 array_push($log, "Target version: $target_version");
96 $params["target_version"] = $target_version;
97
98 if (version_compare(VERSION, $target_version) != -1 && !$force) {
99 array_push($log, "Your Tiny Tiny RSS installation is up to date.");
100 $stop = true; break;
101 }
102
103 if (file_exists($target_dir)) {
104 array_push($log, "Target directory $target_dir already exists.");
105 $stop = true; break;
106 }
107
108 break;
109 case 1:
110 $target_version = $params["target_version"];
111
112 /* array_push($log, "Downloading checksums...");
113 $md5sum_data = fetch_file_contents("http://tt-rss.org/download/md5sum.txt");
114
115 if (!$md5sum_data) {
116 array_push($log, "Could not download checksums.");
117 $stop = true; break;
118 }
119
120 $md5sum_data = explode("\n", $md5sum_data);
121
122 foreach ($md5sum_data as $line) {
123 $pair = explode(" ", $line);
124
125 if ($pair[1] == "tt-rss-$target_version.tar.gz") {
126 $target_md5sum = $pair[0];
127 break;
128 }
129 }
130
131 if (!$target_md5sum) {
132 array_push($log, "Unable to locate checksum for target version.");
133 $stop = true; break;
134 }
135
136 $params["target_md5sum"] = $target_md5sum; */
137
138 array_push($log, "Proceeding to download...");
139
140 break;
141 case 2:
142 $target_version = $params["target_version"];
143 // $target_md5sum = $params["target_md5sum"];
144
145 array_push($log, "Downloading distribution tarball...");
146
147 $tarball_url = "https://github.com/gothfox/Tiny-Tiny-RSS/archive/$target_version.tar.gz";
148 $data = fetch_file_contents($tarball_url);
149
150 if (!$data) {
151 array_push($log, "Could not download distribution tarball ($tarball_url).");
152 $stop = true; break;
153 }
154
155 /* array_push($log, "Verifying tarball checksum...");
156
157 $test_md5sum = md5($data);
158
159 if ($test_md5sum != $target_md5sum) {
160 array_push($log, "Downloaded checksum doesn't match (got $test_md5sum, expected $target_md5sum).");
161 $stop = true; break;
162 } */
163
164 $tmp_file = tempnam(sys_get_temp_dir(), 'tt-rss');
165 array_push($log, "Saving download to $tmp_file");
166
167 if (!file_put_contents($tmp_file, $data)) {
168 array_push($log, "Unable to save download.");
169 $stop = true; break;
170 }
171
172 $params["tmp_file"] = $tmp_file;
173
174 break;
175 case 3:
176 $tmp_file = $params["tmp_file"];
177 $target_version = $params["target_version"];
178
179 if (!chdir($parent_dir)) {
180 array_push($log, "Unable to change into parent directory.");
181 $stop = true; break;
182 }
183
184 array_push($log, "Extracting tarball...");
185 system("tar zxf $tmp_file", $system_rc);
186
187 if ($system_rc != 0) {
188 array_push($log, "Error while extracting tarball (RC=$system_rc).");
189 $stop = true; break;
190 }
191
192 $target_dir = "$parent_dir/Tiny-Tiny-RSS-$target_version";
193
194 if (!is_dir($target_dir)) {
195 array_push($log, "Target directory ($target_dir) not found.");
196 $stop = true; break;
197 }
198
199 $old_dir = tmpdirname($parent_dir, "tt-rss-old");
200
201 array_push($log, "Renaming tt-rss directory to ".basename($old_dir));
202 if (!rename($work_dir, $old_dir)) {
203 array_push($log, "Unable to rename tt-rss directory.");
204 $stop = true; break;
205 }
206
207 array_push($log, "Renaming target directory...");
208 if (!rename($target_dir, $work_dir)) {
209 array_push($log, "Unable to rename target directory.");
210 $stop = true; break;
211 }
212
213 if (!chdir($work_dir)) {
214 array_push($log, "Unable to change to work directory: $work_dir");
215 $stop = true; break;
216 }
217
218 array_push($log, "Copying config.php...");
219 if (!copy("$old_dir/config.php", "$work_dir/config.php")) {
220 array_push($log, "Unable to copy config.php to $work_dir.");
221 $stop = true; break;
222 }
223
224 array_push($log, "Cleaning up...");
225 unlink($tmp_file);
226
227 array_push($log, "Fixing permissions...");
228
229 $directories = array(
230 CACHE_DIR,
231 CACHE_DIR . "/export",
232 CACHE_DIR . "/images",
233 CACHE_DIR . "/js",
234 CACHE_DIR . "/simplepie",
235 ICONS_DIR,
236 LOCK_DIRECTORY);
237
238 foreach ($directories as $dir) {
239 array_push($log, "-> $dir");
240 chmod($dir, 0777);
241 }
242
243 array_push($log, "Upgrade completed.");
244 array_push($log, "Your old tt-rss directory is saved at $old_dir. ".
245 "Please migrate locally modified files (if any) and remove it.");
246 array_push($log, "You might need to re-enter current directory in shell to see new files.");
247
248 $stop = true;
249 break;
250 default:
251 $stop = true;
252 }
253 }
254
255 return array("step" => $step, "stop" => $stop, "params" => $params, "log" => $log);
256 }
257
258 function update_self_cli($link, $force = false) {
259 $step = 0;
260 $stop = false;
261 $params = array();
262
263 while (!$stop) {
264 $rc = $this->update_self_step($link, $step, $params, $force);
265
266 $params = $rc['params'];
267 $stop = $rc['stop'];
268
269 foreach ($rc['log'] as $line) {
270 _debug($line);
271 }
272 ++$step;
273 }
274 }
275
276 function update_self($args) {
277 _debug("Warning: self-updating is experimental. Use at your own risk.");
278 _debug("Please backup your tt-rss directory before continuing. Your database will not be modified.");
279 _debug("Type 'yes' to continue.");
280
281 if (read_stdin() != 'yes')
282 exit;
283
284 $this->update_self_cli($link, in_array("-force", $args));
285 }
286
287 function get_prefs_js() {
288 return file_get_contents(dirname(__FILE__) . "/updater.js");
289 }
290
291 function hook_prefs_tab($args) {
292 if ($args != "prefPrefs") return;
293
294 if (($_SESSION["access_level"] >= 10 || SINGLE_USER_MODE) && CHECK_FOR_NEW_VERSION) {
295 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Update Tiny Tiny RSS')."\">";
296
297 if ($_SESSION["pref_last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
298 $_SESSION["version_data"] = @check_for_update($this->link);
299 $_SESSION["pref_last_version_check"] = time();
300 }
301
302 if (is_array($_SESSION["version_data"])) {
303 $version = $_SESSION["version_data"]["version"];
304 print_notice(T_sprintf("New version of Tiny Tiny RSS is available (%s).", "<b>$version</b>"));
305
306 print "<p><button dojoType=\"dijit.form.Button\" onclick=\"return updateSelf()\">".
307 __('Update Tiny Tiny RSS')."</button></p>";
308
309 } else {
310 print_notice(__("Your Tiny Tiny RSS installation is up to date."));
311 }
312
313 print "</div>"; #pane
314 }
315 }
316
317 function updateSelf() {
318 print "<form style='display : block' name='self_update_form' id='self_update_form'>";
319
320 print "<div class='error'>".__("Do not close this dialog until updating is finished. Backup your tt-rss directory before continuing.")."</div>";
321
322 print "<ul class='selfUpdateList' id='self_update_log'>";
323 print "<li>" . __("Ready to update.") . "</li>";
324 print "</ul>";
325
326 print "<div class='dlgButtons'>";
327 print "<button id=\"self_update_start_btn\" dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('updateSelfDlg').start()\" >".
328 __("Start update")."</button>";
329 print "<button id=\"self_update_stop_btn\" onclick=\"return dijit.byId('updateSelfDlg').close()\" dojoType=\"dijit.form.Button\">".
330 __("Close this window")."</button>";
331 print "</div>";
332 print "</form>";
333 }
334
335 function performUpdate() {
336 $step = (int) $_REQUEST["step"];
337 $params = json_decode($_REQUEST["params"], true);
338 $force = (bool) $_REQUEST["force"];
339
340 if (($_SESSION["access_level"] >= 10 || SINGLE_USER_MODE) && CHECK_FOR_NEW_VERSION) {
341 print json_encode($this->update_self_step($this->link, $step, $params, $force));
342 }
343 }
344
345 }
346 ?>