You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.8 KiB
PHP
81 lines
1.8 KiB
PHP
<?php
|
|
error_reporting(E_ERROR | E_PARSE);
|
|
|
|
set_include_path(__DIR__ . PATH_SEPARATOR .
|
|
dirname(__DIR__) . PATH_SEPARATOR .
|
|
dirname(__DIR__) . "/include" . PATH_SEPARATOR .
|
|
get_include_path());
|
|
|
|
chdir("..");
|
|
|
|
define('TTRSS_SESSION_NAME', 'ttrss_api_sid');
|
|
define('NO_SESSION_AUTOSTART', true);
|
|
|
|
require_once "autoload.php";
|
|
require_once "db-prefs.php";
|
|
require_once "functions.php";
|
|
require_once "sessions.php";
|
|
|
|
ini_set('session.use_cookies', "0");
|
|
ini_set("session.gc_maxlifetime", "86400");
|
|
|
|
ob_start();
|
|
|
|
$input = file_get_contents("php://input");
|
|
|
|
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
|
|
$input = json_decode((string)$input, true);
|
|
$_REQUEST = $input;
|
|
}
|
|
|
|
if (!empty($_REQUEST["sid"])) {
|
|
session_id($_REQUEST["sid"]);
|
|
@session_start();
|
|
} else if (defined('_API_DEBUG_HTTP_ENABLED')) {
|
|
@session_start();
|
|
}
|
|
|
|
startup_gettext();
|
|
|
|
if (!init_plugins()) return;
|
|
|
|
if (!empty($_SESSION["uid"])) {
|
|
if (!\Sessions\validate_session()) {
|
|
header("Content-Type: text/json");
|
|
|
|
print json_encode(array("seq" => -1,
|
|
"status" => 1,
|
|
"content" => array("error" => "NOT_LOGGED_IN")));
|
|
|
|
return;
|
|
}
|
|
|
|
UserHelper::load_user_plugins($_SESSION["uid"]);
|
|
}
|
|
|
|
$method = strtolower($_REQUEST["op"]);
|
|
|
|
$handler = new API($_REQUEST);
|
|
|
|
if ($handler->before($method)) {
|
|
if ($method && method_exists($handler, $method)) {
|
|
$handler->$method();
|
|
} else /* if (method_exists($handler, 'index')) */ {
|
|
$handler->index($method);
|
|
}
|
|
$handler->after();
|
|
}
|
|
|
|
header("Api-Content-Length: " . ob_get_length());
|
|
|
|
ob_end_flush();
|
|
|