]> git.wh0rd.org - tt-rss.git/blobdiff - backend.php
modify includes to init session before translations are applied
[tt-rss.git] / backend.php
index 1337db5c2e86cc8eca2d57ba3246cacd4ad0152e..e718f8103ebd639428488fab24f7aaf513197c7a 100644 (file)
@@ -1,6 +1,6 @@
 <?php
-       set_include_path(get_include_path() . PATH_SEPARATOR .
-               dirname(__FILE__) . "/include");
+       set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
+               get_include_path());
 
        /* remove ill effects of magic quotes */
 
@@ -37,9 +37,8 @@
 
        @$csrf_token = $_REQUEST['csrf_token'];
 
-       require_once "functions.php";
        require_once "sessions.php";
-       require_once "sanity_check.php";
+       require_once "functions.php";
        require_once "config.php";
        require_once "db.php";
        require_once "db-prefs.php";
@@ -56,7 +55,7 @@
 
        header("Content-Type: text/plain; charset=utf-8");
 
-       if (ENABLE_GZIP_OUTPUT) {
+       if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
                ob_start("ob_gzhandler");
        }
 
                authenticate_user($link, "admin", null);
        }
 
-       // TODO remove and handle within Handlers
-
-       if (!($_SESSION["uid"] && validate_session($link))) {
-               if ($op == 'pref-feeds' && $method == 'add') {
-                       header("Content-Type: text/html");
-                       login_sequence($link);
-                       render_login_form($link);
-               } else {
-                       header("Content-Type: text/plain");
-                       print json_encode(array("error" => array("code" => 6)));
-               }
-               return;
+       if ($_SESSION["uid"]) {
+               load_user_plugins($link, $_SESSION["uid"]);
        }
 
        $purge_intervals = array(
                1440 => __("Daily"),
                10080 => __("Weekly"));
 
-       $update_methods = array(
-               0   => __("Default"),
-               1   => __("Magpie"),
-               2   => __("SimplePie"),
-               3   => __("Twitter OAuth"));
-
-       if (DEFAULT_UPDATE_METHOD == "1") {
-               $update_methods[0] .= ' (SimplePie)';
-       } else {
-               $update_methods[0] .= ' (Magpie)';
-       }
-
        $access_level_names = array(
                0 => __("User"),
                5 => __("Power User"),
                10 => __("Administrator"));
 
-       $error = sanity_check($link);
+       #$error = sanity_check($link);
 
-       if ($error['code'] != 0 && $op != "logout") {
-               print json_encode(array("error" => $error));
-               return;
-       }
-
-       function __autoload($class) {
-               $file = "classes/".strtolower(basename($class)).".php";
-               if (file_exists($file)) {
-                       require $file;
-               }
-       }
+       #if ($error['code'] != 0 && $op != "logout") {
+       #       print json_encode(array("error" => $error));
+       #       return;
+       #}
 
        $op = str_replace("-", "_", $op);
 
-       if (class_exists($op)) {
-               $handler = new $op($link, $_REQUEST);
+       global $pluginhost;
+       $override = $pluginhost->lookup_handler($op, $method);
+
+       if (class_exists($op) || $override) {
 
-               if ($handler) {
+               if ($override) {
+                       $handler = $override;
+               } else {
+                       $handler = new $op($link, $_REQUEST);
+               }
+
+               if ($handler && implements_interface($handler, 'IHandler')) {
                        if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
                                if ($handler->before($method)) {
                                        if ($method && method_exists($handler, $method)) {
                                                $handler->$method();
+                                       } else {
+                                               if (method_exists($handler, "catchall")) {
+                                                       $handler->catchall($method);
+                                               }
                                        }
                                        $handler->after();
                                        return;
+                               } else {
+                                       header("Content-Type: text/plain");
+                                       print json_encode(array("error" => array("code" => 6)));
+                                       return;
                                }
                        } else {
                                header("Content-Type: text/plain");