]> git.wh0rd.org - tt-rss.git/blobdiff - backend.php
de_DE l10n: Fix typo.
[tt-rss.git] / backend.php
index 9eb3989e4c2311b2837c838e761912d2ad32fe45..84abc97304b83db640e64af02254db18b2efcc7b 100644 (file)
@@ -37,6 +37,7 @@
 
        @$csrf_token = $_REQUEST['csrf_token'];
 
+       require_once "autoload.php";
        require_once "sessions.php";
        require_once "functions.php";
        require_once "config.php";
@@ -47,9 +48,7 @@
 
        $script_started = microtime(true);
 
-       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
-
-       if (!init_connection($link)) return;
+       if (!init_plugins()) return;
 
        header("Content-Type: text/json; charset=utf-8");
 
        }
 
        if (SINGLE_USER_MODE) {
-               authenticate_user($link, "admin", null);
+               authenticate_user( "admin", null);
        }
 
        if ($_SESSION["uid"]) {
-               load_user_plugins($link, $_SESSION["uid"]);
+               if (!validate_session()) {
+                       header("Content-Type: text/json");
+                       print json_encode(array("error" => array("code" => 6)));
+                       return;
+               }
+               load_user_plugins( $_SESSION["uid"]);
        }
 
        $purge_intervals = array(
                5 => __("Power User"),
                10 => __("Administrator"));
 
-       #$error = sanity_check($link);
+       #$error = sanity_check();
 
        #if ($error['code'] != 0 && $op != "logout") {
        #       print json_encode(array("error" => $error));
 
        $op = str_replace("-", "_", $op);
 
-       global $pluginhost;
-       $override = $pluginhost->lookup_handler($op, $method);
+       $override = PluginHost::getInstance()->lookup_handler($op, $method);
 
        if (class_exists($op) || $override) {
 
                if ($override) {
                        $handler = $override;
                } else {
-                       $handler = new $op($link, $_REQUEST);
+                       $handler = new $op($_REQUEST);
                }
 
                if ($handler && implements_interface($handler, 'IHandler')) {
        header("Content-Type: text/json");
        print json_encode(array("error" => array("code" => 7)));
 
-       // We close the connection to database.
-       db_close($link);
 ?>