]> git.wh0rd.org - tt-rss.git/commitdiff
rework update.php to use getopt; allow --task parameter
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Thu, 21 Mar 2013 10:48:47 +0000 (14:48 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Thu, 21 Mar 2013 10:48:47 +0000 (14:48 +0400)
classes/pluginhost.php
update.php

index 79544b01b6a7f3378d92e309c6c2cd342dc82f7c..710435ae4b58a7815fd6b2f48a0044172ba08e7d 100644 (file)
@@ -171,7 +171,7 @@ class PluginHost {
        }
 
        function add_command($command, $description, $sender) {
-               $command = "-" . str_replace("-", "_", strtolower($command));
+               $command = str_replace("-", "_", strtolower($command));
 
                $this->commands[$command] = array("description" => $description,
                        "class" => $sender);
@@ -201,7 +201,7 @@ class PluginHost {
 
        function run_commands($args) {
                foreach ($this->get_commands() as $command => $data) {
-                       if (in_array($command, $args)) {
+                       if (isset($args[$command])) {
                                $command = str_replace("-", "", $command);
                                $data["class"]->$command($args);
                        }
index ba4cadbcba9d70527d3f7ad2e404302831376e91..a92b125e40a6fa9b55ad53cc96f56e8d93d287ab 100755 (executable)
 
        init_connection($link);
 
-       $op = $argv;
+       $longopts = array("feeds",
+                       "feedbrowser",
+                       "daemon",
+                       "daemon-loop",
+                       "task:",
+                       "cleanup-tags",
+                       "quiet",
+                       "indexes",
+                       "convert-filters",
+                       "force-update",
+                       "list-plugins",
+                       "help");
+
+       foreach ($pluginhost->get_commands() as $command => $data) {
+               array_push($longopts, $command);
+       }
+
+       $options = getopt("", $longopts);
 
-       if (count($argv) == 0 && !defined('STDIN')) {
+       if (count($options) == 0 && !defined('STDIN')) {
                ?> <html>
                <head>
                <title>Tiny Tiny RSS data update script.</title>
                exit;
        }
 
-       if (count($argv) == 1 || in_array("-help", $op) ) {
+
+       if (count($options) == 0 || isset($options["help"]) ) {
                print "Tiny Tiny RSS data update script.\n\n";
                print "Options:\n";
-               print "  -feeds              - update feeds\n";
-               print "  -feedbrowser        - update feedbrowser\n";
-               print "  -daemon             - start single-process update daemon\n";
-               print "  -cleanup-tags       - perform tags table maintenance\n";
-               print "  -quiet              - don't show messages\n";
-               print "  -indexes            - recreate missing schema indexes\n";
-               print "  -convert-filters    - convert type1 filters to type2\n";
-               print "  -force-update       - force update of all feeds\n";
-               print "  -list-plugins       - list all available plugins\n";
-               print "  -help               - show this help\n";
+               print "  --feeds              - update feeds\n";
+               print "  --feedbrowser        - update feedbrowser\n";
+               print "  --daemon             - start single-process update daemon\n";
+               print "  --task N             - create lockfile using this task id\n";
+               print "  --cleanup-tags       - perform tags table maintenance\n";
+               print "  --quiet              - don't show messages\n";
+               print "  --indexes            - recreate missing schema indexes\n";
+               print "  --convert-filters    - convert type1 filters to type2\n";
+               print "  --force-update       - force update of all feeds\n";
+               print "  --list-plugins       - list all available plugins\n";
+               print "  --help               - show this help\n";
                print "Plugin options:\n";
 
                foreach ($pluginhost->get_commands() as $command => $data) {
-                       printf("  %-19s - %s\n", "$command", $data["description"]);
+                       printf("  --%-19s - %s\n", "$command", $data["description"]);
                }
 
                return;
        }
 
-       define('QUIET', in_array("-quiet", $op));
+       define('QUIET', isset($options['quiet']));
 
-       if (!in_array("-daemon", $op)) {
+       if (!isset($options["daemon"])) {
                $lock_filename = "update.lock";
        } else {
                $lock_filename = "update_daemon.lock";
        }
 
+       if (isset($options["task"])) {
+               _debug("Using task id " . $options["task"]);
+               $lock_filename = $lock_filename . "-task_" . $options["task"];
+       }
+
        $lock_handle = make_lockfile($lock_filename);
        $must_exit = false;
 
                        "Maybe another update process is already running.\n");
        }
 
-       if (in_array("-feeds", $op)) {
+       if (isset($options["force-update"])) {
+               _debug("marking all feeds as needing update...");
+
+               db_query($link, "UPDATE ttrss_feeds SET last_update_started = '1970-01-01',
+                               last_updated = '1970-01-01'");
+       }
+
+       if (isset($options["feeds"])) {
                // Update all feeds needing a update.
                update_daemon_common($link);
 
                $pluginhost->run_hooks($pluginhost::HOOK_UPDATE_TASK, "hook_update_task", $op);
        }
 
-       if (in_array("-feedbrowser", $op)) {
+       if (isset($options["feedbrowser"])) {
                $count = update_feedbrowser_cache($link);
                print "Finished, $count feeds processed.\n";
        }
 
-       if (in_array("-daemon", $op)) {
-               $op = array_diff($op, array("-daemon"));
+       if (isset($options["daemon"])) {
                while (true) {
-                       passthru(PHP_EXECUTABLE . " " . implode(' ', $op) . " -daemon-loop");
+                       passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop");
                        _debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
                        sleep(DAEMON_SLEEP_INTERVAL);
                }
        }
 
-       if (in_array("-daemon-loop", $op)) {
+       if (isset($options["daemon-loop"])) {
                if (!make_stampfile('update_daemon.stamp')) {
                        die("error: unable to create stampfile\n");
                }
 
        }
 
-       if (in_array("-cleanup-tags", $op)) {
+       if (isset($options["cleanup-tags"])) {
                $rc = cleanup_tags($link, 14, 50000);
                _debug("$rc tags deleted.\n");
        }
 
-       if (in_array("-indexes", $op)) {
+       if (isset($options["indexes"])) {
                _debug("PLEASE BACKUP YOUR DATABASE BEFORE PROCEEDING!");
                _debug("Type 'yes' to continue.");
 
                _debug("all done.");
        }
 
-       if (in_array("-convert-filters", $op)) {
+       if (isset($options["convert-filters"])) {
                _debug("WARNING: this will remove all existing type2 filters.");
                _debug("Type 'yes' to continue.");
 
 
        }
 
-       if (in_array("-force-update", $op)) {
-               _debug("marking all feeds as needing update...");
-
-               db_query($link, "UPDATE ttrss_feeds SET last_update_started = '1970-01-01',
-                               last_updated = '1970-01-01'");
-       }
-
-       if (in_array("-list-plugins", $op)) {
+       if (isset($options["list-plugins"])) {
                $tmppluginhost = new PluginHost($link);
                $tmppluginhost->load_all($tmppluginhost::KIND_ALL);
                $enabled = array_map("trim", explode(",", PLUGINS));
 
        }
 
-       $pluginhost->run_commands($op);
+       $pluginhost->run_commands($options);
 
        db_close($link);