3 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
6 define('DISABLE_SESSIONS', true);
8 chdir(dirname(__FILE__));
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";
18 if (!defined('PHP_EXECUTABLE'))
19 define('PHP_EXECUTABLE', '/usr/bin/php');
23 $longopts = array("feeds",
39 foreach (PluginHost::getInstance()->get_commands() as $command => $data) {
40 array_push($longopts, $command . $data["suffix"]);
43 $options = getopt("", $longopts);
45 if (!is_array($options)) {
46 die("error: getopt() failed. ".
47 "Most probably you are using PHP CGI to run this script ".
48 "instead of required PHP CLI. Check tt-rss wiki page on updating feeds for ".
49 "additional information.\n");
52 if (count($options) == 0 && !defined('STDIN')) {
55 <title>Tiny Tiny RSS data update script.</title>
56 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
57 <link rel="stylesheet" type="text/css" href="css/utility.css">
61 <div class="floatingLogo"><img src="images/logo_small.png"></div>
62 <h1><?php echo __("Tiny Tiny RSS data update script.") ?></h1>
64 <?php print_error("Please run this script from the command line. Use option \"-help\" to display command help if this error is displayed erroneously."); ?>
71 if (count($options) == 0 || isset($options["help"]) ) {
72 print "Tiny Tiny RSS data update script.\n\n";
74 print " --feeds - update feeds\n";
75 print " --feedbrowser - update feedbrowser\n";
76 print " --daemon - start single-process update daemon\n";
77 print " --task N - create lockfile using this task id\n";
78 print " --cleanup-tags - perform tags table maintenance\n";
79 print " --quiet - don't output messages to stdout\n";
80 print " --log FILE - log messages to FILE\n";
81 print " --indexes - recreate missing schema indexes\n";
82 print " --update-schema - update database schema\n";
83 print " --convert-filters - convert type1 filters to type2\n";
84 print " --force-update - force update of all feeds\n";
85 print " --list-plugins - list all available plugins\n";
86 print " --help - show this help\n";
87 print "Plugin options:\n";
89 foreach (PluginHost::getInstance()->get_commands() as $command => $data) {
90 $args = $data['arghelp'];
91 printf(" --%-19s - %s\n", "$command $args", $data["description"]);
97 if (!isset($options['daemon'])) {
98 require_once "errorhandler.php";
101 if (!isset($options['update-schema'])) {
102 $schema_version = get_schema_version();
104 if ($schema_version != SCHEMA_VERSION) {
105 die("Schema version is wrong, please upgrade the database.\n");
109 define('QUIET', isset($options['quiet']));
111 if (isset($options["log"])) {
112 _debug("Logging to " . $options["log"]);
113 define('LOGFILE', $options["log"]);
116 if (!isset($options["daemon"])) {
117 $lock_filename = "update.lock";
119 $lock_filename = "update_daemon.lock";
122 if (isset($options["task"])) {
123 _debug("Using task id " . $options["task"]);
124 $lock_filename = $lock_filename . "-task_" . $options["task"];
127 if (isset($options["pidlock"])) {
128 $my_pid = $options["pidlock"];
129 $lock_filename = "update_daemon-$my_pid.lock";
133 _debug("Lock: $lock_filename");
135 $lock_handle = make_lockfile($lock_filename);
138 if (isset($options["task"]) && isset($options["pidlock"])) {
139 $waits = $options["task"] * 5;
140 _debug("Waiting before update ($waits)");
144 // Try to lock a file in order to avoid concurrent update.
146 die("error: Can't create lockfile ($lock_filename). ".
147 "Maybe another update process is already running.\n");
150 if (isset($options["force-update"])) {
151 _debug("marking all feeds as needing update...");
153 db_query( "UPDATE ttrss_feeds SET last_update_started = '1970-01-01',
154 last_updated = '1970-01-01'");
157 if (isset($options["feeds"])) {
158 update_daemon_common();
159 housekeeping_common(true);
161 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op);
164 if (isset($options["feedbrowser"])) {
165 $count = update_feedbrowser_cache();
166 print "Finished, $count feeds processed.\n";
169 if (isset($options["daemon"])) {
171 $quiet = (isset($options["quiet"])) ? "--quiet" : "";
172 $log = isset($options['log']) ? '--log '.$options['log'] : '';
174 passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop $quiet $log");
175 _debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
176 sleep(DAEMON_SLEEP_INTERVAL);
180 if (isset($options["daemon-loop"])) {
181 if (!make_stampfile('update_daemon.stamp')) {
182 _debug("warning: unable to create stampfile\n");
185 update_daemon_common(isset($options["pidlock"]) ? 50 : DAEMON_FEED_LIMIT);
187 if (!isset($options["pidlock"]) || $options["task"] == 0)
188 housekeeping_common(true);
190 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op);
193 if (isset($options["cleanup-tags"])) {
194 $rc = cleanup_tags( 14, 50000);
195 _debug("$rc tags deleted.\n");
198 if (isset($options["indexes"])) {
199 _debug("PLEASE BACKUP YOUR DATABASE BEFORE PROCEEDING!");
200 _debug("Type 'yes' to continue.");
202 if (read_stdin() != 'yes')
205 _debug("clearing existing indexes...");
207 if (DB_TYPE == "pgsql") {
208 $result = db_query( "SELECT relname FROM
209 pg_catalog.pg_class WHERE relname LIKE 'ttrss_%'
210 AND relname NOT LIKE '%_pkey'
213 $result = db_query( "SELECT index_name,table_name FROM
214 information_schema.statistics WHERE index_name LIKE 'ttrss_%'");
217 while ($line = db_fetch_assoc($result)) {
218 if (DB_TYPE == "pgsql") {
219 $statement = "DROP INDEX " . $line["relname"];
222 $statement = "ALTER TABLE ".
223 $line['table_name']." DROP INDEX ".$line['index_name'];
226 db_query( $statement, false);
229 _debug("reading indexes from schema for: " . DB_TYPE);
231 $fp = fopen("schema/ttrss_schema_" . DB_TYPE . ".sql", "r");
233 while ($line = fgets($fp)) {
236 if (preg_match("/^create index ([^ ]+) on ([^ ]+)$/i", $line, $matches)) {
237 $index = $matches[1];
238 $table = $matches[2];
240 $statement = "CREATE INDEX $index ON $table";
243 db_query( $statement);
248 _debug("unable to open schema file.");
253 if (isset($options["convert-filters"])) {
254 _debug("WARNING: this will remove all existing type2 filters.");
255 _debug("Type 'yes' to continue.");
257 if (read_stdin() != 'yes')
260 _debug("converting filters...");
262 db_query( "DELETE FROM ttrss_filters2");
264 $result = db_query( "SELECT * FROM ttrss_filters ORDER BY id");
266 while ($line = db_fetch_assoc($result)) {
267 $owner_uid = $line["owner_uid"];
269 // date filters are removed
270 if ($line["filter_type"] != 5) {
273 if (sql_bool_to_bool($line["cat_filter"])) {
274 $feed_id = "CAT:" . (int)$line["cat_id"];
276 $feed_id = (int)$line["feed_id"];
279 $filter["enabled"] = $line["enabled"] ? "on" : "off";
280 $filter["rule"] = array(
282 "reg_exp" => $line["reg_exp"],
283 "feed_id" => $feed_id,
284 "filter_type" => $line["filter_type"])));
286 $filter["action"] = array(
288 "action_id" => $line["action_id"],
289 "action_param_label" => $line["action_param"],
290 "action_param" => $line["action_param"])));
292 // Oh god it's full of hacks
295 $_SESSION["uid"] = $owner_uid;
297 $filters = new Pref_Filters($_REQUEST);
304 if (isset($options["update-schema"])) {
305 _debug("checking for updates (" . DB_TYPE . ")...");
307 $updater = new DbUpdater(Db::get(), DB_TYPE, SCHEMA_VERSION);
309 if ($updater->isUpdateRequired()) {
310 _debug("schema update required, version " . $updater->getSchemaVersion() . " to " . SCHEMA_VERSION);
311 _debug("WARNING: please backup your database before continuing.");
312 _debug("Type 'yes' to continue.");
314 if (read_stdin() != 'yes')
317 for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
318 _debug("performing update up to version $i...");
320 $result = $updater->performUpdateTo($i);
322 _debug($result ? "OK!" : "FAILED!");
324 if (!$result) return;
328 _debug("update not required.");
333 if (isset($options["list-plugins"])) {
334 $tmppluginhost = new PluginHost();
335 $tmppluginhost->load_all($tmppluginhost::KIND_ALL);
336 $enabled = array_map("trim", explode(",", PLUGINS));
338 echo "List of all available plugins:\n";
340 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
341 $about = $plugin->about();
343 $status = $about[3] ? "system" : "user";
345 if (in_array($name, $enabled)) $name .= "*";
347 printf("%-50s %-10s v%.2f (by %s)\n%s\n\n",
348 $name, $status, $about[0], $about[2], $about[1]);
351 echo "Plugins marked by * are currently enabled for all users.\n";
355 PluginHost::getInstance()->run_commands($options);
357 if (file_exists(LOCK_DIRECTORY . "/$lock_filename"))
358 unlink(LOCK_DIRECTORY . "/$lock_filename");