ttrss/backend.php

878 lines
23 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
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";
2006-03-02 09:10:43 +01:00
2007-03-02 12:05:17 +01:00
header("Cache-Control: no-cache, max-age=0, must-revalidate");
2006-02-24 18:57:14 +01:00
header("Pragma: no-cache");
2007-03-02 12:05:17 +01:00
header("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
2006-02-11 14:52:17 +01:00
/* if ($_GET["debug"]) {
define('DEFAULT_ERROR_LEVEL', E_ALL);
} else {
define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
}
error_reporting(DEFAULT_ERROR_LEVEL); */
define('SCHEMA_VERSION', 13);
require_once "sanity_check.php";
require_once "config.php";
require_once "db.php";
require_once "db-prefs.php";
require_once "functions.php";
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");
}
$op = $_REQUEST["op"];
2006-10-01 12:57:50 +02:00
$print_exec_time = false;
2006-08-20 14:33:37 +02:00
2006-08-21 09:56:17 +02:00
if ((!$op || $op == "rpc" || $op == "rss" || $op == "digestSend" ||
2006-07-31 13:35:50 +02:00
$op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
header("Content-Type: application/xml; charset=utf-8");
} else {
header("Content-Type: text/html; charset=utf-8");
}
if (!$op) {
header("Content-Type: application/xml");
print_error_xml(7); exit;
}
2007-03-02 11:48:46 +01:00
if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds"
&& $op != "rss" && $op != "getUnread") {
if ($op == "rpc") {
print_error_xml(6); die;
} 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\";
} else {
2007-03-01 10:43:54 +01:00
window.location = \"tt-rss.php\";
}
</script>
</body></html>
";
}
exit;
}
$purge_intervals = array(
2006-12-20 15:58:56 +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"));
$update_intervals = array(
2006-12-20 15:58:56 +01:00
0 => _("Use default"),
-1 => _("Disable updates"),
30 => _("Each 30 minutes"),
60 => _("Hourly"),
240 => _("Each 4 hours"),
720 => _("Each 12 hours"),
1440 => _("Daily"),
2006-12-20 16:10:21 +01:00
10080 => _("Weekly"));
2006-10-02 05:22:20 +02:00
$access_level_names = array(
2006-12-20 15:58:56 +01:00
0 => _("User"),
10 => _("Administrator"));
2006-10-01 12:19:39 +02:00
require_once "modules/pref-prefs.php";
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";
2005-11-10 05:35:39 +01:00
2005-12-22 13:53:28 +01:00
if (!sanity_check($link)) { return; }
if ($op == "rpc") {
handle_rpc_request($link);
}
if ($op == "feeds") {
2005-09-09 09:45:54 +02:00
$tags = $_GET["tags"];
$subop = $_GET["subop"];
if ($subop == "catchupAll") {
db_query($link, "UPDATE ttrss_user_entries SET
2005-11-18 10:28:27 +01:00
last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
}
2005-12-13 09:53:56 +01:00
if ($subop == "collapse") {
$cat_id = db_escape_string($_GET["cid"]);
2005-12-13 09:53:56 +01:00
db_query($link, "UPDATE ttrss_feed_categories SET
collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
$_SESSION["uid"]);
return;
}
2005-09-09 09:45:54 +02:00
outputFeedList($link, $tags);
2005-08-21 12:13:10 +02:00
}
if ($op == "view") {
$id = db_escape_string($_GET["id"]);
$feed_id = db_escape_string($_GET["feed"]);
$result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
if (db_num_rows($result) == 1) {
$rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
} else {
$rtl_content = false;
}
if ($rtl_content) {
$rtl_tag = "dir=\"RTL\"";
2006-03-23 08:24:06 +01:00
$rtl_class = "RTL";
} else {
$rtl_tag = "";
2006-03-23 08:24:06 +01:00
$rtl_class = "";
}
2005-08-21 15:46:43 +02:00
2005-11-19 06:48:02 +01:00
$result = db_query($link, "UPDATE ttrss_user_entries
SET unread = false,last_read = NOW()
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
2005-08-21 17:01:18 +02:00
2005-11-25 09:20:32 +01:00
$result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
SUBSTRING(updated,1,16) as updated,
2005-12-10 08:28:55 +01:00
(SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
2006-02-26 08:09:48 +01:00
num_comments,
author
2005-11-19 06:48:02 +01:00
FROM ttrss_entries,ttrss_user_entries
2006-05-16 13:48:07 +02:00
WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
2005-08-21 12:13:10 +02:00
2005-08-21 15:46:43 +02:00
if ($result) {
2005-08-21 12:13:10 +02:00
$link_target = "";
if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
$link_target = "target=\"_new\"";
}
$line = db_fetch_assoc($result);
2005-08-21 12:13:10 +02:00
if ($line["icon_url"]) {
$feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
} else {
$feed_icon = "&nbsp;";
}
2005-08-21 15:46:43 +02:00
2005-12-10 08:28:55 +01:00
/* if ($line["comments"] && $line["link"] != $line["comments"]) {
2005-09-07 10:46:30 +02:00
$entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
} else {
$entry_comments = "";
2005-12-10 08:28:55 +01:00
} */
$num_comments = $line["num_comments"];
$entry_comments = "";
if ($num_comments > 0) {
if ($line["comments"]) {
$comments_url = $line["comments"];
} else {
$comments_url = $line["link"];
}
$entry_comments = "<a $link_target href=\"$comments_url\">$num_comments comments</a>";
2005-12-10 08:28:55 +01:00
} else {
if ($line["comments"] && $line["link"] != $line["comments"]) {
$entry_comments = "<a $link_target href=\"".$line["comments"]."\">comments</a>";
2005-12-10 08:28:55 +01:00
}
2005-09-07 10:46:30 +02:00
}
2005-09-07 09:19:14 +02:00
print "<div class=\"postReply\">";
2006-12-07 10:57:09 +01:00
print "<div class=\"postHeader\">";
2005-11-25 09:20:32 +01:00
2006-02-26 08:09:48 +01:00
$entry_author = $line["author"];
if ($entry_author) {
2006-12-20 15:58:56 +01:00
$entry_author = _(" - by ") . $entry_author;
2006-02-26 08:09:48 +01:00
}
$parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
strtotime($line["updated"]));
2006-12-07 10:57:09 +01:00
print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
if ($line["link"]) {
print "<div clear='both'><a $link_target href=\"" . $line["link"] . "\">" .
$line["title"] . "</a>$entry_author</div>";
} else {
print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
}
2005-11-25 09:20:32 +01:00
$tmp_result = db_query($link, "SELECT DISTINCT tag_name FROM
ttrss_tags WHERE post_int_id = " . $line["int_id"] . "
ORDER BY tag_name");
$tags_str = "";
$f_tags_str = "";
$num_tags = 0;
2005-11-25 09:20:32 +01:00
while ($tmp_line = db_fetch_assoc($tmp_result)) {
$num_tags++;
$tag = $tmp_line["tag_name"];
2006-12-07 10:46:08 +01:00
$tag_str = "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
2006-12-07 10:57:09 +01:00
if ($num_tags == 6) {
$tags_str .= "<a href=\"javascript:showBlockElement('allEntryTags')\">...</a>";
2006-12-07 10:57:09 +01:00
} else if ($num_tags < 6) {
$tags_str .= $tag_str;
}
$f_tags_str .= $tag_str;
}
2005-11-25 09:20:32 +01:00
$tags_str = preg_replace("/, $/", "", $tags_str);
$f_tags_str = preg_replace("/, $/", "", $f_tags_str);
2005-09-07 09:19:14 +02:00
2006-12-07 10:57:09 +01:00
if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
2005-11-25 09:20:32 +01:00
2006-12-20 15:58:56 +01:00
if (!$tags_str) $tags_str = '<span class="tagList">'._('no tags').'</span>';
2006-12-07 10:57:09 +01:00
print "<div style='float : right'>$tags_str
2006-12-07 11:00:21 +01:00
<a title=\"Edit tags for this article\"
href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a></div>
2006-12-07 10:57:09 +01:00
<div clear='both'>$entry_comments</div>";
2005-11-25 09:20:32 +01:00
2006-12-07 10:57:09 +01:00
print "</div>";
2005-09-07 09:19:14 +02:00
print "<div class=\"postIcon\">" . $feed_icon . "</div>";
print "<div class=\"postContent\">";
2006-12-07 08:48:00 +01:00
if (db_num_rows($tmp_result) > 0) {
2006-12-20 15:58:56 +01:00
print "<div id=\"allEntryTags\">"._('Tags:')."$f_tags_str</div>";
}
if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
$line["content"] = preg_replace("/href=/i", "target=\"_new\" href=", $line["content"]);
}
$line["content"] = sanitize_rss($line["content"]);
print $line["content"] . "</div>";
2005-09-07 09:19:14 +02:00
print "</div>";
2005-08-21 15:46:43 +02:00
}
2005-08-21 12:13:10 +02:00
}
if ($op == "viewfeed") {
2006-03-27 05:14:35 +02:00
$feed = db_escape_string($_GET["feed"]);
$subop = db_escape_string($_GET["subop"]);
$view_mode = db_escape_string($_GET["view_mode"]);
2006-03-27 05:14:35 +02:00
$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"]);
if (!$offset) $offset = 0;
2005-08-21 17:01:18 +02:00
if ($subop == "undefined") $subop = "";
2005-08-21 12:13:10 +02:00
if ($subop == "CatchupSelected") {
$ids = split(",", db_escape_string($_GET["ids"]));
$cmode = sprintf("%d", $_GET["cmode"]);
catchupArticlesById($link, $ids, $cmode);
}
if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
update_generic_feed($link, $feed, $cat_view);
}
if ($subop == "MarkAllRead") {
catchup_feed($link, $feed, $cat_view);
if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
if ($next_unread_feed) {
$feed = $next_unread_feed;
}
}
}
2006-06-15 05:01:28 +02:00
if ($feed_id > 0) {
$result = db_query($link,
"SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
2006-06-15 05:01:28 +02:00
if (db_num_rows($result) == 0) {
2006-12-20 15:58:56 +01:00
print "<div align='center'>"._('Feed not found.')."</div>";
2006-06-15 05:01:28 +02:00
return;
}
}
if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
$result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
if (db_num_rows($result) == 1) {
$rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
} else {
$rtl_content = false;
}
if ($rtl_content) {
$rtl_tag = "dir=\"RTL\"";
} else {
$rtl_tag = "";
}
} else {
$rtl_tag = "";
$rtl_content = false;
}
2006-03-31 07:24:22 +02:00
$script_dt_add = get_script_dt_add();
2006-09-28 14:00:03 +02:00
/* print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
<script type=\"text/javascript\" src=\"prototype.js\"></script>
2006-03-30 08:43:35 +02:00
<script type=\"text/javascript\" src=\"functions.js?$script_dt_add\"></script>
<script type=\"text/javascript\" src=\"viewfeed.js?$script_dt_add\"></script>
<!--[if gte IE 5.5000]>
<script type=\"text/javascript\" src=\"pngfix.js\"></script>
<link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss-ie.css\">
<![endif]-->
2006-03-21 09:04:29 +01:00
</head><body $rtl_tag>
<script type=\"text/javascript\">
if (document.addEventListener) {
document.addEventListener(\"DOMContentLoaded\", init, null);
}
window.onload = init;
2006-09-28 14:00:03 +02:00
</script>"; */
/// START /////////////////////////////////////////////////////////////////////////////////
$search = db_escape_string($_GET["query"]);
$search_mode = db_escape_string($_GET["search_mode"]);
$match_on = db_escape_string($_GET["match_on"]);
2005-10-16 18:16:34 +02:00
if (!$match_on) {
$match_on = "both";
}
2006-08-01 15:18:05 +02:00
$real_offset = $offset * $limit;
$qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
$search, $search_mode, $match_on, false, $real_offset);
2006-02-25 20:41:27 +01:00
$result = $qfh_ret[0];
$feed_title = $qfh_ret[1];
$feed_site_url = $qfh_ret[2];
$last_error = $qfh_ret[3];
2005-09-08 09:43:44 +02:00
/// STOP //////////////////////////////////////////////////////////////////////////////////
2005-09-08 09:43:44 +02:00
2006-09-29 07:12:19 +02:00
print "<div id=\"headlinesContainer\" $rtl_tag>";
2005-09-08 09:43:44 +02:00
if (!$result) {
2006-12-20 15:58:56 +01:00
print "<div align='center'>"._("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
return;
2005-11-28 14:19:54 +01:00
}
2007-01-22 08:20:26 +01:00
print_headline_subtoolbar($link, $feed_site_url, $feed_title, false,
$rtl_content, $feed, $cat_view, $search, $match_on, $search_mode,
$offset, $limit);
2007-01-22 08:20:26 +01:00
print "<div id=\"headlinesInnerContainer\">";
if (db_num_rows($result) > 0) {
2006-09-29 06:15:28 +02:00
# print "\{$offset}";
if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
2005-11-28 14:19:54 +01:00
print "<table class=\"headlinesList\" id=\"headlinesList\"
2006-03-21 09:04:29 +01:00
cellspacing=\"0\" width=\"100%\">";
2005-09-05 06:04:31 +02:00
}
2005-11-28 13:54:43 +01:00
$lnum = 0;
error_reporting (DEFAULT_ERROR_LEVEL);
$num_unread = 0;
while ($line = db_fetch_assoc($result)) {
2005-11-28 14:19:54 +01:00
2005-11-28 13:54:43 +01:00
$class = ($lnum % 2) ? "even" : "odd";
$id = $line["id"];
$feed_id = $line["feed_id"];
if ($line["last_read"] == "" &&
($line["unread"] != "t" && $line["unread"] != "1")) {
$update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
alt=\"Updated\">";
} else {
$update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
alt=\"Updated\">";
}
if ($line["unread"] == "t" || $line["unread"] == "1") {
$class .= "Unread";
++$num_unread;
$is_unread = true;
2005-11-28 14:19:54 +01:00
} else {
$is_unread = false;
2005-11-28 13:54:43 +01:00
}
if ($line["marked"] == "t" || $line["marked"] == "1") {
$marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_set.png\"
2007-01-26 06:36:19 +01:00
class=\"markedPic\"
alt=\"Reset mark\" onclick='javascript:toggleMark($id)'>";
2005-11-28 13:54:43 +01:00
} else {
$marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_unset.png\"
2007-01-26 06:36:19 +01:00
class=\"markedPic\"
alt=\"Set mark\" onclick='javascript:toggleMark($id)'>";
2005-11-28 13:54:43 +01:00
}
2006-08-31 10:45:04 +02:00
# $content_link = "<a target=\"_new\" href=\"".$line["link"]."\">" .
# $line["title"] . "</a>";
2005-11-28 15:42:20 +01:00
$content_link = "<a href=\"javascript:view($id,$feed_id);\">" .
2005-11-28 13:54:43 +01:00
$line["title"] . "</a>";
2005-11-28 14:19:54 +01:00
2006-08-31 10:45:04 +02:00
# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
# $line["title"] . "</a>";
2005-11-28 13:54:43 +01:00
if (get_pref($link, 'HEADLINES_SMART_DATE')) {
$updated_fmt = smart_date_time(strtotime($line["updated"]));
} else {
$short_date = get_pref($link, 'SHORT_DATE_FORMAT');
$updated_fmt = date($short_date, strtotime($line["updated"]));
}
2005-11-28 14:19:54 +01:00
if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
$content_preview = truncate_string(strip_tags($line["content_preview"]),
100);
2005-11-28 14:19:54 +01:00
}
$entry_author = $line["author"];
if ($entry_author) {
$entry_author = " - by $entry_author";
}
if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
2005-11-28 14:19:54 +01:00
print "<tr class='$class' id='RROW-$id'>";
print "<td class='hlUpdatePic'>$update_pic</td>";
print "<td class='hlSelectRow'>
<input type=\"checkbox\" onclick=\"toggleSelectRow(this)\"
class=\"feedCheckBox\" id=\"RCHK-$id\">
</td>";
print "<td class='hlMarkedPic'>$marked_pic</td>";
2005-11-28 14:19:54 +01:00
if ($line["feed_title"]) {
print "<td class='hlContent'>$content_link</td>";
print "<td class='hlFeed'>
2006-12-07 06:45:12 +01:00
<a href=\"javascript:viewfeed($feed_id, '', false)\">".
$line["feed_title"]."</a>&nbsp;</td>";
2005-11-28 14:19:54 +01:00
} else {
print "<td class='hlContent' valign='middle'>";
2006-08-30 13:29:56 +02:00
print "<a href=\"javascript:view($id,$feed_id);\">" .
$line["title"];
if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
2005-11-28 14:19:54 +01:00
if ($content_preview) {
print "<span class=\"contentPreview\"> - $content_preview</span>";
}
}
print "</a>";
print "</td>";
}
print "<td class=\"hlUpdated\"><nobr>$updated_fmt&nbsp;</nobr></td>";
print "</tr>";
} else {
if ($is_unread) {
$add_class = "Unread";
} else {
$add_class = "";
}
print "<div class=\"cdmArticle$add_class\" id=\"RROW-$id\">";
print "<div class=\"cdmHeader\">";
2005-11-28 14:19:54 +01:00
2007-01-26 06:36:19 +01:00
print "<div class=\"articleUpdated\">$updated_fmt</div>";
print "<a class=\"title\"
onclick=\"javascript:toggleUnread($id, 0)\"
target=\"new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
2005-11-28 14:19:54 +01:00
print $entry_author;
if ($line["feed_title"]) {
print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
2005-11-28 14:19:54 +01:00
}
print "</div>";
print "<div class=\"cdmContent\">" . $line["content_preview"] . "</div><br clear=\"all\">";
2007-01-26 06:36:19 +01:00
print "<div class=\"cdmFooter\">";
print "$marked_pic";
2007-01-25 10:38:13 +01:00
print "<input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
$tags = get_article_tags($link, $id);
$tags_str = "";
foreach ($tags as $tag) {
$num_tags++;
$tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
}
$tags_str = preg_replace("/, $/", "", $tags_str);
2007-01-26 06:36:19 +01:00
if ($tags_str == "") $tags_str = "no tags";
2007-01-25 10:38:13 +01:00
2007-01-26 06:36:19 +01:00
print " $tags_str <a title=\"Edit tags for this article\"
2007-01-25 10:38:13 +01:00
href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
print "</div>";
# print "<div align=\"center\"><a class=\"cdmToggleLink\"
# href=\"javascript:toggleUnread($id)\">
# Toggle unread</a></div>";
print "</div>";
}
2005-11-28 13:54:43 +01:00
++$lnum;
2005-09-08 08:31:16 +02:00
}
2005-11-28 14:19:54 +01:00
if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
2005-11-28 14:19:54 +01:00
print "</table>";
}
2005-08-21 15:46:43 +02:00
2006-09-29 06:15:28 +02:00
// print_headline_subtoolbar($link,
// "javascript:catchupPage()", "Mark page as read", true, $rtl_content);
2005-11-28 13:54:43 +01:00
} else {
2006-12-20 15:58:56 +01:00
print "<div class='whiteBox'>"._('No articles found.')."</div>";
2005-08-21 17:01:18 +02:00
}
2005-08-21 15:46:43 +02:00
print "</div>";
2007-01-22 08:20:26 +01:00
print "</div>";
2005-08-21 12:13:10 +02:00
}
2005-08-22 07:38:07 +02:00
if ($op == "pref-feeds") {
module_pref_feeds($link);
}
2005-12-30 06:29:24 +01:00
if ($op == "pref-filters") {
module_pref_filters($link);
}
2005-12-29 19:25:07 +01:00
if ($op == "pref-labels") {
module_pref_labels($link);
}
2006-10-01 12:19:39 +02:00
if ($op == "pref-prefs") {
module_pref_prefs($link);
}
if ($op == "pref-users") {
module_pref_users($link);
}
2005-12-29 19:25:07 +01:00
if ($op == "help") {
module_help($link);
}
2005-12-29 19:25:07 +01:00
if ($op == "dlg") {
module_popup_dialog($link);
}
2005-12-30 06:29:24 +01:00
// update feeds of all users, may be used anonymously
if ($op == "globalUpdateFeeds") {
2005-12-30 06:29:24 +01:00
$result = db_query($link, "SELECT id FROM ttrss_users");
2005-12-29 19:25:07 +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
print "<rpc-reply>
<message msg=\"All feeds updated\"/>
</rpc-reply>";
}
2005-12-29 17:36:41 +01:00
if ($op == "user-details") {
if (WEB_DEMO_MODE || $_SESSION["access_level"] < 10) {
return;
}
/* 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'>";
2005-12-29 17:36:41 +01:00
$result = db_query($link, "SELECT login,
SUBSTRING(last_login,1,16) AS last_login,
access_level,
(SELECT COUNT(int_id) FROM ttrss_user_entries
WHERE owner_uid = id) AS stored_articles
FROM ttrss_users
WHERE id = '$uid'");
2005-12-29 17:36:41 +01:00
if (db_num_rows($result) == 0) {
print "<h1>User not found</h1>";
return;
}
# print "<h1>User Details</h1>";
2005-12-29 17:36:41 +01:00
$login = db_fetch_result($result, 0, "login");
# print "<h1>$login</h1>";
print "<table width='100%'>";
$last_login = date(get_pref($link, 'LONG_DATE_FORMAT'),
strtotime(db_fetch_result($result, 0, "last_login")));
$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
# print "<tr><td>Username</td><td>$login</td></tr>";
# print "<tr><td>Access level</td><td>$access_level</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
$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
$num_feeds = db_fetch_result($result, 0, "num_feeds");
2005-12-29 17:36:41 +01:00
print "<tr><td>Subscribed feeds count</td><td>$num_feeds</td></tr>";
/* $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");
$db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>"; */
print "</table>";
print "<h1>Subscribed feeds</h1>";
$result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
WHERE owner_uid = '$uid' ORDER BY title");
print "<ul class=\"userFeedList\">";
$row_class = "odd";
while ($line = db_fetch_assoc($result)) {
$icon_file = ICONS_URL."/".$line["id"].".ico";
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\">";
}
print "<li class=\"$row_class\">$feed_icon&nbsp;<a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
$row_class = toggleEvenOdd($row_class);
}
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\">&nbsp;...</li>";
}
print "</ul>";
print "</div>";
print "<div align='center'>
<input type='submit' class='button'
onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
// print "</body></html>";
}
if ($op == "pref-feed-browser") {
2006-10-01 12:19:39 +02:00
module_pref_feed_browser($link);
2005-12-30 06:17:23 +01:00
}
2006-07-31 13:35:50 +02:00
if ($op == "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;
$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
if (!$_SESSION["uid"] && $user && $pass) {
authenticate_user($link, $user, $pass);
}
if ($_SESSION["uid"] ||
http_authenticate_user($link)) {
generate_syndicated_feed($link, $feed, $is_cat,
$search, $search_mode, $match_on);
2006-07-31 13:35:50 +02:00
}
}
if ($op == "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"]);
$label_qparts = array();
$search_expr = getSearchSql($search, $match_on);
if ($is_cat) {
if ($feed != 0) {
$search_expr .= " AND ttrss_feeds.cat_id = $feed ";
} else {
$search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
}
} else {
if ($search_mode == "all_feeds") {
// NOOP
} else if ($search_mode == "this_cat") {
$tmp_result = db_query($link, "SELECT cat_id
FROM ttrss_feeds WHERE id = '$feed'");
$cat_id = db_fetch_result($tmp_result, 0, "cat_id");
if ($cat_id > 0) {
$search_expr .= " AND ttrss_feeds.cat_id = $cat_id ";
} else {
$search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
}
} else {
$search_expr .= " AND ttrss_feeds.id = $feed ";
}
}
$search_expr = db_escape_string($search_expr);
print $search_expr;
if ($title) {
$result = db_query($link,
"INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
VALUES ('$search_expr', '$title', '".$_SESSION["uid"]."')");
}
}
if ($op == "getUnread") {
$login = db_escape_string($_GET["login"]);
2006-08-20 14:33:37 +02:00
header("Content-Type: text/plain; charset=utf-8");
$result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
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
$print_exec_time = false;
}
if ($op == "digestTest") {
header("Content-Type: text/plain");
2006-08-21 08:43:38 +02:00
print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
$print_exec_time = false;
}
2006-08-21 06:03:26 +02:00
2006-08-21 08:43:38 +02:00
if ($op == "digestSend") {
header("Content-Type: text/plain");
send_headlines_digests($link);
2006-08-20 14:33:37 +02:00
$print_exec_time = false;
}
2005-09-07 14:42:49 +02:00
db_close($link);
2005-08-21 12:13:10 +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) ?> -->
<?php } ?>