tinytinyrss/backend.php

142 lines
3.2 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
get_include_path());
2011-12-11 20:59:25 +01:00
2011-10-04 12:03:16 +02:00
$op = $_REQUEST["op"];
2011-12-13 11:49:11 +01:00
@$method = $_REQUEST['subop'] ? $_REQUEST['subop'] : $_REQUEST["method"];
2011-12-26 09:02:52 +01:00
if (!$method)
$method = 'index';
else
$method = strtolower($method);
2011-12-13 11:49:11 +01:00
/* Public calls compatibility shim */
$public_calls = array("globalUpdateFeeds", "rss", "getUnread", "getProfiles", "share");
2011-12-13 11:49:11 +01:00
if (array_search($op, $public_calls) !== false) {
header("Location: public.php?" . $_SERVER['QUERY_STRING']);
return;
}
2011-10-04 12:03:16 +02:00
@$csrf_token = $_POST['csrf_token'];
2011-12-26 09:02:52 +01:00
2013-04-17 13:36:34 +02:00
require_once "autoload.php";
2011-12-13 11:49:11 +01:00
require_once "sessions.php";
require_once "functions.php";
require_once "config.php";
require_once "db.php";
require_once "db-prefs.php";
2011-03-18 17:25:06 +01:00
startup_gettext();
2007-03-02 12:34:34 +01:00
$script_started = microtime(true);
2007-03-02 11:48:46 +01:00
2013-04-17 14:23:15 +02:00
if (!init_plugins()) return;
2011-12-12 21:20:53 +01:00
header("Content-Type: text/json; charset=utf-8");
2012-03-20 11:45:43 +01:00
if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
2011-03-18 10:55:45 +01:00
ob_start("ob_gzhandler");
}
if (SINGLE_USER_MODE) {
UserHelper::authenticate( "admin", null);
}
if ($_SESSION["uid"]) {
2013-04-17 14:23:15 +02:00
if (!validate_session()) {
2013-04-11 19:39:54 +02:00
header("Content-Type: text/json");
print error_json(6);
2013-04-11 19:39:54 +02:00
return;
}
UserHelper::load_user_plugins($_SESSION["uid"]);
}
$purge_intervals = array(
2007-03-05 09:45:38 +01:00
0 => __("Use default"),
-1 => __("Never purge"),
7 => __("1 week old"),
2007-03-05 09:45:38 +01:00
14 => __("2 weeks old"),
31 => __("1 month old"),
60 => __("2 months old"),
90 => __("3 months old"));
$update_intervals = array(
2008-08-06 09:51:28 +02:00
0 => __("Default interval"),
2007-03-05 09:45:38 +01:00
-1 => __("Disable updates"),
15 => __("15 minutes"),
30 => __("30 minutes"),
60 => __("Hourly"),
240 => __("4 hours"),
720 => __("12 hours"),
1440 => __("Daily"),
10080 => __("Weekly"));
$update_intervals_nodefault = array(
-1 => __("Disable updates"),
15 => __("15 minutes"),
30 => __("30 minutes"),
2007-03-05 09:45:38 +01:00
60 => __("Hourly"),
240 => __("4 hours"),
720 => __("12 hours"),
2007-03-05 09:45:38 +01:00
1440 => __("Daily"),
10080 => __("Weekly"));
$access_level_names = array(
0 => __("User"),
5 => __("Power User"),
2007-03-05 09:45:38 +01:00
10 => __("Administrator"));
2011-12-13 06:29:22 +01:00
$op = str_replace("-", "_", $op);
2013-04-18 10:27:34 +02:00
$override = PluginHost::getInstance()->lookup_handler($op, $method);
if (class_exists($op) || $override) {
if ($override) {
$handler = $override;
} else {
$reflection = new ReflectionClass($op);
$handler = $reflection->newInstanceWithoutConstructor();
}
if ($handler && implements_interface($handler, 'IHandler')) {
$handler->__construct($_REQUEST);
2011-12-26 09:02:52 +01:00
if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
if ($handler->before($method)) {
if ($method && method_exists($handler, $method)) {
$reflection = new ReflectionMethod($handler, $method);
if ($reflection->getNumberOfRequiredParameters() == 0) {
$handler->$method();
} else {
header("Content-Type: text/json");
print error_json(6);
}
2012-12-23 11:52:18 +01:00
} else {
if (method_exists($handler, "catchall")) {
$handler->catchall($method);
}
2011-12-26 09:02:52 +01:00
}
$handler->after();
return;
} else {
header("Content-Type: text/json");
print error_json(6);
return;
2011-12-12 20:32:29 +01:00
}
2011-12-26 09:02:52 +01:00
} else {
header("Content-Type: text/json");
print error_json(6);
2011-12-12 21:20:53 +01:00
return;
2011-12-12 20:32:29 +01:00
}
}
}
header("Content-Type: text/json");
print error_json(13);
2005-08-21 12:13:10 +02:00
?>