]> git.wh0rd.org - tt-rss.git/blame - backend.php
_DISABLE_FLOICON -> _ENABLE_FLOICON
[tt-rss.git] / backend.php
CommitLineData
1d3a17c7 1<?php
88e8fb3a
AD
2 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
3 get_include_path());
107d0cf3 4
ce885e21
AD
5 /* remove ill effects of magic quotes */
6
5fa17372 7 if (get_magic_quotes_gpc()) {
c0793f64 8 function stripslashes_deep($value) {
009646d2 9 $value = is_array($value) ?
c0793f64
AD
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);
ce885e21
AD
18 }
19
f9da2388 20 $op = $_REQUEST["op"];
5f0a3741
AD
21 @$method = $_REQUEST['subop'] ? $_REQUEST['subop'] : $_REQUEST["method"];
22
8484ce22
AD
23 if (!$method)
24 $method = 'index';
25 else
26 $method = strtolower($method);
27
5f0a3741
AD
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 }
f9da2388 37
66b042fc 38 @$csrf_token = $_REQUEST['csrf_token'];
8484ce22 39
404e2e36 40 require_once "autoload.php";
5f0a3741 41 require_once "sessions.php";
23419d11 42 require_once "functions.php";
657770a0 43 require_once "config.php";
af106b0e
AD
44 require_once "db.php";
45 require_once "db-prefs.php";
657770a0 46
7b26a148 47 startup_gettext();
dc56b3b7 48
1ebf3b97 49 $script_started = microtime(true);
7f0acba7 50
6322ac79 51 if (!init_plugins()) return;
3f363052 52
7d1a91d5 53 header("Content-Type: text/json; charset=utf-8");
262bd8ea 54
6a79e8af 55 if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
bd202c3f
AD
56 ob_start("ob_gzhandler");
57 }
58
9c883208 59 if (SINGLE_USER_MODE) {
6322ac79 60 authenticate_user( "admin", null);
9c883208
AD
61 }
62
de612e7a 63 if ($_SESSION["uid"]) {
6322ac79 64 if (!validate_session()) {
ccfa9080
AD
65 header("Content-Type: text/json");
66 print json_encode(array("error" => array("code" => 6)));
67 return;
68 }
6322ac79 69 load_user_plugins( $_SESSION["uid"]);
de612e7a
AD
70 }
71
ad815c71 72 $purge_intervals = array(
d1db26aa
AD
73 0 => __("Use default"),
74 -1 => __("Never purge"),
75 5 => __("1 week old"),
76 14 => __("2 weeks old"),
77 31 => __("1 month old"),
78 60 => __("2 months old"),
79 90 => __("3 months old"));
ad815c71
AD
80
81 $update_intervals = array(
ecace165 82 0 => __("Default interval"),
d1db26aa 83 -1 => __("Disable updates"),
1e7cbe16 84 15 => __("Each 15 minutes"),
d1db26aa 85 30 => __("Each 30 minutes"),
505f2f0e
AD
86 60 => __("Hourly"),
87 240 => __("Each 4 hours"),
88 720 => __("Each 12 hours"),
89 1440 => __("Daily"),
90 10080 => __("Weekly"));
91
92 $update_intervals_nodefault = array(
93 -1 => __("Disable updates"),
94 15 => __("Each 15 minutes"),
95 30 => __("Each 30 minutes"),
d1db26aa
AD
96 60 => __("Hourly"),
97 240 => __("Each 4 hours"),
98 720 => __("Each 12 hours"),
99 1440 => __("Daily"),
100 10080 => __("Weekly"));
ad815c71 101
3c5783b7 102 $access_level_names = array(
009646d2 103 0 => __("User"),
a88d37e5 104 5 => __("Power User"),
d1db26aa 105 10 => __("Administrator"));
3c5783b7 106
6322ac79 107 #$error = sanity_check();
ebb948c2 108
545ca067
AD
109 #if ($error['code'] != 0 && $op != "logout") {
110 # print json_encode(array("error" => $error));
111 # return;
112 #}
023fe037 113
afcfe6ca
AD
114 $op = str_replace("-", "_", $op);
115
1ffe3391 116 $override = PluginHost::getInstance()->lookup_handler($op, $method);
45004d43 117
8dcb2b47
AD
118 if (class_exists($op) || $override) {
119
120 if ($override) {
121 $handler = $override;
122 } else {
6322ac79 123 $handler = new $op(Db::get(), $_REQUEST);
8dcb2b47
AD
124 }
125
126 if ($handler && implements_interface($handler, 'IHandler')) {
8484ce22
AD
127 if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
128 if ($handler->before($method)) {
129 if ($method && method_exists($handler, $method)) {
130 $handler->$method();
19c73507
AD
131 } else {
132 if (method_exists($handler, "catchall")) {
133 $handler->catchall($method);
134 }
8484ce22
AD
135 }
136 $handler->after();
137 return;
97acbaf1 138 } else {
7d1a91d5 139 header("Content-Type: text/json");
97acbaf1
AD
140 print json_encode(array("error" => array("code" => 6)));
141 return;
d5112468 142 }
8484ce22 143 } else {
7d1a91d5 144 header("Content-Type: text/json");
8484ce22 145 print json_encode(array("error" => array("code" => 6)));
3f363052 146 return;
d5112468
AD
147 }
148 }
149 }
150
7d1a91d5 151 header("Content-Type: text/json");
5f0a3741 152 print json_encode(array("error" => array("code" => 7)));
ba7e88e5 153
1cd17194 154?>