]> git.wh0rd.org - tt-rss.git/blame - api/index.php
more work on singleton-based DB
[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 13 define('TTRSS_SESSION_NAME', 'ttrss_api_sid');
9ce7a554 14 define('NO_SESSION_AUTOSTART', true);
964f1533 15
404e2e36 16 require_once "autoload.php";
4a0500fb
AD
17 require_once "db.php";
18 require_once "db-prefs.php";
19 require_once "functions.php";
964f1533 20 require_once "sessions.php";
378a548c 21
3f009418
AD
22 ini_set("session.gc_maxlifetime", 86400);
23
02cd6de1
AD
24 define('AUTH_DISABLE_OTP', true);
25
6a79e8af
AD
26 if (defined('ENABLE_GZIP_OUTPUT') && ENABLE_GZIP_OUTPUT &&
27 function_exists("ob_gzhandler")) {
28
70543b6a 29 ob_start("ob_gzhandler");
839b0658
AD
30 } else {
31 ob_start();
70543b6a
AD
32 }
33
dbaa4e4a 34 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
378a548c 35
90e71380
AD
36 $input = file_get_contents("php://input");
37
6eaf3193
AD
38 if (defined('_API_DEBUG_HTTP_ENABLED') && _API_DEBUG_HTTP_ENABLED) {
39 // Override $_REQUEST with JSON-encoded data if available
40 // fallback on HTTP parameters
41 if ($input) {
42 $input = json_decode($input, true);
43 if ($input) $_REQUEST = $input;
44 }
45 } else {
46 // Accept JSON only
90e71380 47 $input = json_decode($input, true);
6eaf3193 48 $_REQUEST = $input;
90e71380
AD
49 }
50
3bb7e191
AD
51 if ($_REQUEST["sid"]) {
52 session_id($_REQUEST["sid"]);
5160620c 53 @session_start();
0bb5833b
AD
54 } else if (defined('_API_DEBUG_HTTP_ENABLED')) {
55 @session_start();
3bb7e191
AD
56 }
57
ba68b681 58 if (!init_plugins($link)) return;
378a548c 59
de8260cb 60 $method = strtolower($_REQUEST["op"]);
378a548c 61
de8260cb 62 $handler = new API($link, $_REQUEST);
b792cd70 63
de8260cb
AD
64 if ($handler->before($method)) {
65 if ($method && method_exists($handler, $method)) {
66 $handler->$method();
67 } else if (method_exists($handler, 'index')) {
68 $handler->index($method);
69 }
70 $handler->after();
378a548c
AD
71 }
72
73 db_close($link);
dbaa4e4a 74
839b0658
AD
75 header("Api-Content-Length: " . ob_get_length());
76
77 ob_end_flush();
378a548c 78?>