]> git.wh0rd.org - tt-rss.git/blame - backend.php
bump default for generated feed article count to 100
[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
ad815c71 80 $purge_intervals = array(
d1db26aa
AD
81 0 => __("Use default"),
82 -1 => __("Never purge"),
83 5 => __("1 week old"),
84 14 => __("2 weeks old"),
85 31 => __("1 month old"),
86 60 => __("2 months old"),
87 90 => __("3 months old"));
ad815c71
AD
88
89 $update_intervals = array(
ecace165 90 0 => __("Default interval"),
d1db26aa 91 -1 => __("Disable updates"),
1e7cbe16 92 15 => __("Each 15 minutes"),
d1db26aa 93 30 => __("Each 30 minutes"),
505f2f0e
AD
94 60 => __("Hourly"),
95 240 => __("Each 4 hours"),
96 720 => __("Each 12 hours"),
97 1440 => __("Daily"),
98 10080 => __("Weekly"));
99
100 $update_intervals_nodefault = array(
101 -1 => __("Disable updates"),
102 15 => __("Each 15 minutes"),
103 30 => __("Each 30 minutes"),
d1db26aa
AD
104 60 => __("Hourly"),
105 240 => __("Each 4 hours"),
106 720 => __("Each 12 hours"),
107 1440 => __("Daily"),
108 10080 => __("Weekly"));
ad815c71 109
16211ddb 110 $update_methods = array(
ecace165 111 0 => __("Default"),
0dd9c0cf 112 1 => __("Magpie"),
304aadb9 113 2 => __("SimplePie"));
16211ddb 114
78a5c296 115 if (DEFAULT_UPDATE_METHOD == "1") {
16211ddb
AD
116 $update_methods[0] .= ' (SimplePie)';
117 } else {
118 $update_methods[0] .= ' (Magpie)';
119 }
120
3c5783b7 121 $access_level_names = array(
009646d2 122 0 => __("User"),
a88d37e5 123 5 => __("Power User"),
d1db26aa 124 10 => __("Administrator"));
3c5783b7 125
545ca067 126 #$error = sanity_check($link);
ebb948c2 127
545ca067
AD
128 #if ($error['code'] != 0 && $op != "logout") {
129 # print json_encode(array("error" => $error));
130 # return;
131 #}
023fe037 132
afcfe6ca
AD
133 $op = str_replace("-", "_", $op);
134
d5112468
AD
135 if (class_exists($op)) {
136 $handler = new $op($link, $_REQUEST);
45004d43 137
143d1b31 138 if ($handler && is_subclass_of($handler, 'Handler')) {
8484ce22
AD
139 if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
140 if ($handler->before($method)) {
141 if ($method && method_exists($handler, $method)) {
142 $handler->$method();
143 }
144 $handler->after();
145 return;
d5112468 146 }
8484ce22
AD
147 } else {
148 header("Content-Type: text/plain");
149 print json_encode(array("error" => array("code" => 6)));
3f363052 150 return;
d5112468
AD
151 }
152 }
153 }
154
5f0a3741
AD
155 header("Content-Type: text/plain");
156 print json_encode(array("error" => array("code" => 7)));
ba7e88e5 157
45004d43 158 // We close the connection to database.
4b3dff6e 159 db_close($link);
1cd17194 160?>