api: remove unneeded stuff, add special header for android httpurlconnection which seems to be retarded

This commit is contained in:
Andrew Dolgov 2012-09-19 15:54:55 +04:00
parent 964f153371
commit 839b065860
2 changed files with 6 additions and 6 deletions

View File

@ -23,15 +23,12 @@
function_exists("ob_gzhandler")) {
ob_start("ob_gzhandler");
} else {
ob_start();
}
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
$session_expire = SESSION_EXPIRE_TIME; //seconds
$session_name = (!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid_api" : TTRSS_SESSION_NAME . "_api";
session_name($session_name);
$input = file_get_contents("php://input");
if (defined('_API_DEBUG_HTTP_ENABLED') && _API_DEBUG_HTTP_ENABLED) {
@ -70,4 +67,7 @@
db_close($link);
header("Api-Content-Length: " . ob_get_length());
ob_end_flush();
?>

View File

@ -11,6 +11,7 @@ class API extends Handler {
function before($method) {
if (parent::before($method)) {
header("Content-Type: text/plain");
if (!$_SESSION["uid"] && $method != "login" && $method != "isloggedin") {
print $this->wrap(self::STATUS_ERR, array("error" => 'NOT_LOGGED_IN'));
@ -24,7 +25,6 @@ class API extends Handler {
$this->seq = (int) $_REQUEST['seq'];
header("Content-Type: text/plain");
return true;
}
return false;