2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2007-03-04 14:02:47 +01:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
2007-05-19 15:47:37 +02:00
|
|
|
/* remove ill effects of magic quotes */
|
|
|
|
|
|
|
|
if (get_magic_quotes_gpc()) {
|
|
|
|
$_GET = array_map('stripslashes', $_GET);
|
|
|
|
$_POST = array_map('stripslashes', $_POST);
|
|
|
|
$_REQUEST = array_map('stripslashes', $_REQUEST);
|
|
|
|
$_COOKIE = array_map('stripslashes', $_COOKIE);
|
|
|
|
}
|
|
|
|
|
2006-03-02 09:10:43 +01:00
|
|
|
require_once "sessions.php";
|
2006-10-01 12:57:50 +02:00
|
|
|
require_once "modules/backend-rpc.php";
|
2007-03-02 12:34:34 +01:00
|
|
|
|
2006-03-21 08:09:18 +01:00
|
|
|
/* if ($_GET["debug"]) {
|
2005-11-23 19:08:01 +01:00
|
|
|
define('DEFAULT_ERROR_LEVEL', E_ALL);
|
|
|
|
} else {
|
|
|
|
define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
}
|
2006-03-21 08:09:18 +01:00
|
|
|
|
|
|
|
error_reporting(DEFAULT_ERROR_LEVEL); */
|
2005-11-23 19:08:01 +01:00
|
|
|
|
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";
|
|
|
|
require_once "functions.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
|
|
|
|
|
|
|
if (ENABLE_TRANSLATIONS == true) {
|
|
|
|
startup_gettext();
|
|
|
|
}
|
2007-03-02 12:34:34 +01:00
|
|
|
|
2007-03-02 11:48:46 +01:00
|
|
|
$script_started = getmicrotime();
|
|
|
|
|
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
|
|
|
|
|
|
|
if (!$link) {
|
|
|
|
if (DB_TYPE == "mysql") {
|
|
|
|
print mysql_error();
|
|
|
|
}
|
|
|
|
// PG seems to display its own errors just fine by default.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
pg_query("set client_encoding = 'UTF-8'");
|
|
|
|
pg_set_client_encoding("UNICODE");
|
2007-08-17 18:02:15 +02:00
|
|
|
} else {
|
2007-08-21 12:47:25 +02:00
|
|
|
if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
|
|
|
|
db_query($link, "SET NAMES " . MYSQL_CHARSET);
|
2007-08-25 06:28:10 +02:00
|
|
|
// db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
|
2007-08-21 12:47:25 +02:00
|
|
|
}
|
2007-03-02 11:48:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$op = $_REQUEST["op"];
|
|
|
|
|
2006-10-01 12:57:50 +02:00
|
|
|
$print_exec_time = false;
|
2006-08-20 14:33:37 +02:00
|
|
|
|
2007-05-15 07:59:22 +02:00
|
|
|
if ((!$op || $op == "rpc" || $op == "rss" || $op == "view" ||
|
2007-08-09 15:09:34 +02:00
|
|
|
$op == "digestSend" || $op == "viewfeed" || $op == "publish" ||
|
2006-07-31 13:35:50 +02:00
|
|
|
$op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
|
2008-05-20 08:01:19 +02:00
|
|
|
header("Content-Type: application/xml; charset=utf-8");
|
|
|
|
|
|
|
|
if (ENABLE_GZIP_OUTPUT) {
|
|
|
|
ob_start("ob_gzhandler");
|
|
|
|
}
|
|
|
|
|
2007-08-23 11:37:39 +02:00
|
|
|
} else {
|
|
|
|
if (!$_REQUEST["noxml"]) {
|
|
|
|
header("Content-Type: text/html; charset=utf-8");
|
|
|
|
} else {
|
|
|
|
header("Content-Type: text/plain; charset=utf-8");
|
|
|
|
}
|
2005-11-19 15:46:23 +01:00
|
|
|
}
|
|
|
|
|
2006-08-20 05:35:47 +02:00
|
|
|
if (!$op) {
|
|
|
|
header("Content-Type: application/xml");
|
|
|
|
print_error_xml(7); exit;
|
|
|
|
}
|
2007-03-02 20:58:58 +01:00
|
|
|
|
2007-03-02 11:48:46 +01:00
|
|
|
if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds"
|
2007-08-09 15:09:34 +02:00
|
|
|
&& $op != "rss" && $op != "getUnread" && $op != "publish") {
|
2005-11-19 15:46:23 +01:00
|
|
|
|
2007-07-12 07:15:22 +02:00
|
|
|
if ($op == "rpc" || $op == "viewfeed" || $op == "view") {
|
2006-03-31 07:18:55 +02:00
|
|
|
print_error_xml(6); die;
|
2006-02-28 12:02:57 +01:00
|
|
|
} else {
|
|
|
|
print "
|
|
|
|
<html><body>
|
|
|
|
<p>Error: Not logged in.</p>
|
|
|
|
<script type=\"text/javascript\">
|
|
|
|
if (parent.window != 'undefined') {
|
2007-03-01 10:43:54 +01:00
|
|
|
parent.window.location = \"tt-rss.php\";
|
2006-02-28 12:02:57 +01:00
|
|
|
} else {
|
2007-03-01 10:43:54 +01:00
|
|
|
window.location = \"tt-rss.php\";
|
2006-02-28 12:02:57 +01:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body></html>
|
|
|
|
";
|
2005-11-19 15:46:23 +01:00
|
|
|
}
|
|
|
|
exit;
|
|
|
|
}
|
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(
|
2007-03-05 09:45:38 +01:00
|
|
|
0 => __("Use default"),
|
|
|
|
-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"),
|
|
|
|
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-01-25 17:42:09 +01:00
|
|
|
0 => __("Use default"),
|
|
|
|
1 => __("Magpie"),
|
|
|
|
2 => __("SimplePie"));
|
2008-01-25 18:46:01 +01:00
|
|
|
|
|
|
|
if (ENABLE_SIMPLEPIE) {
|
|
|
|
$update_methods[0] .= ' (SimplePie)';
|
|
|
|
} else {
|
|
|
|
$update_methods[0] .= ' (Magpie)';
|
|
|
|
}
|
|
|
|
|
2006-05-20 16:26:00 +02:00
|
|
|
$access_level_names = array(
|
2007-03-05 09:45:38 +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
|
|
|
|
2006-10-01 12:19:39 +02:00
|
|
|
require_once "modules/pref-prefs.php";
|
2006-10-01 12:05:20 +02:00
|
|
|
require_once "modules/popup-dialog.php";
|
|
|
|
require_once "modules/help.php";
|
|
|
|
require_once "modules/pref-feeds.php";
|
|
|
|
require_once "modules/pref-filters.php";
|
|
|
|
require_once "modules/pref-labels.php";
|
|
|
|
require_once "modules/pref-users.php";
|
2006-10-01 12:57:50 +02:00
|
|
|
require_once "modules/pref-feed-browser.php";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2005-12-22 13:53:28 +01:00
|
|
|
if (!sanity_check($link)) { return; }
|
2005-12-16 18:35:04 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
switch($op) { // Select action according to $op value.
|
|
|
|
case "rpc":
|
|
|
|
// Handle remote procedure calls.
|
|
|
|
handle_rpc_request($link);
|
|
|
|
break; // rpc
|
|
|
|
|
|
|
|
case "feeds":
|
2008-05-20 08:48:54 +02:00
|
|
|
if (ENABLE_GZIP_OUTPUT) {
|
|
|
|
ob_start("ob_gzhandler");
|
|
|
|
}
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$tags = $_GET["tags"];
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
|
|
|
switch($subop) {
|
|
|
|
case "catchupAll":
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
|
|
|
last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "collapse":
|
|
|
|
$cat_id = db_escape_string($_GET["cid"]);
|
|
|
|
|
|
|
|
db_query($link, "UPDATE ttrss_feed_categories SET
|
|
|
|
collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
|
|
|
|
$_SESSION["uid"]);
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
2005-08-23 08:43:20 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
outputFeedList($link, $tags);
|
|
|
|
break; // feeds
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "view":
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$id = db_escape_string($_GET["id"]);
|
|
|
|
$feed_id = db_escape_string($_GET["feed"]);
|
|
|
|
$cids = split(",", db_escape_string($_GET["cids"]));
|
|
|
|
$mode = db_escape_string($_GET["mode"]);
|
|
|
|
$omode = db_escape_string($_GET["omode"]);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-05-21 06:38:28 +02:00
|
|
|
$csync = $_GET["csync"];
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<reply>";
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// in prefetch mode we only output requested cids, main article
|
|
|
|
// just gets marked as read (it already exists in client cache)
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($mode == "") {
|
|
|
|
outputArticleXML($link, $id, $feed_id);
|
|
|
|
} else {
|
|
|
|
catchupArticleById($link, $id, 0);
|
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-06-24 09:43:20 +02:00
|
|
|
if (!$_SESSION["bw_limit"]) {
|
|
|
|
foreach ($cids as $cid) {
|
|
|
|
if ($cid) {
|
|
|
|
outputArticleXML($link, $cid, $feed_id, false);
|
|
|
|
}
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
|
2008-06-03 10:18:08 +02:00
|
|
|
if ($mode == "prefetch" && $csync) {
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<counters>";
|
|
|
|
getAllCounters($link, $omode);
|
|
|
|
print "</counters>";
|
2008-05-21 06:19:03 +02:00
|
|
|
}
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "</reply>";
|
|
|
|
break; // view
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "viewfeed":
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$print_exec_time = true;
|
|
|
|
$timing_info = getmicrotime();
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<reply>";
|
2007-05-15 07:59:22 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($_GET["debug"]) $timing_info = print_checkpoint("0", $timing_info);
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$omode = db_escape_string($_GET["omode"]);
|
2007-05-15 07:59:22 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$feed = db_escape_string($_GET["feed"]);
|
|
|
|
$subop = db_escape_string($_GET["subop"]);
|
|
|
|
$view_mode = db_escape_string($_GET["view_mode"]);
|
|
|
|
$limit = db_escape_string($_GET["limit"]);
|
|
|
|
$cat_view = db_escape_string($_GET["cat"]);
|
|
|
|
$next_unread_feed = db_escape_string($_GET["nuf"]);
|
|
|
|
$offset = db_escape_string($_GET["skip"]);
|
2008-05-17 06:42:20 +02:00
|
|
|
$vgroup_last_feed = db_escape_string($_GET["vgrlf"]);
|
2008-05-21 06:38:28 +02:00
|
|
|
$csync = $_GET["csync"];
|
2007-01-19 10:38:16 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
|
|
|
|
set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
|
2007-03-26 07:23:15 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
|
|
|
|
db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
|
|
|
|
WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
}
|
2007-11-22 06:52:48 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<headlines id=\"$feed\"><![CDATA[";
|
2007-01-26 06:36:19 +01:00
|
|
|
|
2008-02-15 18:43:10 +01:00
|
|
|
if ($feed == -4) {
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2008-02-17 08:39:05 +01:00
|
|
|
generate_dashboard_feed($link);
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2008-02-15 18:43:10 +01:00
|
|
|
} else {
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2008-02-15 18:43:10 +01:00
|
|
|
$ret = outputHeadlinesList($link, $feed, $subop,
|
2008-05-17 06:42:20 +02:00
|
|
|
$view_mode, $limit, $cat_view, $next_unread_feed, $offset,
|
|
|
|
$vgroup_last_feed);
|
2008-02-15 18:43:10 +01:00
|
|
|
|
|
|
|
$topmost_article_ids = $ret[0];
|
|
|
|
$headlines_count = $ret[1];
|
|
|
|
$returned_feed = $ret[2];
|
|
|
|
$disable_cache = $ret[3];
|
2008-05-17 06:42:20 +02:00
|
|
|
$vgroup_last_feed = $ret[4];
|
2008-02-15 18:43:10 +01:00
|
|
|
|
|
|
|
print "]]></headlines>";
|
|
|
|
|
|
|
|
print "<headlines-count value=\"$headlines_count\"/>";
|
2008-05-17 06:42:20 +02:00
|
|
|
print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
|
|
|
|
|
2008-02-15 18:43:10 +01:00
|
|
|
$headlines_unread = getFeedUnread($link, $returned_feed);
|
|
|
|
|
|
|
|
print "<headlines-unread value=\"$headlines_unread\"/>";
|
|
|
|
printf("<disable-cache value=\"%d\"/>", $disable_cache);
|
|
|
|
|
|
|
|
if ($_GET["debug"]) $timing_info = print_checkpoint("10", $timing_info);
|
|
|
|
|
2008-06-24 09:43:20 +02:00
|
|
|
if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
|
2008-02-15 18:43:10 +01:00
|
|
|
print "<articles>";
|
|
|
|
foreach ($topmost_article_ids as $id) {
|
|
|
|
outputArticleXML($link, $id, $feed, false);
|
|
|
|
}
|
|
|
|
print "</articles>";
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2007-05-15 09:37:10 +02:00
|
|
|
}
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($_GET["debug"]) $timing_info = print_checkpoint("20", $timing_info);
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2008-05-21 06:38:28 +02:00
|
|
|
$viewfeed_ctr_interval = 300;
|
|
|
|
|
2008-06-24 14:22:34 +02:00
|
|
|
if ($csync || $_SESSION["bw_limit"]) {
|
2008-05-21 06:38:28 +02:00
|
|
|
$viewfeed_ctr_interval = 60;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (time() - $_SESSION["get_all_counters_stamp"] > $viewfeed_ctr_interval) {
|
2008-05-20 10:50:58 +02:00
|
|
|
print "<counters>";
|
|
|
|
getAllCounters($link, $omode, $feed);
|
|
|
|
print "</counters>";
|
2008-05-21 06:19:03 +02:00
|
|
|
}
|
2006-02-24 10:33:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print_runtime_info($link);
|
2007-06-07 10:06:36 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "</reply>";
|
|
|
|
break; // viewfeed
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-feeds":
|
|
|
|
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":
|
|
|
|
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":
|
|
|
|
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":
|
|
|
|
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":
|
|
|
|
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":
|
|
|
|
module_help($link);
|
|
|
|
break; // help
|
2005-12-29 19:25:07 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "dlg":
|
|
|
|
module_popup_dialog($link);
|
|
|
|
break; // dlg
|
2005-12-30 06:29:24 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-pub-items":
|
|
|
|
module_pref_pub_items($link);
|
|
|
|
break; // pref-pub-items
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "globalUpdateFeeds":
|
|
|
|
// update feeds of all users, may be used anonymously
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2008-05-06 11:27:29 +02:00
|
|
|
print "<!--";
|
2008-01-26 06:33:59 +01:00
|
|
|
// Update all feeds needing a update.
|
2008-05-06 11:27:29 +02:00
|
|
|
update_daemon_common($link, 0, true, true);
|
|
|
|
print " -->";
|
2005-12-30 06:29:24 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// FIXME : old feed update way. To be removed.
|
|
|
|
//$result = db_query($link, "SELECT id FROM ttrss_users");
|
2005-12-29 19:25:07 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
//while ($line = db_fetch_assoc($result)) {
|
|
|
|
// $user_id = $line["id"];
|
|
|
|
// print "<!-- updating feeds of uid $user_id -->";
|
|
|
|
// update_all_feeds($link, false, $user_id);
|
|
|
|
//}
|
2006-01-12 14:50:53 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<rpc-reply>
|
|
|
|
<message msg=\"All feeds updated\"/>
|
|
|
|
</rpc-reply>";
|
|
|
|
break; // globalUpdateFeeds
|
2006-05-18 06:58:31 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "user-details":
|
2005-12-29 17:36:41 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (WEB_DEMO_MODE || $_SESSION["access_level"] < 10) {
|
|
|
|
return;
|
|
|
|
}
|
2006-06-14 05:21:19 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
/*
|
|
|
|
print "<html><head>
|
|
|
|
<title>Tiny Tiny RSS : User Details</title>
|
|
|
|
<link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
|
|
|
|
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
|
|
|
|
</head><body>";
|
|
|
|
*/
|
|
|
|
|
|
|
|
$uid = sprintf("%d", $_GET["id"]);
|
|
|
|
|
|
|
|
print "<div id=\"infoBoxTitle\">User details</div>";
|
|
|
|
|
|
|
|
print "<div class='infoBoxContents'>";
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT login,
|
2008-04-21 06:53:19 +02:00
|
|
|
".SUBSTRING_FOR_DATE."(last_login,1,16) AS last_login,
|
2008-01-26 06:33:59 +01:00
|
|
|
access_level,
|
|
|
|
(SELECT COUNT(int_id) FROM ttrss_user_entries
|
|
|
|
WHERE owner_uid = id) AS stored_articles,
|
2008-04-21 06:53:19 +02:00
|
|
|
".SUBSTRING_FOR_DATE."(created,1,16) AS created
|
2008-01-26 06:33:59 +01:00
|
|
|
FROM ttrss_users
|
|
|
|
WHERE id = '$uid'");
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
print "<h1>User not found</h1>";
|
|
|
|
return;
|
|
|
|
}
|
2005-12-29 17:36:41 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// print "<h1>User Details</h1>";
|
2005-12-29 17:36:41 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$login = db_fetch_result($result, 0, "login");
|
2005-12-30 05:22:07 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// print "<h1>$login</h1>";
|
2005-12-29 19:29:45 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<table width='100%'>";
|
2005-12-29 19:29:45 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$last_login = date(get_pref($link, 'LONG_DATE_FORMAT'),
|
|
|
|
strtotime(db_fetch_result($result, 0, "last_login")));
|
2007-11-16 06:11:59 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$created = date(get_pref($link, 'LONG_DATE_FORMAT'),
|
|
|
|
strtotime(db_fetch_result($result, 0, "created")));
|
2007-11-16 06:11:59 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$access_level = db_fetch_result($result, 0, "access_level");
|
|
|
|
$stored_articles = db_fetch_result($result, 0, "stored_articles");
|
2005-12-29 17:36:41 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// print "<tr><td>Username</td><td>$login</td></tr>";
|
|
|
|
// print "<tr><td>Access level</td><td>$access_level</td></tr>";
|
|
|
|
print "<tr><td>".__('Registered')."</td><td>$created</td></tr>";
|
|
|
|
print "<tr><td>".__('Last logged in')."</td><td>$last_login</td></tr>";
|
|
|
|
print "<tr><td>".__('Stored articles')."</td><td>$stored_articles</td></tr>";
|
2005-12-29 17:36:41 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$result = db_query($link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
|
|
|
|
WHERE owner_uid = '$uid'");
|
2005-12-29 17:36:41 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$num_feeds = db_fetch_result($result, 0, "num_feeds");
|
2005-12-29 17:36:41 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<tr><td>".__('Subscribed feeds count')."</td><td>$num_feeds</td></tr>";
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
/*
|
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
SUM(LENGTH(content)+LENGTH(title)+LENGTH(link)+LENGTH(guid)) AS db_size
|
|
|
|
FROM ttrss_user_entries,ttrss_entries
|
|
|
|
WHERE owner_uid = '$uid' AND ref_id = id");
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>";
|
|
|
|
*/
|
2006-05-18 06:58:31 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "</table>";
|
2006-05-18 06:58:31 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<h1>".__('Subscribed feeds')."</h1>";
|
2006-05-18 06:58:31 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
|
|
|
|
WHERE owner_uid = '$uid' ORDER BY title");
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<ul class=\"userFeedList\">";
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$row_class = "odd";
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$icon_file = ICONS_URL."/".$line["id"].".ico";
|
2006-03-20 15:30:51 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (file_exists($icon_file) && filesize($icon_file) > 0) {
|
|
|
|
$feed_icon = "<img class=\"tinyFeedIcon\" src=\"$icon_file\">";
|
|
|
|
} else {
|
|
|
|
$feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
|
|
|
|
}
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<li class=\"$row_class\">$feed_icon <a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$row_class = toggleEvenOdd($row_class);
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2006-08-22 10:54:32 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (db_num_rows($result) < $num_feeds) {
|
|
|
|
// FIXME - add link to show ALL subscribed feeds here somewhere
|
|
|
|
print "<li><img
|
|
|
|
class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\"> ...</li>";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</ul>";
|
2006-08-22 10:54:32 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "</div>";
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<div align='center'>
|
|
|
|
<input type='submit' class='button'
|
|
|
|
onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// print "</body></html>";
|
2005-12-10 20:35:09 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
break; // user-details
|
2006-03-20 15:30:51 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-feed-browser":
|
|
|
|
module_pref_feed_browser($link);
|
|
|
|
break; // pref-feed-browser
|
2005-12-30 06:17:23 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "publish":
|
|
|
|
$key = db_escape_string($_GET["key"]);
|
2007-08-09 15:09:34 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$result = db_query($link, "SELECT login, owner_uid
|
|
|
|
FROM ttrss_user_prefs, ttrss_users WHERE
|
|
|
|
pref_name = '_PREFS_PUBLISH_KEY' AND
|
|
|
|
value = '$key' AND
|
|
|
|
ttrss_users.id = owner_uid");
|
2007-08-09 15:09:34 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
$owner = db_fetch_result($result, 0, "owner_uid");
|
|
|
|
$login = db_fetch_result($result, 0, "login");
|
2007-08-09 15:09:34 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
generate_syndicated_feed($link, $owner, -2, false);
|
2007-08-09 15:09:34 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
} else {
|
|
|
|
print "<error>User not found</error>";
|
|
|
|
}
|
|
|
|
break; // publish
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "rss":
|
|
|
|
$feed = db_escape_string($_GET["id"]);
|
|
|
|
$user = db_escape_string($_GET["user"]);
|
|
|
|
$pass = db_escape_string($_GET["pass"]);
|
|
|
|
$is_cat = $_GET["is_cat"] != false;
|
2006-07-31 13:55:15 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$search = db_escape_string($_GET["q"]);
|
|
|
|
$match_on = db_escape_string($_GET["m"]);
|
|
|
|
$search_mode = db_escape_string($_GET["smode"]);
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (!$_SESSION["uid"] && $user && $pass) {
|
|
|
|
authenticate_user($link, $user, $pass);
|
|
|
|
}
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($_SESSION["uid"] ||
|
|
|
|
http_authenticate_user($link)) {
|
2007-08-09 15:09:34 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
generate_syndicated_feed($link, 0, $feed, $is_cat,
|
|
|
|
$search, $search_mode, $match_on);
|
|
|
|
}
|
|
|
|
break; // rss
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "labelFromSearch":
|
|
|
|
$search = db_escape_string($_GET["search"]);
|
|
|
|
$search_mode = db_escape_string($_GET["smode"]);
|
|
|
|
$match_on = db_escape_string($_GET["match"]);
|
|
|
|
$is_cat = db_escape_string($_GET["is_cat"]);
|
|
|
|
$title = db_escape_string($_GET["title"]);
|
|
|
|
$feed = sprintf("%d", $_GET["feed"]);
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$label_qparts = array();
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$search_expr = getSearchSql($search, $match_on);
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($is_cat) {
|
|
|
|
if ($feed != 0) {
|
|
|
|
$search_expr .= " AND ttrss_feeds.cat_id = $feed ";
|
|
|
|
} else {
|
|
|
|
$search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
|
|
|
|
}
|
2006-08-01 09:54:46 +02:00
|
|
|
} else {
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($search_mode == "all_feeds") {
|
|
|
|
// NOOP
|
|
|
|
} else if ($search_mode == "this_cat") {
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$tmp_result = db_query($link, "SELECT cat_id
|
|
|
|
FROM ttrss_feeds WHERE id = '$feed'");
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$cat_id = db_fetch_result($tmp_result, 0, "cat_id");
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($cat_id > 0) {
|
|
|
|
$search_expr .= " AND ttrss_feeds.cat_id = $cat_id ";
|
|
|
|
} else {
|
|
|
|
$search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
|
|
|
|
}
|
2006-08-01 09:54:46 +02:00
|
|
|
} else {
|
2008-01-26 06:33:59 +01:00
|
|
|
$search_expr .= " AND ttrss_feeds.id = $feed ";
|
2006-08-01 09:54:46 +02:00
|
|
|
}
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$search_expr = db_escape_string($search_expr);
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print $search_expr;
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($title) {
|
|
|
|
$result = db_query($link,
|
|
|
|
"INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
|
|
|
|
VALUES ('$search_expr', '$title', '".$_SESSION["uid"]."')");
|
|
|
|
}
|
|
|
|
break; // labelFromSearch
|
2006-08-20 05:35:47 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "getUnread":
|
|
|
|
$login = db_escape_string($_GET["login"]);
|
2006-08-20 05:35:47 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
header("Content-Type: text/plain; charset=utf-8");
|
2006-08-20 05:35:47 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
|
2006-08-20 14:33:37 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
$uid = db_fetch_result($result, 0, "id");
|
|
|
|
print getGlobalUnread($link, $uid);
|
|
|
|
} else {
|
|
|
|
print "-1;User not found";
|
|
|
|
}
|
2006-08-20 14:33:37 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$print_exec_time = false;
|
|
|
|
break; // getUnread
|
2006-08-21 08:43:38 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "digestTest":
|
|
|
|
header("Content-Type: text/plain");
|
|
|
|
print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
|
|
|
|
$print_exec_time = false;
|
|
|
|
break; // digestTest
|
2006-08-21 06:03:26 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "digestSend":
|
|
|
|
header("Content-Type: text/plain");
|
|
|
|
send_headlines_digests($link);
|
|
|
|
$print_exec_time = false;
|
|
|
|
break; // digestSend
|
2006-08-20 14:33:37 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
} // Select action according to $op value.
|
2006-08-20 05:35:47 +02: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
|
|
|
?>
|
2005-10-23 17:48:58 +02:00
|
|
|
|
2006-08-20 14:33:37 +02:00
|
|
|
<?php if ($print_exec_time) { ?>
|
2006-08-19 09:04:45 +02:00
|
|
|
<!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
|
2006-08-20 05:35:47 +02:00
|
|
|
<?php } ?>
|