2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2011-12-11 20:59:25 +01:00
|
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . "include");
|
|
|
|
|
2007-05-19 15:47:37 +02:00
|
|
|
/* remove ill effects of magic quotes */
|
|
|
|
|
2010-09-07 11:22:10 +02:00
|
|
|
if (get_magic_quotes_gpc()) {
|
2010-09-04 09:59:33 +02:00
|
|
|
function stripslashes_deep($value) {
|
2011-03-18 10:46:22 +01:00
|
|
|
$value = is_array($value) ?
|
2010-09-04 09:59:33 +02: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 15:47:37 +02:00
|
|
|
}
|
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
function __autoload($class) {
|
|
|
|
$file = "classes/".strtolower(basename($class)).".php";
|
|
|
|
if (file_exists($file)) {
|
|
|
|
require $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-04 12:03:16 +02:00
|
|
|
$op = $_REQUEST["op"];
|
|
|
|
|
2010-11-10 11:14:44 +01:00
|
|
|
require_once "functions.php";
|
2011-10-04 12:03:16 +02:00
|
|
|
if ($op != "share") require_once "sessions.php";
|
2006-03-27 18:08:51 +02:00
|
|
|
require_once "sanity_check.php";
|
|
|
|
require_once "config.php";
|
2006-03-31 07:18:55 +02:00
|
|
|
require_once "db.php";
|
|
|
|
require_once "db-prefs.php";
|
2006-03-27 18:08:51 +02:00
|
|
|
|
2007-03-02 12:34:34 +01:00
|
|
|
no_cache_incantation();
|
2007-05-19 06:46:29 +02:00
|
|
|
|
2011-03-18 17:25:06 +01:00
|
|
|
startup_gettext();
|
2007-03-02 12:34:34 +01:00
|
|
|
|
2007-03-02 11:48:46 +01:00
|
|
|
$script_started = getmicrotime();
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
2007-03-02 11:48:46 +01:00
|
|
|
|
|
|
|
if (!$link) {
|
|
|
|
if (DB_TYPE == "mysql") {
|
|
|
|
print mysql_error();
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
// PG seems to display its own errors just fine by default.
|
2007-03-02 11:48:46 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-11-10 06:29:19 +01:00
|
|
|
init_connection($link);
|
2007-03-02 11:48:46 +01:00
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
$method = strtolower($_REQUEST["method"]);
|
2008-12-16 10:24:48 +01:00
|
|
|
$mode = $_REQUEST["mode"];
|
2007-03-02 11:48:46 +01:00
|
|
|
|
2011-12-12 21:20:53 +01:00
|
|
|
/* if ((!$op || $op == "rss" || $op == "dlg") && !$_REQUEST["noxml"]) {
|
2011-03-18 17:12:38 +01:00
|
|
|
header("Content-Type: application/xml; charset=utf-8");
|
|
|
|
} else {
|
2007-08-23 11:37:39 +02:00
|
|
|
header("Content-Type: text/plain; charset=utf-8");
|
2011-12-12 21:20:53 +01:00
|
|
|
} */
|
|
|
|
|
|
|
|
header("Content-Type: text/plain; charset=utf-8");
|
2005-11-19 15:46:23 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (ENABLE_GZIP_OUTPUT) {
|
|
|
|
ob_start("ob_gzhandler");
|
|
|
|
}
|
|
|
|
|
2009-10-27 13:27:09 +01:00
|
|
|
if (SINGLE_USER_MODE) {
|
|
|
|
authenticate_user($link, "admin", null);
|
|
|
|
}
|
|
|
|
|
2011-11-15 08:40:57 +01:00
|
|
|
$public_calls = array("globalUpdateFeeds", "rss", "getUnread", "getProfiles", "share",
|
|
|
|
"fbexport", "logout", "pubsub");
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-11-15 08:40:57 +01:00
|
|
|
if (array_search($op, $public_calls) !== false) {
|
|
|
|
|
|
|
|
handle_public_request($link, $op);
|
|
|
|
return;
|
|
|
|
|
|
|
|
} else if (!($_SESSION["uid"] && validate_session($link))) {
|
2011-12-12 19:46:25 +01:00
|
|
|
if ($op == 'pref-feeds' && $_REQUEST['method'] == 'add') {
|
2011-06-14 12:19:47 +02:00
|
|
|
header("Content-Type: text/html");
|
|
|
|
login_sequence($link);
|
|
|
|
render_login_form($link);
|
|
|
|
} else {
|
|
|
|
header("Content-Type: text/plain");
|
|
|
|
print json_encode(array("error" => array("code" => 6)));
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
return;
|
2005-11-19 15:46:23 +01:00
|
|
|
}
|
2005-11-18 07:04:32 +01:00
|
|
|
|
2006-03-20 15:30:51 +01:00
|
|
|
$purge_intervals = array(
|
2007-03-05 09:45:38 +01: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 15:30:51 +01:00
|
|
|
|
|
|
|
$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"),
|
2007-06-01 02:55:53 +02:00
|
|
|
15 => __("Each 15 minutes"),
|
2007-03-05 09:45:38 +01:00
|
|
|
30 => __("Each 30 minutes"),
|
2010-01-20 11:20:20 +01:00
|
|
|
60 => __("Hourly"),
|
|
|
|
240 => __("Each 4 hours"),
|
|
|
|
720 => __("Each 12 hours"),
|
|
|
|
1440 => __("Daily"),
|
|
|
|
10080 => __("Weekly"));
|
|
|
|
|
|
|
|
$update_intervals_nodefault = array(
|
|
|
|
-1 => __("Disable updates"),
|
|
|
|
15 => __("Each 15 minutes"),
|
|
|
|
30 => __("Each 30 minutes"),
|
2007-03-05 09:45:38 +01:00
|
|
|
60 => __("Hourly"),
|
|
|
|
240 => __("Each 4 hours"),
|
|
|
|
720 => __("Each 12 hours"),
|
|
|
|
1440 => __("Daily"),
|
|
|
|
10080 => __("Weekly"));
|
2006-03-20 15:30:51 +01:00
|
|
|
|
2008-01-25 18:46:01 +01:00
|
|
|
$update_methods = array(
|
2008-08-06 09:51:28 +02:00
|
|
|
0 => __("Default"),
|
2008-01-25 17:42:09 +01:00
|
|
|
1 => __("Magpie"),
|
2011-03-18 10:46:22 +01:00
|
|
|
2 => __("SimplePie"),
|
2010-11-22 15:03:31 +01:00
|
|
|
3 => __("Twitter OAuth"));
|
2008-01-25 18:46:01 +01:00
|
|
|
|
2010-06-30 10:57:11 +02:00
|
|
|
if (DEFAULT_UPDATE_METHOD == "1") {
|
2008-01-25 18:46:01 +01:00
|
|
|
$update_methods[0] .= ' (SimplePie)';
|
|
|
|
} else {
|
|
|
|
$update_methods[0] .= ' (Magpie)';
|
|
|
|
}
|
|
|
|
|
2006-05-20 16:26:00 +02:00
|
|
|
$access_level_names = array(
|
2011-03-18 10:46:22 +01:00
|
|
|
0 => __("User"),
|
2008-04-04 05:46:51 +02:00
|
|
|
5 => __("Power User"),
|
2007-03-05 09:45:38 +01:00
|
|
|
10 => __("Administrator"));
|
2006-05-20 16:26:00 +02:00
|
|
|
|
2011-03-18 15:39:23 +01:00
|
|
|
$error = sanity_check($link);
|
|
|
|
|
2011-04-20 09:46:16 +02:00
|
|
|
if ($error['code'] != 0 && $op != "logout") {
|
2011-03-18 15:39:23 +01:00
|
|
|
print json_encode(array("error" => $error));
|
|
|
|
return;
|
|
|
|
}
|
2005-12-16 18:35:04 +01:00
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
if (class_exists($op)) {
|
|
|
|
$handler = new $op($link, $_REQUEST);
|
2008-01-26 06:33:59 +01:00
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
if ($handler) {
|
|
|
|
if ($handler->before()) {
|
2011-12-12 21:20:53 +01:00
|
|
|
if ($method && method_exists($handler, $method)) {
|
|
|
|
$handler->$method();
|
|
|
|
} else if (method_exists($handler, 'index')) {
|
|
|
|
$handler->index();
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
2011-12-12 21:20:53 +01:00
|
|
|
$handler->after();
|
|
|
|
return;
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch($op) { // Select action according to $op value.
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-feeds":
|
2011-12-11 19:23:11 +01:00
|
|
|
require_once "modules/pref-feeds.php";
|
2008-01-26 06:33:59 +01:00
|
|
|
module_pref_feeds($link);
|
|
|
|
break; // pref-feeds
|
2005-12-30 06:29:24 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-filters":
|
2011-12-11 19:23:11 +01:00
|
|
|
require_once "modules/pref-filters.php";
|
2008-01-26 06:33:59 +01:00
|
|
|
module_pref_filters($link);
|
|
|
|
break; // pref-filters
|
2005-12-29 19:25:07 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-labels":
|
2011-12-11 19:23:11 +01:00
|
|
|
require_once "modules/pref-labels.php";
|
2008-01-26 06:33:59 +01:00
|
|
|
module_pref_labels($link);
|
|
|
|
break; // pref-labels
|
2006-08-22 09:17:40 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-prefs":
|
2011-12-11 19:23:11 +01:00
|
|
|
require_once "modules/pref-prefs.php";
|
2008-01-26 06:33:59 +01:00
|
|
|
module_pref_prefs($link);
|
|
|
|
break; // pref-prefs
|
2006-10-01 12:19:39 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-users":
|
2011-12-11 19:23:11 +01:00
|
|
|
require_once "modules/pref-users.php";
|
2008-01-26 06:33:59 +01:00
|
|
|
module_pref_users($link);
|
|
|
|
break; // prefs-users
|
2005-12-29 19:25:07 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "help":
|
2011-12-11 19:23:11 +01:00
|
|
|
require_once "modules/help.php";
|
2008-01-26 06:33:59 +01:00
|
|
|
module_help($link);
|
|
|
|
break; // help
|
2005-12-29 19:25:07 +01:00
|
|
|
|
2011-04-20 10:11:24 +02:00
|
|
|
case "pref-instances":
|
2011-12-11 19:23:11 +01:00
|
|
|
require_once "modules/pref-instances.php";
|
2011-04-20 10:11:24 +02:00
|
|
|
module_pref_instances($link);
|
|
|
|
break; // pref-instances
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "digestTest":
|
|
|
|
print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
|
|
|
|
break; // digestTest
|
2006-08-21 06:03:26 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "digestSend":
|
|
|
|
send_headlines_digests($link);
|
|
|
|
break; // digestSend
|
2006-08-20 14:33:37 +02:00
|
|
|
|
2010-11-25 10:58:29 +01:00
|
|
|
case "loading":
|
2011-04-13 06:06:20 +02:00
|
|
|
header("Content-type: text/html");
|
2011-03-18 10:46:22 +01:00
|
|
|
print __("Loading, please wait...") . " " .
|
2010-11-25 10:58:29 +01:00
|
|
|
"<img src='images/indicator_tiny.gif'>";
|
2011-04-20 10:11:24 +02:00
|
|
|
break; // loading
|
2010-11-25 10:58:29 +01:00
|
|
|
|
2011-04-19 22:14:37 +02:00
|
|
|
default:
|
|
|
|
header("Content-Type: text/plain");
|
|
|
|
print json_encode(array("error" => array("code" => 7)));
|
2011-04-20 10:11:24 +02:00
|
|
|
break; // fallback
|
2011-04-01 11:39:58 +02:00
|
|
|
} // Select action according to $op value.
|
2010-11-25 10:58:29 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// We close the connection to database.
|
2005-09-07 14:42:49 +02:00
|
|
|
db_close($link);
|
2005-08-21 12:13:10 +02:00
|
|
|
?>
|