]> git.wh0rd.org - tt-rss.git/blobdiff - public.php
pngcrush.sh
[tt-rss.git] / public.php
index c2de2185fd0cd6c91861cf5c278ef5c18d6849c8..7aebde78f378c7f1012cf122f2a727b878b9eb1f 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+       set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
+               get_include_path());
+
        /* remove ill effects of magic quotes */
 
        if (get_magic_quotes_gpc()) {
                $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
        }
 
-       $op = $_REQUEST["op"];
-
+       require_once "autoload.php";
+       require_once "sessions.php";
        require_once "functions.php";
-       if ($op != "share") require_once "sessions.php";
-       require_once "modules/backend-rpc.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 (!$link) {
-               if (DB_TYPE == "mysql") {
-                       print mysql_error();
-               }
-               // PG seems to display its own errors just fine by default.
-               return;
+       if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
+               ob_start("ob_gzhandler");
        }
 
-       init_connection($link);
+       $method = $_REQUEST["op"];
 
-       $subop = $_REQUEST["subop"];
-       $mode = $_REQUEST["mode"];
+       $override = PluginHost::getInstance()->lookup_handler("public", $method);
 
-       if ((!$op || $op == "rss" || $op == "dlg") && !$_REQUEST["noxml"]) {
-                       header("Content-Type: application/xml; charset=utf-8");
+       if ($override) {
+               $handler = $override;
        } else {
-                       header("Content-Type: text/plain; charset=utf-8");
+               $handler = new Handler_Public($_REQUEST);
        }
 
-       if (ENABLE_GZIP_OUTPUT) {
-               ob_start("ob_gzhandler");
+       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;
        }
 
-       handle_public_request($link, $op);
-
-       // We close the connection to database.
-       db_close($link);
+       header("Content-Type: text/plain");
+       print error_json(13);
 ?>