]> git.wh0rd.org - tt-rss.git/blobdiff - public.php
add Public_Handler
[tt-rss.git] / public.php
index 3b0d064b6c093ecc5c6311cc7b42ef65cd00b786..2cec82962b786a6f75b544d3b0da52520f9e5fcb 100644 (file)
                $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
        }
 
-       $op = $_REQUEST["op"];
-
        require_once "functions.php";
-       if ($op != "share") require_once "sessions.php";
+       require_once "sessions.php";
        require_once "sanity_check.php";
        require_once "config.php";
        require_once "db.php";
 
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       if (!$link) {
-               if (DB_TYPE == "mysql") {
-                       print mysql_error();
-               }
-               // PG seems to display its own errors just fine by default.
-               return;
+       if (!init_connection($link)) return;
+
+       if (ENABLE_GZIP_OUTPUT) {
+               ob_start("ob_gzhandler");
        }
 
-       init_connection($link);
+       function __autoload($class) {
+               $file = "classes/".strtolower(basename($class)).".php";
+               if (file_exists($file)) {
+                       require $file;
+               }
+       }
 
-       $method = $_REQUEST["method"];
-       $mode = $_REQUEST["mode"];
+       $method = $_REQUEST["op"];
 
-       if ((!$op || $op == "rss" || $op == "dlg") && !$_REQUEST["noxml"]) {
-                       header("Content-Type: application/xml; charset=utf-8");
-       } else {
-                       header("Content-Type: text/plain; charset=utf-8");
-       }
+       $handler = new Public_Handler($link, $_REQUEST);
 
-       if (ENABLE_GZIP_OUTPUT) {
-               ob_start("ob_gzhandler");
+       if ($handler) {
+               if ($handler->before()) {
+                       if ($method && method_exists($handler, $method)) {
+                               $handler->$method();
+                       } else if (method_exists($handler, 'index')) {
+                               $handler->index();
+                       }
+                       $handler->after();
+                       return;
+               }
        }
 
-       handle_public_request($link, $op);
+       header("Content-Type: text/plain");
+       print json_encode(array("error" => array("code" => 7)));
 
        // We close the connection to database.
        db_close($link);