]> git.wh0rd.org - tt-rss.git/blob - backend.php
Merge branch 'master' of https://github.com/gothfox/Tiny-Tiny-RSS.git
[tt-rss.git] / backend.php
1 <?php
2 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
3 get_include_path());
4
5 /* remove ill effects of magic quotes */
6
7 if (get_magic_quotes_gpc()) {
8 function stripslashes_deep($value) {
9 $value = is_array($value) ?
10 array_map('stripslashes_deep', $value) : stripslashes($value);
11 return $value;
12 }
13
14 $_POST = array_map('stripslashes_deep', $_POST);
15 $_GET = array_map('stripslashes_deep', $_GET);
16 $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
17 $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
18 }
19
20 $op = $_REQUEST["op"];
21 @$method = $_REQUEST['subop'] ? $_REQUEST['subop'] : $_REQUEST["method"];
22
23 if (!$method)
24 $method = 'index';
25 else
26 $method = strtolower($method);
27
28 /* Public calls compatibility shim */
29
30 $public_calls = array("globalUpdateFeeds", "rss", "getUnread", "getProfiles", "share",
31 "fbexport", "logout", "pubsub");
32
33 if (array_search($op, $public_calls) !== false) {
34 header("Location: public.php?" . $_SERVER['QUERY_STRING']);
35 return;
36 }
37
38 @$csrf_token = $_REQUEST['csrf_token'];
39
40 require_once "sessions.php";
41 require_once "functions.php";
42 require_once "config.php";
43 require_once "db.php";
44 require_once "db-prefs.php";
45
46 startup_gettext();
47
48 $script_started = microtime(true);
49
50 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
51
52 if (!init_connection($link)) return;
53
54 header("Content-Type: text/json; charset=utf-8");
55
56 if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
57 ob_start("ob_gzhandler");
58 }
59
60 if (SINGLE_USER_MODE) {
61 authenticate_user($link, "admin", null);
62 }
63
64 if ($_SESSION["uid"]) {
65 load_user_plugins($link, $_SESSION["uid"]);
66 }
67
68 $purge_intervals = array(
69 0 => __("Use default"),
70 -1 => __("Never purge"),
71 5 => __("1 week old"),
72 14 => __("2 weeks old"),
73 31 => __("1 month old"),
74 60 => __("2 months old"),
75 90 => __("3 months old"));
76
77 $update_intervals = array(
78 0 => __("Default interval"),
79 -1 => __("Disable updates"),
80 15 => __("Each 15 minutes"),
81 30 => __("Each 30 minutes"),
82 60 => __("Hourly"),
83 240 => __("Each 4 hours"),
84 720 => __("Each 12 hours"),
85 1440 => __("Daily"),
86 10080 => __("Weekly"));
87
88 $update_intervals_nodefault = array(
89 -1 => __("Disable updates"),
90 15 => __("Each 15 minutes"),
91 30 => __("Each 30 minutes"),
92 60 => __("Hourly"),
93 240 => __("Each 4 hours"),
94 720 => __("Each 12 hours"),
95 1440 => __("Daily"),
96 10080 => __("Weekly"));
97
98 $access_level_names = array(
99 0 => __("User"),
100 5 => __("Power User"),
101 10 => __("Administrator"));
102
103 #$error = sanity_check($link);
104
105 #if ($error['code'] != 0 && $op != "logout") {
106 # print json_encode(array("error" => $error));
107 # return;
108 #}
109
110 $op = str_replace("-", "_", $op);
111
112 global $pluginhost;
113 $override = $pluginhost->lookup_handler($op, $method);
114
115 if (class_exists($op) || $override) {
116
117 if ($override) {
118 $handler = $override;
119 } else {
120 $handler = new $op($link, $_REQUEST);
121 }
122
123 if ($handler && implements_interface($handler, 'IHandler')) {
124 if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
125 if ($handler->before($method)) {
126 if ($method && method_exists($handler, $method)) {
127 $handler->$method();
128 } else {
129 if (method_exists($handler, "catchall")) {
130 $handler->catchall($method);
131 }
132 }
133 $handler->after();
134 return;
135 } else {
136 header("Content-Type: text/json");
137 print json_encode(array("error" => array("code" => 6)));
138 return;
139 }
140 } else {
141 header("Content-Type: text/json");
142 print json_encode(array("error" => array("code" => 6)));
143 return;
144 }
145 }
146 }
147
148 header("Content-Type: text/json");
149 print json_encode(array("error" => array("code" => 7)));
150
151 // We close the connection to database.
152 db_close($link);
153 ?>