]> git.wh0rd.org - tt-rss.git/blame - update.php
fix broken header of ru_RU translation thanks to Tomáš Chvátal; rebase translations
[tt-rss.git] / update.php
CommitLineData
ece78711 1#!/usr/bin/env php
fecd57c8 2<?php
88e8fb3a
AD
3 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
4 get_include_path());
107d0cf3 5
661135c7
AD
6 define('DISABLE_SESSIONS', true);
7
9b27cec8
AD
8 chdir(dirname(__FILE__));
9
fb074239 10 require_once "functions.php";
2c08214a 11 require_once "rssfuncs.php";
81596c66 12 require_once "config.php";
f02713bb 13 require_once "sanity_check.php";
81596c66 14 require_once "db.php";
661135c7 15 require_once "db-prefs.php";
661135c7 16
3de78afd
AD
17 if (!defined('PHP_EXECUTABLE'))
18 define('PHP_EXECUTABLE', '/usr/bin/php');
19
73f28fe9
AD
20 // Create a database connection.
21 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
22
23 init_connection($link);
24
764555ff
AD
25 $longopts = array("feeds",
26 "feedbrowser",
27 "daemon",
28 "daemon-loop",
29 "task:",
30 "cleanup-tags",
31 "quiet",
2191eb7a 32 "log:",
764555ff
AD
33 "indexes",
34 "convert-filters",
35 "force-update",
36 "list-plugins",
37 "help");
38
39 foreach ($pluginhost->get_commands() as $command => $data) {
4cf0f9a9 40 array_push($longopts, $command . $data["suffix"]);
764555ff
AD
41 }
42
43 $options = getopt("", $longopts);
3de78afd 44
764555ff 45 if (count($options) == 0 && !defined('STDIN')) {
366f06f7
AD
46 ?> <html>
47 <head>
3de78afd 48 <title>Tiny Tiny RSS data update script.</title>
366f06f7
AD
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>
884d1650 54 <div class="floatingLogo"><img src="images/logo_small.png"></div>
3de78afd 55 <h1><?php echo __("Tiny Tiny RSS data update script.") ?></h1>
366f06f7 56
3de78afd 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."); ?>
366f06f7
AD
58
59 </body></html>
60 <?php
61 exit;
62 }
63
764555ff 64 if (count($options) == 0 || isset($options["help"]) ) {
661135c7
AD
65 print "Tiny Tiny RSS data update script.\n\n";
66 print "Options:\n";
764555ff
AD
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";
dc24b520 72 print " --quiet - don't output messages to stdout\n";
2191eb7a 73 print " --log FILE - log messages to FILE\n";
764555ff
AD
74 print " --indexes - recreate missing schema indexes\n";
75 print " --convert-filters - convert type1 filters to type2\n";
76 print " --force-update - force update of all feeds\n";
77 print " --list-plugins - list all available plugins\n";
78 print " --help - show this help\n";
73f28fe9
AD
79 print "Plugin options:\n";
80
81 foreach ($pluginhost->get_commands() as $command => $data) {
4cf0f9a9
AD
82 $args = $data['arghelp'];
83 printf(" --%-19s - %s\n", "$command $args", $data["description"]);
73f28fe9
AD
84 }
85
661135c7 86 return;
81596c66 87 }
87b9fb65 88
dc24b520
AD
89 define('QUIET', isset($options['quiet']));
90
2191eb7a
AD
91 if (isset($options["log"])) {
92 _debug("Logging to " . $options["log"]);
93 define('LOGFILE', $options["log"]);
94 }
95
764555ff 96 if (!isset($options["daemon"])) {
661135c7
AD
97 $lock_filename = "update.lock";
98 } else {
99 $lock_filename = "update_daemon.lock";
100 }
fecd57c8 101
764555ff
AD
102 if (isset($options["task"])) {
103 _debug("Using task id " . $options["task"]);
104 $lock_filename = $lock_filename . "-task_" . $options["task"];
105 }
106
661135c7
AD
107 $lock_handle = make_lockfile($lock_filename);
108 $must_exit = false;
fecd57c8 109
661135c7
AD
110 // Try to lock a file in order to avoid concurrent update.
111 if (!$lock_handle) {
112 die("error: Can't create lockfile ($lock_filename). ".
113 "Maybe another update process is already running.\n");
114 }
fecd57c8 115
764555ff
AD
116 if (isset($options["force-update"])) {
117 _debug("marking all feeds as needing update...");
118
119 db_query($link, "UPDATE ttrss_feeds SET last_update_started = '1970-01-01',
120 last_updated = '1970-01-01'");
121 }
122
123 if (isset($options["feeds"])) {
661135c7
AD
124 // Update all feeds needing a update.
125 update_daemon_common($link);
84e9a8c7
AD
126
127 // Update feedbrowser
128 $count = update_feedbrowser_cache($link);
129 _debug("Feedbrowser updated, $count feeds processed.");
130
131 // Purge orphans and cleanup tags
132 purge_orphans($link, true);
133
134 $rc = cleanup_tags($link, 14, 50000);
135 _debug("Cleaned $rc cached tags.");
f32eb194 136
41b82aa4
AD
137 global $pluginhost;
138 $pluginhost->run_hooks($pluginhost::HOOK_UPDATE_TASK, "hook_update_task", $op);
661135c7 139 }
fecd57c8 140
764555ff 141 if (isset($options["feedbrowser"])) {
661135c7
AD
142 $count = update_feedbrowser_cache($link);
143 print "Finished, $count feeds processed.\n";
fecd57c8 144 }
661135c7 145
764555ff 146 if (isset($options["daemon"])) {
661135c7 147 while (true) {
764555ff 148 passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop");
661135c7
AD
149 _debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
150 sleep(DAEMON_SLEEP_INTERVAL);
fecd57c8 151 }
81596c66 152 }
9e21a571 153
764555ff 154 if (isset($options["daemon-loop"])) {
661135c7 155 if (!make_stampfile('update_daemon.stamp')) {
e81610d9 156 _debug("warning: unable to create stampfile\n");
661135c7 157 }
9e21a571 158
dbaa4e4a 159 // Call to the feed batch update function
661135c7 160 // or regenerate feedbrowser cache
9e21a571 161
661135c7
AD
162 if (rand(0,100) > 30) {
163 update_daemon_common($link);
9e21a571 164 } else {
661135c7 165 $count = update_feedbrowser_cache($link);
e3b42c5a
AD
166 _debug("Feedbrowser updated, $count feeds processed.");
167
168 purge_orphans($link, true);
dbaa4e4a 169
e3b42c5a
AD
170 $rc = cleanup_tags($link, 14, 50000);
171
172 _debug("Cleaned $rc cached tags.");
f32eb194 173
41b82aa4
AD
174 global $pluginhost;
175 $pluginhost->run_hooks($pluginhost::HOOK_UPDATE_TASK, "hook_update_task", $op);
9e21a571 176 }
ef59e6e8 177
fecd57c8 178 }
fecd57c8 179
764555ff 180 if (isset($options["cleanup-tags"])) {
868650e4 181 $rc = cleanup_tags($link, 14, 50000);
5439d333 182 _debug("$rc tags deleted.\n");
868650e4
AD
183 }
184
764555ff 185 if (isset($options["indexes"])) {
871f0a7a
AD
186 _debug("PLEASE BACKUP YOUR DATABASE BEFORE PROCEEDING!");
187 _debug("Type 'yes' to continue.");
188
189 if (read_stdin() != 'yes')
190 exit;
191
192 _debug("clearing existing indexes...");
193
194 if (DB_TYPE == "pgsql") {
195 $result = db_query($link, "SELECT relname FROM
196 pg_catalog.pg_class WHERE relname LIKE 'ttrss_%'
197 AND relname NOT LIKE '%_pkey'
198 AND relkind = 'i'");
199 } else {
200 $result = db_query($link, "SELECT index_name,table_name FROM
201 information_schema.statistics WHERE index_name LIKE 'ttrss_%'");
202 }
203
204 while ($line = db_fetch_assoc($result)) {
205 if (DB_TYPE == "pgsql") {
206 $statement = "DROP INDEX " . $line["relname"];
207 _debug($statement);
208 } else {
209 $statement = "ALTER TABLE ".
210 $line['table_name']." DROP INDEX ".$line['index_name'];
211 _debug($statement);
212 }
213 db_query($link, $statement, false);
214 }
215
216 _debug("reading indexes from schema for: " . DB_TYPE);
217
218 $fp = fopen("schema/ttrss_schema_" . DB_TYPE . ".sql", "r");
219 if ($fp) {
220 while ($line = fgets($fp)) {
221 $matches = array();
222
223 if (preg_match("/^create index ([^ ]+) on ([^ ]+)$/i", $line, $matches)) {
224 $index = $matches[1];
225 $table = $matches[2];
226
227 $statement = "CREATE INDEX $index ON $table";
228
229 _debug($statement);
230 db_query($link, $statement);
231 }
232 }
233 fclose($fp);
234 } else {
235 _debug("unable to open schema file.");
236 }
237 _debug("all done.");
238 }
239
764555ff 240 if (isset($options["convert-filters"])) {
6aff7845
AD
241 _debug("WARNING: this will remove all existing type2 filters.");
242 _debug("Type 'yes' to continue.");
243
244 if (read_stdin() != 'yes')
245 exit;
246
247 _debug("converting filters...");
248
249 db_query($link, "DELETE FROM ttrss_filters2");
250
251 $result = db_query($link, "SELECT * FROM ttrss_filters ORDER BY id");
252
253 while ($line = db_fetch_assoc($result)) {
254 $owner_uid = $line["owner_uid"];
255
37f78940
AD
256 // date filters are removed
257 if ($line["filter_type"] != 5) {
258 $filter = array();
259
260 if (sql_bool_to_bool($line["cat_filter"])) {
261 $feed_id = "CAT:" . (int)$line["cat_id"];
262 } else {
263 $feed_id = (int)$line["feed_id"];
264 }
6aff7845 265
37f78940
AD
266 $filter["enabled"] = $line["enabled"] ? "on" : "off";
267 $filter["rule"] = array(
268 json_encode(array(
269 "reg_exp" => $line["reg_exp"],
270 "feed_id" => $feed_id,
271 "filter_type" => $line["filter_type"])));
6aff7845 272
37f78940
AD
273 $filter["action"] = array(
274 json_encode(array(
275 "action_id" => $line["action_id"],
276 "action_param_label" => $line["action_param"],
277 "action_param" => $line["action_param"])));
6aff7845 278
37f78940 279 // Oh god it's full of hacks
5451903c 280
37f78940
AD
281 $_REQUEST = $filter;
282 $_SESSION["uid"] = $owner_uid;
6aff7845 283
37f78940
AD
284 $filters = new Pref_Filters($link, $_REQUEST);
285 $filters->add();
286 }
6aff7845
AD
287 }
288
289 }
290
764555ff 291 if (isset($options["list-plugins"])) {
7a866114 292 $tmppluginhost = new PluginHost($link);
d2a421e3 293 $tmppluginhost->load_all($tmppluginhost::KIND_ALL);
20b86c79
AD
294 $enabled = array_map("trim", explode(",", PLUGINS));
295
296 echo "List of all available plugins:\n";
297
7a866114 298 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
d2a421e3 299 $about = $plugin->about();
7a866114 300
20b86c79
AD
301 $status = $about[3] ? "system" : "user";
302
303 if (in_array($name, $enabled)) $name .= "*";
304
305 printf("%-50s %-10s v%.2f (by %s)\n%s\n\n",
306 $name, $status, $about[0], $about[2], $about[1]);
7a866114 307 }
20b86c79
AD
308
309 echo "Plugins marked by * are currently enabled for all users.\n";
310
7a866114
AD
311 }
312
764555ff 313 $pluginhost->run_commands($options);
73f28fe9 314
661135c7 315 db_close($link);
107d0cf3 316