]> git.wh0rd.org - tt-rss.git/blame - backend.php
update translations
[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
fb074239 40 require_once "functions.php";
5f0a3741 41 require_once "sessions.php";
657770a0 42 require_once "config.php";
af106b0e
AD
43 require_once "db.php";
44 require_once "db-prefs.php";
657770a0 45
dc56b3b7 46 no_cache_incantation();
8d039718 47
7b26a148 48 startup_gettext();
dc56b3b7 49
7f0acba7
AD
50 $script_started = getmicrotime();
51
009646d2 52 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
7f0acba7 53
5f0a3741 54 if (!init_connection($link)) return;
3f363052
AD
55
56 header("Content-Type: text/plain; charset=utf-8");
262bd8ea 57
6a79e8af 58 if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
bd202c3f
AD
59 ob_start("ob_gzhandler");
60 }
61
9c883208
AD
62 if (SINGLE_USER_MODE) {
63 authenticate_user($link, "admin", null);
64 }
65
de612e7a
AD
66 if ($_SESSION["uid"]) {
67 load_user_plugins($link, $_SESSION["uid"]);
68 }
69
ad815c71 70 $purge_intervals = array(
d1db26aa
AD
71 0 => __("Use default"),
72 -1 => __("Never purge"),
73 5 => __("1 week old"),
74 14 => __("2 weeks old"),
75 31 => __("1 month old"),
76 60 => __("2 months old"),
77 90 => __("3 months old"));
ad815c71
AD
78
79 $update_intervals = array(
ecace165 80 0 => __("Default interval"),
d1db26aa 81 -1 => __("Disable updates"),
1e7cbe16 82 15 => __("Each 15 minutes"),
d1db26aa 83 30 => __("Each 30 minutes"),
505f2f0e
AD
84 60 => __("Hourly"),
85 240 => __("Each 4 hours"),
86 720 => __("Each 12 hours"),
87 1440 => __("Daily"),
88 10080 => __("Weekly"));
89
90 $update_intervals_nodefault = array(
91 -1 => __("Disable updates"),
92 15 => __("Each 15 minutes"),
93 30 => __("Each 30 minutes"),
d1db26aa
AD
94 60 => __("Hourly"),
95 240 => __("Each 4 hours"),
96 720 => __("Each 12 hours"),
97 1440 => __("Daily"),
98 10080 => __("Weekly"));
ad815c71 99
3c5783b7 100 $access_level_names = array(
009646d2 101 0 => __("User"),
a88d37e5 102 5 => __("Power User"),
d1db26aa 103 10 => __("Administrator"));
3c5783b7 104
545ca067 105 #$error = sanity_check($link);
ebb948c2 106
545ca067
AD
107 #if ($error['code'] != 0 && $op != "logout") {
108 # print json_encode(array("error" => $error));
109 # return;
110 #}
023fe037 111
afcfe6ca
AD
112 $op = str_replace("-", "_", $op);
113
8dcb2b47
AD
114 global $pluginhost;
115 $override = $pluginhost->lookup_handler($op, $method);
45004d43 116
8dcb2b47
AD
117 if (class_exists($op) || $override) {
118
119 if ($override) {
120 $handler = $override;
121 } else {
122 $handler = new $op($link, $_REQUEST);
123 }
124
125 if ($handler && implements_interface($handler, 'IHandler')) {
8484ce22
AD
126 if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
127 if ($handler->before($method)) {
128 if ($method && method_exists($handler, $method)) {
129 $handler->$method();
19c73507
AD
130 } else {
131 if (method_exists($handler, "catchall")) {
132 $handler->catchall($method);
133 }
8484ce22
AD
134 }
135 $handler->after();
136 return;
97acbaf1
AD
137 } else {
138 header("Content-Type: text/plain");
139 print json_encode(array("error" => array("code" => 6)));
140 return;
d5112468 141 }
8484ce22
AD
142 } else {
143 header("Content-Type: text/plain");
144 print json_encode(array("error" => array("code" => 6)));
3f363052 145 return;
d5112468
AD
146 }
147 }
148 }
149
5f0a3741
AD
150 header("Content-Type: text/plain");
151 print json_encode(array("error" => array("code" => 7)));
ba7e88e5 152
45004d43 153 // We close the connection to database.
4b3dff6e 154 db_close($link);
1cd17194 155?>