]> git.wh0rd.org - tt-rss.git/blob - update.php
increase updstart locking interval to prevent concurrent updates; decrease batch...
[tt-rss.git] / update.php
1 #!/usr/bin/env php
2 <?php
3 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
4 get_include_path());
5
6 define('DISABLE_SESSIONS', true);
7
8 chdir(dirname(__FILE__));
9
10 require_once "autoload.php";
11 require_once "functions.php";
12 require_once "rssfuncs.php";
13 require_once "config.php";
14 require_once "sanity_check.php";
15 require_once "db.php";
16 require_once "db-prefs.php";
17
18 if (!defined('PHP_EXECUTABLE'))
19 define('PHP_EXECUTABLE', '/usr/bin/php');
20
21 init_plugins();
22
23 $longopts = array("feeds",
24 "feedbrowser",
25 "daemon",
26 "daemon-loop",
27 "task:",
28 "cleanup-tags",
29 "quiet",
30 "log:",
31 "indexes",
32 "pidlock:",
33 "update-schema",
34 "convert-filters",
35 "force-update",
36 "list-plugins",
37 "help");
38
39 foreach (PluginHost::getInstance()->get_commands() as $command => $data) {
40 array_push($longopts, $command . $data["suffix"]);
41 }
42
43 $options = getopt("", $longopts);
44
45 if (count($options) == 0 && !defined('STDIN')) {
46 ?> <html>
47 <head>
48 <title>Tiny Tiny RSS data update script.</title>
49 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
50 <link rel="stylesheet" type="text/css" href="utility.css">
51 </head>
52
53 <body>
54 <div class="floatingLogo"><img src="images/logo_small.png"></div>
55 <h1><?php echo __("Tiny Tiny RSS data update script.") ?></h1>
56
57 <?php print_error("Please run this script from the command line. Use option \"-help\" to display command help if this error is displayed erroneously."); ?>
58
59 </body></html>
60 <?php
61 exit;
62 }
63
64 if (count($options) == 0 || isset($options["help"]) ) {
65 print "Tiny Tiny RSS data update script.\n\n";
66 print "Options:\n";
67 print " --feeds - update feeds\n";
68 print " --feedbrowser - update feedbrowser\n";
69 print " --daemon - start single-process update daemon\n";
70 print " --task N - create lockfile using this task id\n";
71 print " --cleanup-tags - perform tags table maintenance\n";
72 print " --quiet - don't output messages to stdout\n";
73 print " --log FILE - log messages to FILE\n";
74 print " --indexes - recreate missing schema indexes\n";
75 print " --update-schema - update database schema\n";
76 print " --convert-filters - convert type1 filters to type2\n";
77 print " --force-update - force update of all feeds\n";
78 print " --list-plugins - list all available plugins\n";
79 print " --help - show this help\n";
80 print "Plugin options:\n";
81
82 foreach (PluginHost::getInstance()->get_commands() as $command => $data) {
83 $args = $data['arghelp'];
84 printf(" --%-19s - %s\n", "$command $args", $data["description"]);
85 }
86
87 return;
88 }
89
90 if (!isset($options['daemon'])) {
91 require_once "errorhandler.php";
92 }
93
94 if (!isset($options['update-schema'])) {
95 $schema_version = get_schema_version();
96
97 if ($schema_version != SCHEMA_VERSION) {
98 die("Schema version is wrong, please upgrade the database.\n");
99 }
100 }
101
102 define('QUIET', isset($options['quiet']));
103
104 if (isset($options["log"])) {
105 _debug("Logging to " . $options["log"]);
106 define('LOGFILE', $options["log"]);
107 }
108
109 if (!isset($options["daemon"])) {
110 $lock_filename = "update.lock";
111 } else {
112 $lock_filename = "update_daemon.lock";
113 }
114
115 if (isset($options["task"])) {
116 _debug("Using task id " . $options["task"]);
117 $lock_filename = $lock_filename . "-task_" . $options["task"];
118 }
119
120 if (isset($options["pidlock"])) {
121 $my_pid = $options["pidlock"];
122 $lock_filename = "update_daemon-$my_pid.lock";
123
124 }
125
126 _debug("Lock: $lock_filename");
127
128 $lock_handle = make_lockfile($lock_filename);
129 $must_exit = false;
130
131 if (isset($options["task"]) && isset($options["pidlock"])) {
132 $waits = $options["task"] * 5;
133 _debug("Waiting before update ($waits)");
134 sleep($waits);
135 }
136
137 // Try to lock a file in order to avoid concurrent update.
138 if (!$lock_handle) {
139 die("error: Can't create lockfile ($lock_filename). ".
140 "Maybe another update process is already running.\n");
141 }
142
143 if (isset($options["force-update"])) {
144 _debug("marking all feeds as needing update...");
145
146 db_query( "UPDATE ttrss_feeds SET last_update_started = '1970-01-01',
147 last_updated = '1970-01-01'");
148 }
149
150 if (isset($options["feeds"])) {
151 // Update all feeds needing a update.
152 update_daemon_common();
153
154 // Update feedbrowser
155 $count = update_feedbrowser_cache();
156 _debug("Feedbrowser updated, $count feeds processed.");
157
158 // Purge orphans and cleanup tags
159 purge_orphans( true);
160
161 $rc = cleanup_tags( 14, 50000);
162 _debug("Cleaned $rc cached tags.");
163
164 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op);
165 }
166
167 if (isset($options["feedbrowser"])) {
168 $count = update_feedbrowser_cache();
169 print "Finished, $count feeds processed.\n";
170 }
171
172 if (isset($options["daemon"])) {
173 while (true) {
174 $quiet = (isset($options["quiet"])) ? "--quiet" : "";
175
176 passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop $quiet");
177 _debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
178 sleep(DAEMON_SLEEP_INTERVAL);
179 }
180 }
181
182 if (isset($options["daemon-loop"])) {
183 if (!make_stampfile('update_daemon.stamp')) {
184 _debug("warning: unable to create stampfile\n");
185 }
186
187 update_daemon_common(isset($options["pidlock"]) ? 50 : DAEMON_FEED_LIMIT);
188
189 $count = update_feedbrowser_cache();
190 _debug("Feedbrowser updated, $count feeds processed.");
191
192 purge_orphans( true);
193
194 $rc = cleanup_tags( 14, 50000);
195
196 _debug("Cleaned $rc cached tags.");
197 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op);
198 }
199
200 if (isset($options["cleanup-tags"])) {
201 $rc = cleanup_tags( 14, 50000);
202 _debug("$rc tags deleted.\n");
203 }
204
205 if (isset($options["indexes"])) {
206 _debug("PLEASE BACKUP YOUR DATABASE BEFORE PROCEEDING!");
207 _debug("Type 'yes' to continue.");
208
209 if (read_stdin() != 'yes')
210 exit;
211
212 _debug("clearing existing indexes...");
213
214 if (DB_TYPE == "pgsql") {
215 $result = db_query( "SELECT relname FROM
216 pg_catalog.pg_class WHERE relname LIKE 'ttrss_%'
217 AND relname NOT LIKE '%_pkey'
218 AND relkind = 'i'");
219 } else {
220 $result = db_query( "SELECT index_name,table_name FROM
221 information_schema.statistics WHERE index_name LIKE 'ttrss_%'");
222 }
223
224 while ($line = db_fetch_assoc($result)) {
225 if (DB_TYPE == "pgsql") {
226 $statement = "DROP INDEX " . $line["relname"];
227 _debug($statement);
228 } else {
229 $statement = "ALTER TABLE ".
230 $line['table_name']." DROP INDEX ".$line['index_name'];
231 _debug($statement);
232 }
233 db_query( $statement, false);
234 }
235
236 _debug("reading indexes from schema for: " . DB_TYPE);
237
238 $fp = fopen("schema/ttrss_schema_" . DB_TYPE . ".sql", "r");
239 if ($fp) {
240 while ($line = fgets($fp)) {
241 $matches = array();
242
243 if (preg_match("/^create index ([^ ]+) on ([^ ]+)$/i", $line, $matches)) {
244 $index = $matches[1];
245 $table = $matches[2];
246
247 $statement = "CREATE INDEX $index ON $table";
248
249 _debug($statement);
250 db_query( $statement);
251 }
252 }
253 fclose($fp);
254 } else {
255 _debug("unable to open schema file.");
256 }
257 _debug("all done.");
258 }
259
260 if (isset($options["convert-filters"])) {
261 _debug("WARNING: this will remove all existing type2 filters.");
262 _debug("Type 'yes' to continue.");
263
264 if (read_stdin() != 'yes')
265 exit;
266
267 _debug("converting filters...");
268
269 db_query( "DELETE FROM ttrss_filters2");
270
271 $result = db_query( "SELECT * FROM ttrss_filters ORDER BY id");
272
273 while ($line = db_fetch_assoc($result)) {
274 $owner_uid = $line["owner_uid"];
275
276 // date filters are removed
277 if ($line["filter_type"] != 5) {
278 $filter = array();
279
280 if (sql_bool_to_bool($line["cat_filter"])) {
281 $feed_id = "CAT:" . (int)$line["cat_id"];
282 } else {
283 $feed_id = (int)$line["feed_id"];
284 }
285
286 $filter["enabled"] = $line["enabled"] ? "on" : "off";
287 $filter["rule"] = array(
288 json_encode(array(
289 "reg_exp" => $line["reg_exp"],
290 "feed_id" => $feed_id,
291 "filter_type" => $line["filter_type"])));
292
293 $filter["action"] = array(
294 json_encode(array(
295 "action_id" => $line["action_id"],
296 "action_param_label" => $line["action_param"],
297 "action_param" => $line["action_param"])));
298
299 // Oh god it's full of hacks
300
301 $_REQUEST = $filter;
302 $_SESSION["uid"] = $owner_uid;
303
304 $filters = new Pref_Filters($_REQUEST);
305 $filters->add();
306 }
307 }
308
309 }
310
311 if (isset($options["update-schema"])) {
312 _debug("checking for updates (" . DB_TYPE . ")...");
313
314 $updater = new DbUpdater(Db::get(), DB_TYPE, SCHEMA_VERSION);
315
316 if ($updater->isUpdateRequired()) {
317 _debug("schema update required, version " . $updater->getSchemaVersion() . " to " . SCHEMA_VERSION);
318 _debug("WARNING: please backup your database before continuing.");
319 _debug("Type 'yes' to continue.");
320
321 if (read_stdin() != 'yes')
322 exit;
323
324 for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
325 _debug("performing update up to version $i...");
326
327 $result = $updater->performUpdateTo($i);
328
329 _debug($result ? "OK!" : "FAILED!");
330
331 if (!$result) return;
332
333 }
334 } else {
335 _debug("update not required.");
336 }
337
338 }
339
340 if (isset($options["list-plugins"])) {
341 $tmppluginhost = new PluginHost(Db::get());
342 $tmppluginhost->load_all($tmppluginhost::KIND_ALL);
343 $enabled = array_map("trim", explode(",", PLUGINS));
344
345 echo "List of all available plugins:\n";
346
347 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
348 $about = $plugin->about();
349
350 $status = $about[3] ? "system" : "user";
351
352 if (in_array($name, $enabled)) $name .= "*";
353
354 printf("%-50s %-10s v%.2f (by %s)\n%s\n\n",
355 $name, $status, $about[0], $about[2], $about[1]);
356 }
357
358 echo "Plugins marked by * are currently enabled for all users.\n";
359
360 }
361
362 PluginHost::getInstance()->run_commands($options);
363
364 if ($lock_handle != false) {
365 fclose($lock_handle);
366 }
367
368 if (file_exists(LOCK_DIRECTORY . "/$lock_filename"))
369 unlink(LOCK_DIRECTORY . "/$lock_filename");
370 ?>