]> git.wh0rd.org - tt-rss.git/blame - api/index.php
since dojo dropdowns won't work in article content because of html escaping trick...
[tt-rss.git] / api / index.php
CommitLineData
378a548c 1<?php
378a548c
AD
2 error_reporting(E_ERROR | E_PARSE);
3
4 require_once "../config.php";
dbaa4e4a 5
88e8fb3a 6 set_include_path(dirname(__FILE__) . PATH_SEPARATOR .
4a0500fb 7 dirname(dirname(__FILE__)) . PATH_SEPARATOR .
88e8fb3a
AD
8 dirname(dirname(__FILE__)) . "/include" . PATH_SEPARATOR .
9 get_include_path());
4a0500fb 10
f1d65e50 11 chdir("..");
de8260cb 12
964f1533
AD
13 define('TTRSS_SESSION_NAME', 'ttrss_api_sid');
14
4a0500fb
AD
15 require_once "db.php";
16 require_once "db-prefs.php";
17 require_once "functions.php";
964f1533 18 require_once "sessions.php";
378a548c 19
3f009418
AD
20 ini_set("session.gc_maxlifetime", 86400);
21
02cd6de1
AD
22 define('AUTH_DISABLE_OTP', true);
23
6a79e8af
AD
24 if (defined('ENABLE_GZIP_OUTPUT') && ENABLE_GZIP_OUTPUT &&
25 function_exists("ob_gzhandler")) {
26
70543b6a 27 ob_start("ob_gzhandler");
839b0658
AD
28 } else {
29 ob_start();
70543b6a
AD
30 }
31
dbaa4e4a 32 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
378a548c 33
90e71380
AD
34 $input = file_get_contents("php://input");
35
6eaf3193
AD
36 if (defined('_API_DEBUG_HTTP_ENABLED') && _API_DEBUG_HTTP_ENABLED) {
37 // Override $_REQUEST with JSON-encoded data if available
38 // fallback on HTTP parameters
39 if ($input) {
40 $input = json_decode($input, true);
41 if ($input) $_REQUEST = $input;
42 }
43 } else {
44 // Accept JSON only
90e71380 45 $input = json_decode($input, true);
6eaf3193 46 $_REQUEST = $input;
90e71380
AD
47 }
48
3bb7e191
AD
49 if ($_REQUEST["sid"]) {
50 session_id($_REQUEST["sid"]);
5160620c 51 @session_start();
3bb7e191
AD
52 }
53
de8260cb 54 if (!init_connection($link)) return;
378a548c 55
de8260cb 56 $method = strtolower($_REQUEST["op"]);
378a548c 57
de8260cb 58 $handler = new API($link, $_REQUEST);
b792cd70 59
de8260cb
AD
60 if ($handler->before($method)) {
61 if ($method && method_exists($handler, $method)) {
62 $handler->$method();
63 } else if (method_exists($handler, 'index')) {
64 $handler->index($method);
65 }
66 $handler->after();
378a548c
AD
67 }
68
69 db_close($link);
dbaa4e4a 70
839b0658
AD
71 header("Api-Content-Length: " . ob_get_length());
72
73 ob_end_flush();
378a548c 74?>