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