]> git.wh0rd.org - tt-rss.git/blobdiff - update.php
another take on inclusion of errorhandler in CLI scripts
[tt-rss.git] / update.php
index e57aef90f2eaecf81e4b2f3298a15d32a88e0594..d8b956942dd92459c28ff89681b02212ae396b44 100755 (executable)
@@ -31,6 +31,7 @@
                        "quiet",
                        "log:",
                        "indexes",
+                       "update-schema",
                        "convert-filters",
                        "force-update",
                        "list-plugins",
@@ -72,6 +73,7 @@
                print "  --quiet              - don't output messages to stdout\n";
                print "  --log FILE           - log messages to FILE\n";
                print "  --indexes            - recreate missing schema indexes\n";
+               print "  --update-schema      - update database schema\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";
                return;
        }
 
+       if (!isset($options['daemon'])) {
+               require_once "errorhandler.php";
+       }
+
+       if (!isset($options['update-schema'])) {
+               $schema_version = get_schema_version($link);
+
+               if ($schema_version != SCHEMA_VERSION) {
+                       die("Schema version is wrong, please upgrade the database.\n");
+               }
+       }
+
        define('QUIET', isset($options['quiet']));
 
        if (isset($options["log"])) {
 
        }
 
+       if (isset($options["update-schema"])) {
+               _debug("checking for updates (" . DB_TYPE . ")...");
+
+               $updater = new DbUpdater($link, DB_TYPE, SCHEMA_VERSION);
+
+               if ($updater->isUpdateRequired()) {
+                       _debug("schema update required, version " . $updater->getSchemaVersion() . " to " . SCHEMA_VERSION);
+                       _debug("WARNING: please backup your database before continuing.");
+                       _debug("Type 'yes' to continue.");
+
+                       if (read_stdin() != 'yes')
+                               exit;
+
+                       for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
+                               _debug("performing update up to version $i...");
+
+                               $result = $updater->performUpdateTo($i);
+
+                               _debug($result ? "OK!" : "FAILED!");
+
+                               if (!$result) return;
+
+                       }
+               } else {
+                       _debug("update not required.");
+               }
+
+       }
+
        if (isset($options["list-plugins"])) {
                $tmppluginhost = new PluginHost($link);
                $tmppluginhost->load_all($tmppluginhost::KIND_ALL);