]> git.wh0rd.org - tt-rss.git/blame - backend.php
fix import_export plugin for open_basedir; add missing closing form tags to import_ex...
[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
5f0a3741 40 require_once "sessions.php";
23419d11 41 require_once "functions.php";
657770a0 42 require_once "config.php";
af106b0e
AD
43 require_once "db.php";
44 require_once "db-prefs.php";
657770a0 45
7b26a148 46 startup_gettext();
dc56b3b7 47
1ebf3b97 48 $script_started = microtime(true);
7f0acba7 49
009646d2 50 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
7f0acba7 51
5f0a3741 52 if (!init_connection($link)) return;
3f363052 53
7d1a91d5 54 header("Content-Type: text/json; charset=utf-8");
262bd8ea 55
6a79e8af 56 if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
bd202c3f
AD
57 ob_start("ob_gzhandler");
58 }
59
9c883208
AD
60 if (SINGLE_USER_MODE) {
61 authenticate_user($link, "admin", null);
62 }
63
de612e7a
AD
64 if ($_SESSION["uid"]) {
65 load_user_plugins($link, $_SESSION["uid"]);
66 }
67
ad815c71 68 $purge_intervals = array(
d1db26aa
AD
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"));
ad815c71
AD
76
77 $update_intervals = array(
ecace165 78 0 => __("Default interval"),
d1db26aa 79 -1 => __("Disable updates"),
1e7cbe16 80 15 => __("Each 15 minutes"),
d1db26aa 81 30 => __("Each 30 minutes"),
505f2f0e
AD
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"),
d1db26aa
AD
92 60 => __("Hourly"),
93 240 => __("Each 4 hours"),
94 720 => __("Each 12 hours"),
95 1440 => __("Daily"),
96 10080 => __("Weekly"));
ad815c71 97
3c5783b7 98 $access_level_names = array(
009646d2 99 0 => __("User"),
a88d37e5 100 5 => __("Power User"),
d1db26aa 101 10 => __("Administrator"));
3c5783b7 102
545ca067 103 #$error = sanity_check($link);
ebb948c2 104
545ca067
AD
105 #if ($error['code'] != 0 && $op != "logout") {
106 # print json_encode(array("error" => $error));
107 # return;
108 #}
023fe037 109
afcfe6ca
AD
110 $op = str_replace("-", "_", $op);
111
8dcb2b47
AD
112 global $pluginhost;
113 $override = $pluginhost->lookup_handler($op, $method);
45004d43 114
8dcb2b47
AD
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')) {
8484ce22
AD
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();
19c73507
AD
128 } else {
129 if (method_exists($handler, "catchall")) {
130 $handler->catchall($method);
131 }
8484ce22
AD
132 }
133 $handler->after();
134 return;
97acbaf1 135 } else {
7d1a91d5 136 header("Content-Type: text/json");
97acbaf1
AD
137 print json_encode(array("error" => array("code" => 6)));
138 return;
d5112468 139 }
8484ce22 140 } else {
7d1a91d5 141 header("Content-Type: text/json");
8484ce22 142 print json_encode(array("error" => array("code" => 6)));
3f363052 143 return;
d5112468
AD
144 }
145 }
146 }
147
7d1a91d5 148 header("Content-Type: text/json");
5f0a3741 149 print json_encode(array("error" => array("code" => 7)));
ba7e88e5 150
45004d43 151 // We close the connection to database.
4b3dff6e 152 db_close($link);
1cd17194 153?>