]> git.wh0rd.org - tt-rss.git/blobdiff - public.php
pngcrush.sh
[tt-rss.git] / public.php
index 2cec82962b786a6f75b544d3b0da52520f9e5fcb..7aebde78f378c7f1012cf122f2a727b878b9eb1f 100644 (file)
@@ -1,5 +1,6 @@
 <?php
-       set_include_path(get_include_path() . PATH_SEPARATOR . "include");
+       set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
+               get_include_path());
 
        /* remove ill effects of magic quotes */
 
                $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
        }
 
-       require_once "functions.php";
+       require_once "autoload.php";
        require_once "sessions.php";
+       require_once "functions.php";
        require_once "sanity_check.php";
        require_once "config.php";
        require_once "db.php";
        require_once "db-prefs.php";
 
-       no_cache_incantation();
-
        startup_gettext();
 
-       $script_started = getmicrotime();
+       $script_started = microtime(true);
 
-       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
+       if (!init_plugins()) return;
 
-       if (!init_connection($link)) return;
-
-       if (ENABLE_GZIP_OUTPUT) {
+       if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
                ob_start("ob_gzhandler");
        }
 
-       function __autoload($class) {
-               $file = "classes/".strtolower(basename($class)).".php";
-               if (file_exists($file)) {
-                       require $file;
-               }
-       }
-
        $method = $_REQUEST["op"];
 
-       $handler = new Public_Handler($link, $_REQUEST);
+       $override = PluginHost::getInstance()->lookup_handler("public", $method);
 
-       if ($handler) {
-               if ($handler->before()) {
-                       if ($method && method_exists($handler, $method)) {
-                               $handler->$method();
-                       } else if (method_exists($handler, 'index')) {
-                               $handler->index();
-                       }
-                       $handler->after();
-                       return;
+       if ($override) {
+               $handler = $override;
+       } else {
+               $handler = new Handler_Public($_REQUEST);
+       }
+
+       if (implements_interface($handler, "IHandler") && $handler->before($method)) {
+               if ($method && method_exists($handler, $method)) {
+                       $handler->$method();
+               } else if (method_exists($handler, 'index')) {
+                       $handler->index();
                }
+               $handler->after();
+               return;
        }
 
        header("Content-Type: text/plain");
-       print json_encode(array("error" => array("code" => 7)));
-
-       // We close the connection to database.
-       db_close($link);
+       print error_json(13);
 ?>