2009-12-16 09:50:32 +00:00
|
|
|
<?php
|
|
|
|
error_reporting(E_ERROR | E_PARSE);
|
|
|
|
|
|
|
|
require_once "../config.php";
|
2011-04-12 15:33:12 +00:00
|
|
|
|
2012-12-09 09:41:22 +00:00
|
|
|
set_include_path(dirname(__FILE__) . PATH_SEPARATOR .
|
2011-12-11 20:13:14 +00:00
|
|
|
dirname(dirname(__FILE__)) . PATH_SEPARATOR .
|
2012-12-09 09:41:22 +00:00
|
|
|
dirname(dirname(__FILE__)) . "/include" . PATH_SEPARATOR .
|
|
|
|
get_include_path());
|
2011-12-11 20:13:14 +00:00
|
|
|
|
2012-08-16 14:33:08 +00:00
|
|
|
chdir("..");
|
2011-12-13 11:40:42 +00:00
|
|
|
|
2012-09-19 08:45:01 +00:00
|
|
|
define('TTRSS_SESSION_NAME', 'ttrss_api_sid');
|
2013-04-04 11:33:14 +00:00
|
|
|
define('NO_SESSION_AUTOSTART', true);
|
2012-09-19 08:45:01 +00:00
|
|
|
|
2013-04-17 11:36:34 +00:00
|
|
|
require_once "autoload.php";
|
2011-12-11 20:13:14 +00:00
|
|
|
require_once "db.php";
|
|
|
|
require_once "db-prefs.php";
|
|
|
|
require_once "functions.php";
|
2012-09-19 08:45:01 +00:00
|
|
|
require_once "sessions.php";
|
2009-12-16 09:50:32 +00:00
|
|
|
|
2013-03-28 05:48:14 +00:00
|
|
|
ini_set("session.gc_maxlifetime", 86400);
|
|
|
|
|
2012-09-03 18:32:24 +00:00
|
|
|
define('AUTH_DISABLE_OTP', true);
|
|
|
|
|
2012-03-20 10:45:43 +00:00
|
|
|
if (defined('ENABLE_GZIP_OUTPUT') && ENABLE_GZIP_OUTPUT &&
|
|
|
|
function_exists("ob_gzhandler")) {
|
|
|
|
|
2010-10-25 09:31:37 +00:00
|
|
|
ob_start("ob_gzhandler");
|
2012-09-19 11:54:55 +00:00
|
|
|
} else {
|
|
|
|
ob_start();
|
2010-10-25 09:31:37 +00:00
|
|
|
}
|
|
|
|
|
2011-04-14 17:22:55 +00:00
|
|
|
$input = file_get_contents("php://input");
|
|
|
|
|
2012-08-17 11:16:13 +00:00
|
|
|
if (defined('_API_DEBUG_HTTP_ENABLED') && _API_DEBUG_HTTP_ENABLED) {
|
|
|
|
// Override $_REQUEST with JSON-encoded data if available
|
|
|
|
// fallback on HTTP parameters
|
|
|
|
if ($input) {
|
|
|
|
$input = json_decode($input, true);
|
|
|
|
if ($input) $_REQUEST = $input;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Accept JSON only
|
2011-04-14 17:22:55 +00:00
|
|
|
$input = json_decode($input, true);
|
2012-08-17 11:16:13 +00:00
|
|
|
$_REQUEST = $input;
|
2011-04-14 17:22:55 +00:00
|
|
|
}
|
|
|
|
|
2009-12-16 13:40:15 +00:00
|
|
|
if ($_REQUEST["sid"]) {
|
|
|
|
session_id($_REQUEST["sid"]);
|
2013-03-28 04:06:21 +00:00
|
|
|
@session_start();
|
2013-03-28 07:04:15 +00:00
|
|
|
} else if (defined('_API_DEBUG_HTTP_ENABLED')) {
|
|
|
|
@session_start();
|
2009-12-16 13:40:15 +00:00
|
|
|
}
|
|
|
|
|
2013-04-17 14:58:30 +00:00
|
|
|
if (!init_plugins()) return;
|
2009-12-16 09:50:32 +00:00
|
|
|
|
2011-12-13 11:40:42 +00:00
|
|
|
$method = strtolower($_REQUEST["op"]);
|
2009-12-16 09:50:32 +00:00
|
|
|
|
2013-05-07 07:35:10 +00:00
|
|
|
$handler = new API($_REQUEST);
|
2009-12-17 10:31:12 +00:00
|
|
|
|
2011-12-13 11:40:42 +00:00
|
|
|
if ($handler->before($method)) {
|
|
|
|
if ($method && method_exists($handler, $method)) {
|
|
|
|
$handler->$method();
|
|
|
|
} else if (method_exists($handler, 'index')) {
|
|
|
|
$handler->index($method);
|
|
|
|
}
|
|
|
|
$handler->after();
|
2009-12-16 09:50:32 +00:00
|
|
|
}
|
|
|
|
|
2012-09-19 11:54:55 +00:00
|
|
|
header("Api-Content-Length: " . ob_get_length());
|
|
|
|
|
|
|
|
ob_end_flush();
|
2009-12-16 09:50:32 +00:00
|
|
|
?>
|