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