]> git.wh0rd.org - tt-rss.git/blob - backend.php
remove $link
[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 "autoload.php";
41 require_once "sessions.php";
42 require_once "functions.php";
43 require_once "config.php";
44 require_once "db.php";
45 require_once "db-prefs.php";
46
47 startup_gettext();
48
49 $script_started = microtime(true);
50
51 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
52
53 if (!init_plugins()) return;
54
55 header("Content-Type: text/json; charset=utf-8");
56
57 if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
58 ob_start("ob_gzhandler");
59 }
60
61 if (SINGLE_USER_MODE) {
62 authenticate_user( "admin", null);
63 }
64
65 if ($_SESSION["uid"]) {
66 if (!validate_session()) {
67 header("Content-Type: text/json");
68 print json_encode(array("error" => array("code" => 6)));
69 return;
70 }
71 load_user_plugins( $_SESSION["uid"]);
72 }
73
74 $purge_intervals = array(
75 0 => __("Use default"),
76 -1 => __("Never purge"),
77 5 => __("1 week old"),
78 14 => __("2 weeks old"),
79 31 => __("1 month old"),
80 60 => __("2 months old"),
81 90 => __("3 months old"));
82
83 $update_intervals = array(
84 0 => __("Default interval"),
85 -1 => __("Disable updates"),
86 15 => __("Each 15 minutes"),
87 30 => __("Each 30 minutes"),
88 60 => __("Hourly"),
89 240 => __("Each 4 hours"),
90 720 => __("Each 12 hours"),
91 1440 => __("Daily"),
92 10080 => __("Weekly"));
93
94 $update_intervals_nodefault = array(
95 -1 => __("Disable updates"),
96 15 => __("Each 15 minutes"),
97 30 => __("Each 30 minutes"),
98 60 => __("Hourly"),
99 240 => __("Each 4 hours"),
100 720 => __("Each 12 hours"),
101 1440 => __("Daily"),
102 10080 => __("Weekly"));
103
104 $access_level_names = array(
105 0 => __("User"),
106 5 => __("Power User"),
107 10 => __("Administrator"));
108
109 #$error = sanity_check();
110
111 #if ($error['code'] != 0 && $op != "logout") {
112 # print json_encode(array("error" => $error));
113 # return;
114 #}
115
116 $op = str_replace("-", "_", $op);
117
118 global $pluginhost;
119 $override = $pluginhost->lookup_handler($op, $method);
120
121 if (class_exists($op) || $override) {
122
123 if ($override) {
124 $handler = $override;
125 } else {
126 $handler = new $op(Db::get(), $_REQUEST);
127 }
128
129 if ($handler && implements_interface($handler, 'IHandler')) {
130 if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
131 if ($handler->before($method)) {
132 if ($method && method_exists($handler, $method)) {
133 $handler->$method();
134 } else {
135 if (method_exists($handler, "catchall")) {
136 $handler->catchall($method);
137 }
138 }
139 $handler->after();
140 return;
141 } else {
142 header("Content-Type: text/json");
143 print json_encode(array("error" => array("code" => 6)));
144 return;
145 }
146 } else {
147 header("Content-Type: text/json");
148 print json_encode(array("error" => array("code" => 6)));
149 return;
150 }
151 }
152 }
153
154 header("Content-Type: text/json");
155 print json_encode(array("error" => array("code" => 7)));
156
157 // We close the connection to database.
158 db_close();
159 ?>