update.php 9.3 KB

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