]> git.wh0rd.org - tt-rss.git/blame - backend.php
rework class system to use subdirectories
[tt-rss.git] / backend.php
CommitLineData
1d3a17c7 1<?php
8484ce22 2 set_include_path(get_include_path() . PATH_SEPARATOR .
f03a795d 3 dirname(__FILE__) . "/include");
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
5f0a3741 66 // TODO remove and handle within Handlers
009646d2 67
5f0a3741 68 if (!($_SESSION["uid"] && validate_session($link))) {
1395083e 69 if ($op == 'pref-feeds' && $method == 'add') {
d0f73380
AD
70 header("Content-Type: text/html");
71 login_sequence($link);
72 render_login_form($link);
73 } else {
74 header("Content-Type: text/plain");
75 print json_encode(array("error" => array("code" => 6)));
76 }
009646d2 77 return;
262bd8ea 78 }
1c7f75ed 79
369dbc19
AD
80 $plugins = new Plugins($link);
81
ad815c71 82 $purge_intervals = array(
d1db26aa
AD
83 0 => __("Use default"),
84 -1 => __("Never purge"),
85 5 => __("1 week old"),
86 14 => __("2 weeks old"),
87 31 => __("1 month old"),
88 60 => __("2 months old"),
89 90 => __("3 months old"));
ad815c71
AD
90
91 $update_intervals = array(
ecace165 92 0 => __("Default interval"),
d1db26aa 93 -1 => __("Disable updates"),
1e7cbe16 94 15 => __("Each 15 minutes"),
d1db26aa 95 30 => __("Each 30 minutes"),
505f2f0e
AD
96 60 => __("Hourly"),
97 240 => __("Each 4 hours"),
98 720 => __("Each 12 hours"),
99 1440 => __("Daily"),
100 10080 => __("Weekly"));
101
102 $update_intervals_nodefault = array(
103 -1 => __("Disable updates"),
104 15 => __("Each 15 minutes"),
105 30 => __("Each 30 minutes"),
d1db26aa
AD
106 60 => __("Hourly"),
107 240 => __("Each 4 hours"),
108 720 => __("Each 12 hours"),
109 1440 => __("Daily"),
110 10080 => __("Weekly"));
ad815c71 111
16211ddb 112 $update_methods = array(
ecace165 113 0 => __("Default"),
0dd9c0cf 114 1 => __("Magpie"),
009646d2 115 2 => __("SimplePie"),
b3009bcd 116 3 => __("Twitter OAuth"));
16211ddb 117
78a5c296 118 if (DEFAULT_UPDATE_METHOD == "1") {
16211ddb
AD
119 $update_methods[0] .= ' (SimplePie)';
120 } else {
121 $update_methods[0] .= ' (Magpie)';
122 }
123
3c5783b7 124 $access_level_names = array(
009646d2 125 0 => __("User"),
a88d37e5 126 5 => __("Power User"),
d1db26aa 127 10 => __("Administrator"));
3c5783b7 128
545ca067 129 #$error = sanity_check($link);
ebb948c2 130
545ca067
AD
131 #if ($error['code'] != 0 && $op != "logout") {
132 # print json_encode(array("error" => $error));
133 # return;
134 #}
023fe037 135
afcfe6ca
AD
136 $op = str_replace("-", "_", $op);
137
d5112468
AD
138 if (class_exists($op)) {
139 $handler = new $op($link, $_REQUEST);
45004d43 140
143d1b31 141 if ($handler && is_subclass_of($handler, 'Handler')) {
8484ce22
AD
142 if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
143 if ($handler->before($method)) {
144 if ($method && method_exists($handler, $method)) {
145 $handler->$method();
146 }
147 $handler->after();
148 return;
d5112468 149 }
8484ce22
AD
150 } else {
151 header("Content-Type: text/plain");
152 print json_encode(array("error" => array("code" => 6)));
3f363052 153 return;
d5112468
AD
154 }
155 }
156 }
157
5f0a3741
AD
158 header("Content-Type: text/plain");
159 print json_encode(array("error" => array("code" => 7)));
ba7e88e5 160
45004d43 161 // We close the connection to database.
4b3dff6e 162 db_close($link);
1cd17194 163?>