2005-08-21 12:13:10 +02:00
|
|
|
<?
|
2005-08-23 09:32:11 +02:00
|
|
|
// header("Content-Type: application/xml");
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-21 17:23:44 +02:00
|
|
|
require_once "config.php";
|
|
|
|
require_once "functions.php";
|
|
|
|
require_once "magpierss/rss_fetch.inc";
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-23 16:47:46 +02:00
|
|
|
error_reporting(0);
|
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
$link = pg_connect(DB_CONN);
|
|
|
|
|
2005-08-23 16:47:46 +02:00
|
|
|
error_reporting (E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
|
|
|
if (!$link) {
|
|
|
|
print "Could not connect to database. Please check local configuration.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
pg_query("set client_encoding = 'utf-8'");
|
|
|
|
|
2005-08-21 12:56:27 +02:00
|
|
|
$op = $_GET["op"];
|
2005-08-22 06:56:40 +02:00
|
|
|
$fetch = $_GET["fetch"];
|
2005-08-22 13:43:07 +02:00
|
|
|
|
2005-08-23 08:43:20 +02:00
|
|
|
function outputFeedList($link) {
|
2005-08-22 13:43:07 +02:00
|
|
|
|
2005-08-23 08:43:20 +02:00
|
|
|
$result = pg_query($link, "SELECT *,
|
2005-08-21 15:46:43 +02:00
|
|
|
(SELECT count(id) FROM ttrss_entries
|
|
|
|
WHERE feed_id = ttrss_feeds.id) AS total,
|
|
|
|
(SELECT count(id) FROM ttrss_entries
|
|
|
|
WHERE feed_id = ttrss_feeds.id AND unread = true) as unread
|
|
|
|
FROM ttrss_feeds ORDER BY title");
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-26 03:13:22 +02:00
|
|
|
print "<table width=\"100%\" class=\"feeds\" id=\"feedsList\">";
|
2005-08-21 12:13:10 +02:00
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
2005-08-22 07:58:37 +02:00
|
|
|
$total_unread = 0;
|
|
|
|
|
2005-08-21 12:56:27 +02:00
|
|
|
while ($line = pg_fetch_assoc($result)) {
|
2005-08-21 17:01:18 +02:00
|
|
|
|
2005-08-21 12:56:27 +02:00
|
|
|
$feed = $line["title"];
|
2005-08-21 13:11:53 +02:00
|
|
|
$feed_id = $line["id"];
|
2005-08-25 08:57:51 +02:00
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
2005-08-21 13:11:53 +02:00
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
$total = $line["total"];
|
|
|
|
$unread = $line["unread"];
|
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
$class = ($lnum % 2) ? "even" : "odd";
|
2005-08-21 17:01:18 +02:00
|
|
|
|
|
|
|
if ($unread > 0) $class .= "Unread";
|
|
|
|
|
2005-08-22 07:58:37 +02:00
|
|
|
$total_unread += $unread;
|
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
print "<tr class=\"$class\" id=\"FEEDR-$feed_id\">";
|
|
|
|
|
2005-08-25 08:46:24 +02:00
|
|
|
$icon_file = ICONS_DIR . "/$feed_id.ico";
|
2005-08-25 08:57:51 +02:00
|
|
|
|
|
|
|
if ($subop != "piggie") {
|
|
|
|
|
|
|
|
if (file_exists($icon_file) && filesize($icon_file) > 0) {
|
|
|
|
$feed_icon = "<img width=\"16\" height=\"16\"
|
|
|
|
src=\"" . ICONS_URL . "/$feed_id.ico\">";
|
|
|
|
} else {
|
|
|
|
$feed_icon = " ";
|
|
|
|
}
|
2005-08-25 08:46:24 +02:00
|
|
|
} else {
|
2005-08-25 08:57:51 +02:00
|
|
|
$feed_icon = "<img width=\"16\" height=\"16\"
|
|
|
|
src=\"http://madoka.spb.ru/stuff/fox/tiny_piggie.png\">";
|
2005-08-25 08:46:24 +02:00
|
|
|
}
|
2005-08-25 08:57:51 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
$feed = "<a href=\"javascript:viewfeed($feed_id, 0);\">$feed</a>";
|
2005-08-25 08:46:24 +02:00
|
|
|
if (ENABLE_FEED_ICONS) {
|
|
|
|
print "<td>$feed_icon</td>";
|
|
|
|
}
|
2005-08-21 17:01:18 +02:00
|
|
|
print "<td id=\"FEEDN-$feed_id\">$feed</td>";
|
2005-08-21 19:27:06 +02:00
|
|
|
print "<td>";
|
|
|
|
print "<span id=\"FEEDU-$feed_id\">$unread</span> / ";
|
|
|
|
print "<span id=\"FEEDT-$feed_id\">$total</span>";
|
|
|
|
print "</td>";
|
2005-08-21 17:01:18 +02:00
|
|
|
|
|
|
|
print "</tr>";
|
2005-08-21 12:13:10 +02:00
|
|
|
++$lnum;
|
|
|
|
}
|
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
// print "<tr><td class=\"footer\" colspan=\"3\">
|
|
|
|
// <a href=\"javascript:update_feed_list(false,true)\">Update all feeds</a></td></tr>";
|
|
|
|
|
|
|
|
// print "<tr><td class=\"footer\" colspan=\"2\"> ";
|
|
|
|
// print "</td></tr>";
|
2005-08-21 17:23:44 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
print "</table>";
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-28 07:48:32 +02:00
|
|
|
print "<div class=\"invisible\" id=\"FEEDTU\">$total_unread</div>";
|
|
|
|
|
|
|
|
/*
|
2005-08-22 11:23:30 +02:00
|
|
|
print "<p align=\"center\">All feeds:
|
|
|
|
<a class=\"button\"
|
2005-08-23 08:30:20 +02:00
|
|
|
href=\"javascript:scheduleFeedUpdate(true)\">Update</a>";
|
2005-08-22 11:23:30 +02:00
|
|
|
|
|
|
|
print " <a class=\"button\"
|
|
|
|
href=\"javascript:catchupAllFeeds()\">Mark as read</a></p>";
|
|
|
|
|
2005-08-22 07:58:37 +02:00
|
|
|
print "<div class=\"invisible\" id=\"FEEDTU\">$total_unread</div>";
|
2005-08-28 07:48:32 +02:00
|
|
|
*/
|
2005-08-23 08:43:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ($op == "rpc") {
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
2005-08-28 07:48:32 +02:00
|
|
|
if ($subop == "updateFeed") {
|
2005-08-25 13:20:50 +02:00
|
|
|
$feed_id = $_GET["feed"];
|
|
|
|
|
2005-08-28 07:48:32 +02:00
|
|
|
$result = pg_query($link,
|
|
|
|
"SELECT feed_url FROM ttrss_feeds WHERE id = '$feed_id'");
|
2005-08-25 13:20:50 +02:00
|
|
|
|
2005-08-28 07:48:32 +02:00
|
|
|
if (pg_num_rows($result) > 0) {
|
|
|
|
$feed_url = pg_fetch_result($result, 0, "feed_url");
|
|
|
|
// update_rss_feed($link, $feed_url, $feed_id);
|
|
|
|
}
|
2005-08-25 13:20:50 +02:00
|
|
|
|
2005-08-28 07:48:32 +02:00
|
|
|
print "DONE-$feed_id";
|
2005-08-25 13:20:50 +02:00
|
|
|
|
2005-08-28 07:48:32 +02:00
|
|
|
return;
|
2005-08-25 13:20:50 +02:00
|
|
|
}
|
|
|
|
|
2005-08-23 08:43:20 +02:00
|
|
|
if ($subop == "forceUpdateAllFeeds") {
|
|
|
|
update_all_feeds($link, true);
|
|
|
|
outputFeedList($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "updateAllFeeds") {
|
|
|
|
update_all_feeds($link, false);
|
|
|
|
outputFeedList($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "catchupPage") {
|
|
|
|
|
|
|
|
$ids = split(",", $_GET["ids"]);
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
|
|
|
pg_query("UPDATE ttrss_entries SET unread=false,last_read = NOW()
|
|
|
|
WHERE id = '$id'");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
print "Marked active page as read.";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($op == "feeds") {
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
|
|
|
if ($subop == "catchupAll") {
|
|
|
|
pg_query("UPDATE ttrss_entries SET last_read = NOW(),unread = false");
|
|
|
|
}
|
|
|
|
|
|
|
|
outputFeedList($link);
|
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($op == "view") {
|
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
$id = $_GET["id"];
|
|
|
|
|
2005-08-22 11:04:38 +02:00
|
|
|
$result = pg_query("UPDATE ttrss_entries SET unread = false,last_read = NOW() WHERE id = '$id'");
|
2005-08-21 17:01:18 +02:00
|
|
|
|
2005-08-26 07:11:41 +02:00
|
|
|
$result = pg_query("SELECT title,link,content,feed_id,comments,
|
2005-08-26 05:11:37 +02:00
|
|
|
(SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url
|
|
|
|
FROM ttrss_entries
|
2005-08-21 15:46:43 +02:00
|
|
|
WHERE id = '$id'");
|
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
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
$line = pg_fetch_assoc($result);
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-26 05:11:37 +02:00
|
|
|
if ($line["icon_url"]) {
|
|
|
|
$feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
|
|
|
|
} else {
|
|
|
|
$feed_icon = " ";
|
|
|
|
}
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-26 05:11:37 +02:00
|
|
|
print "<table class=\"postTable\" width=\"100%\" cellspacing=\"0\"
|
|
|
|
cellpadding=\"0\">";
|
|
|
|
|
2005-08-23 16:47:46 +02:00
|
|
|
print "<tr class=\"titleTop\"><td align=\"right\"><b>Title:</b></td>
|
2005-08-26 05:11:37 +02:00
|
|
|
<td width=\"100%\">".$line["title"]."</td>
|
|
|
|
<td> </td></tr>";
|
2005-08-26 07:11:41 +02:00
|
|
|
|
|
|
|
if ($line["comments"] && $line["comments"] != $line["link"]) {
|
|
|
|
// print "<tr class=\"titleInner\"><td align=\"right\"><b>Comments:</b></td>
|
|
|
|
// <td><a href=\"".$line["comments"]."\">".$line["comments"]."</a></td>
|
|
|
|
// <td> </td> </tr>";
|
|
|
|
|
|
|
|
$comments_prompt = "(<a href=\"".$line["comments"]."\">Comments</a>)";
|
|
|
|
}
|
|
|
|
|
2005-08-23 16:47:46 +02:00
|
|
|
print "<tr class=\"titleBottom\"><td align=\"right\"><b>Link:</b></td>
|
2005-08-26 07:11:41 +02:00
|
|
|
<td><a href=\"".$line["link"]."\">".$line["link"]."</a> $comments_prompt</td>
|
|
|
|
<td> </td></tr>";
|
2005-08-26 05:12:40 +02:00
|
|
|
print "<tr><td valign=\"top\" class=\"post\"
|
|
|
|
colspan=\"2\">" . $line["content"] . "</td>
|
2005-08-26 05:11:37 +02:00
|
|
|
<td valign=\"top\">$feed_icon</td>
|
|
|
|
</tr>";
|
|
|
|
print "</table>";
|
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
}
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($op == "viewfeed") {
|
|
|
|
|
|
|
|
$feed = $_GET["feed"];
|
2005-08-21 15:46:43 +02:00
|
|
|
$skip = $_GET["skip"];
|
2005-08-22 11:23:30 +02:00
|
|
|
$subop = $_GET["subop"];
|
2005-08-21 17:01:18 +02:00
|
|
|
|
2005-08-21 18:16:41 +02:00
|
|
|
if (!$skip) $skip = 0;
|
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
if ($subop == "undefined") $subop = "";
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-21 18:16:41 +02:00
|
|
|
// FIXME: check for null value here
|
|
|
|
|
2005-08-23 09:32:11 +02:00
|
|
|
$result = pg_query("SELECT *,SUBSTRING(last_updated,1,16) as last_updated,
|
2005-08-21 17:23:44 +02:00
|
|
|
EXTRACT(EPOCH FROM NOW()) - EXTRACT(EPOCH FROM last_updated) as update_timeout
|
|
|
|
FROM ttrss_feeds WHERE id = '$feed'");
|
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
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
$line = pg_fetch_assoc($result);
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
if ($subop == "ForceUpdate" ||
|
|
|
|
(!$subop && $line["update_timeout"] > MIN_UPDATE_TIME)) {
|
2005-08-21 17:23:44 +02:00
|
|
|
|
|
|
|
update_rss_feed($link, $line["feed_url"], $feed);
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
} else {
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-22 11:23:30 +02:00
|
|
|
if ($subop == "MarkAllRead") {
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-22 11:04:38 +02:00
|
|
|
pg_query("UPDATE ttrss_entries SET unread = false,last_read = NOW()
|
2005-08-21 17:01:18 +02:00
|
|
|
WHERE feed_id = '$feed'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-22 13:43:07 +02:00
|
|
|
print "<table class=\"headlinesList\" id=\"headlinesList\" width=\"100%\">";
|
2005-08-21 18:16:41 +02:00
|
|
|
|
2005-08-23 09:32:11 +02:00
|
|
|
$feed_last_updated = "Updated: " . $line["last_updated"];
|
|
|
|
|
2005-08-22 11:27:32 +02:00
|
|
|
print "<tr><td class=\"search\" colspan=\"3\">
|
2005-08-25 15:31:52 +02:00
|
|
|
Search: <input id=\"searchbox\"
|
|
|
|
onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
|
|
|
|
onchange=\"javascript:search($feed);\">
|
2005-08-25 15:27:12 +02:00
|
|
|
<a class=\"button\" href=\"javascript:resetSearch()\">Reset</a>
|
2005-08-24 10:20:33 +02:00
|
|
|
</td></tr>";
|
2005-08-23 09:32:11 +02:00
|
|
|
print "<tr>
|
|
|
|
<td colspan=\"3\" class=\"title\">" . $line["title"] . "</td></tr>";
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-25 15:27:12 +02:00
|
|
|
$search = $_GET["search"];
|
|
|
|
|
|
|
|
if (search) {
|
2005-08-21 18:16:41 +02:00
|
|
|
$search_query_part = "(upper(title) LIKE upper('%$search%')
|
|
|
|
OR content LIKE '%$search%') AND";
|
|
|
|
}
|
|
|
|
|
2005-08-22 11:54:21 +02:00
|
|
|
$result = pg_query("SELECT count(id) AS total_entries
|
2005-08-25 16:12:10 +02:00
|
|
|
FROM ttrss_entries WHERE
|
|
|
|
$search_query_part
|
|
|
|
feed_id = '$feed'");
|
2005-08-22 11:54:21 +02:00
|
|
|
|
|
|
|
$total_entries = pg_fetch_result($result, 0, "total_entries");
|
|
|
|
|
2005-08-22 11:04:38 +02:00
|
|
|
$result = pg_query("SELECT
|
|
|
|
id,title,updated,unread,feed_id,
|
|
|
|
EXTRACT(EPOCH FROM last_read) AS last_read_ts,
|
|
|
|
EXTRACT(EPOCH FROM updated) AS updated_ts
|
|
|
|
FROM
|
|
|
|
ttrss_entries
|
|
|
|
WHERE
|
2005-08-21 18:16:41 +02:00
|
|
|
$search_query_part
|
|
|
|
feed_id = '$feed' ORDER BY updated DESC LIMIT ".HEADLINES_PER_PAGE." OFFSET $skip");
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
$lnum = 0;
|
2005-08-26 08:18:48 +02:00
|
|
|
|
|
|
|
$num_unread = 0;
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
while ($line = pg_fetch_assoc($result)) {
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
$class = ($lnum % 2) ? "even" : "odd";
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-22 11:04:38 +02:00
|
|
|
if ($line["last_read_ts"] < $line["updated_ts"] && $line["unread"] == "f") {
|
2005-08-25 12:28:54 +02:00
|
|
|
$update_pic = "<img src=\"images/updated.png\" alt=\"Updated\">";
|
2005-08-26 08:18:48 +02:00
|
|
|
++$num_unread;
|
2005-08-22 11:04:38 +02:00
|
|
|
} else {
|
|
|
|
$update_pic = " ";
|
|
|
|
}
|
|
|
|
|
2005-08-26 08:18:48 +02:00
|
|
|
if ($line["unread"] == "t") {
|
2005-08-21 17:01:18 +02:00
|
|
|
$class .= "Unread";
|
2005-08-26 08:18:48 +02:00
|
|
|
++$num_unread;
|
|
|
|
}
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-22 11:04:38 +02:00
|
|
|
$id = $line["id"];
|
|
|
|
$feed_id = $line["feed_id"];
|
|
|
|
|
|
|
|
$content_link = "<a href=\"javascript:view($id,$feed_id);\">" .
|
|
|
|
$line["title"] . "</a>";
|
|
|
|
|
|
|
|
print "<tr class='$class' id='RROW-$id'>";
|
|
|
|
|
|
|
|
print "<td id='FUPDPIC-$id' valign='center' class='headlineUpdateMark'>$update_pic</td>";
|
|
|
|
|
2005-08-26 03:13:22 +02:00
|
|
|
print "<td class='headlineUpdated'>
|
|
|
|
<a href=\"javascript:view($id,$feed_id);\">".$line["updated"]."</a></td>";
|
2005-08-21 17:01:18 +02:00
|
|
|
print "<td class='headlineTitle'>$content_link</td>";
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
print "</tr>";
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
++$lnum;
|
|
|
|
}
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 18:16:41 +02:00
|
|
|
if ($lnum == 0) {
|
|
|
|
print "<tr><td align='center'>No entries found.</td></tr>";
|
2005-08-23 16:54:18 +02:00
|
|
|
}
|
2005-08-21 18:16:41 +02:00
|
|
|
|
2005-08-23 16:54:18 +02:00
|
|
|
while ($lnum < HEADLINES_PER_PAGE) {
|
|
|
|
++$lnum;
|
|
|
|
print "<tr><td> </td></tr>";
|
2005-08-21 18:16:41 +02:00
|
|
|
}
|
|
|
|
|
2005-08-23 16:54:18 +02:00
|
|
|
// start unholy navbar block
|
|
|
|
|
2005-08-22 11:04:38 +02:00
|
|
|
print "<tr><td colspan=\"3\" class=\"headlineToolbar\">";
|
2005-08-25 15:04:57 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
$next_skip = $skip + HEADLINES_PER_PAGE;
|
|
|
|
$prev_skip = $skip - HEADLINES_PER_PAGE;
|
2005-08-25 15:04:57 +02:00
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
print "Navigate: ";
|
2005-08-22 11:54:21 +02:00
|
|
|
|
|
|
|
if ($prev_skip >= 0) {
|
|
|
|
print "<a class=\"button\"
|
|
|
|
href=\"javascript:viewfeed($feed, $prev_skip);\">Previous Page</a>";
|
|
|
|
} else {
|
|
|
|
print "<a class=\"disabledButton\">Previous Page</a>";
|
|
|
|
}
|
2005-08-21 17:01:18 +02:00
|
|
|
print " ";
|
2005-08-22 11:54:21 +02:00
|
|
|
|
|
|
|
if ($next_skip < $total_entries) {
|
|
|
|
print "<a class=\"button\"
|
|
|
|
href=\"javascript:viewfeed($feed, $next_skip);\">Next Page</a>";
|
|
|
|
} else {
|
|
|
|
print "<a class=\"disabledButton\">Next Page</a>";
|
|
|
|
}
|
2005-08-22 14:47:13 +02:00
|
|
|
print " Feed: ";
|
|
|
|
|
2005-08-21 18:16:41 +02:00
|
|
|
print "<a class=\"button\"
|
2005-08-22 14:47:13 +02:00
|
|
|
href=\"javascript:viewfeed($feed, 0, 'ForceUpdate');\">Update</a>";
|
2005-08-22 13:43:07 +02:00
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
print " Mark as read: ";
|
2005-08-22 13:43:07 +02:00
|
|
|
|
2005-08-26 08:18:48 +02:00
|
|
|
if ($num_unread > 0) {
|
|
|
|
print "<a class=\"button\" id=\"btnCatchupPage\"
|
|
|
|
href=\"javascript:catchupPage($feed);\">This Page</a>";
|
|
|
|
print " ";
|
|
|
|
} else {
|
|
|
|
print "<a class=\"disabledButton\">This Page</a>";
|
|
|
|
print " ";
|
|
|
|
}
|
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
print "<a class=\"button\"
|
2005-08-22 07:23:49 +02:00
|
|
|
href=\"javascript:viewfeed($feed, $skip, 'MarkAllRead');\">All Posts</a>";
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
print "</td></tr>";
|
2005-08-23 09:32:11 +02:00
|
|
|
|
|
|
|
// end unholy navbar block
|
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
print "</table>";
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
$result = pg_query("SELECT id, (SELECT count(id) FROM ttrss_entries
|
|
|
|
WHERE feed_id = ttrss_feeds.id) AS total,
|
|
|
|
(SELECT count(id) FROM ttrss_entries
|
|
|
|
WHERE feed_id = ttrss_feeds.id AND unread = true) as unread
|
|
|
|
FROM ttrss_feeds WHERE id = '$feed'");
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
$total = pg_fetch_result($result, 0, "total");
|
|
|
|
$unread = pg_fetch_result($result, 0, "unread");
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
print "<div class=\"invisible\" id=\"FACTIVE\">$feed</div>";
|
|
|
|
print "<div class=\"invisible\" id=\"FTOTAL\">$total</div>";
|
|
|
|
print "<div class=\"invisible\" id=\"FUNREAD\">$unread</div>";
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
|
|
|
|
2005-08-22 07:38:07 +02:00
|
|
|
if ($op == "pref-rpc") {
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-22 07:38:07 +02:00
|
|
|
$subop = $_GET["subop"];
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
if ($subop == "unread") {
|
|
|
|
$ids = split(",", $_GET["ids"]);
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
pg_query("UPDATE ttrss_entries SET unread = true WHERE feed_id = '$id'");
|
|
|
|
}
|
2005-08-22 07:38:07 +02:00
|
|
|
|
|
|
|
print "Marked selected feeds as read.";
|
2005-08-22 07:23:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "read") {
|
|
|
|
$ids = split(",", $_GET["ids"]);
|
|
|
|
foreach ($ids as $id) {
|
2005-08-22 11:04:38 +02:00
|
|
|
pg_query("UPDATE ttrss_entries
|
|
|
|
SET unread = false,last_read = NOW() WHERE feed_id = '$id'");
|
2005-08-22 07:23:49 +02:00
|
|
|
}
|
2005-08-22 07:38:07 +02:00
|
|
|
|
|
|
|
print "Marked selected feeds as unread.";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($op == "pref-feeds") {
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
if ($subop == "editSave") {
|
|
|
|
$feed_title = pg_escape_string($_GET["t"]);
|
|
|
|
$feed_link = pg_escape_string($_GET["l"]);
|
|
|
|
$feed_id = $_GET["id"];
|
|
|
|
|
|
|
|
$result = pg_query("UPDATE ttrss_feeds SET
|
|
|
|
title = '$feed_title', feed_url = '$feed_link' WHERE id = '$feed_id'");
|
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
}
|
|
|
|
|
2005-08-22 06:56:40 +02:00
|
|
|
if ($subop == "remove") {
|
|
|
|
|
2005-08-23 13:34:07 +02:00
|
|
|
if (!WEB_DEMO_MODE) {
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-23 13:34:07 +02:00
|
|
|
$ids = split(",", $_GET["ids"]);
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
pg_query("BEGIN");
|
|
|
|
pg_query("DELETE FROM ttrss_entries WHERE feed_id = '$id'");
|
|
|
|
pg_query("DELETE FROM ttrss_feeds WHERE id = '$id'");
|
|
|
|
pg_query("COMMIT");
|
2005-08-26 05:41:45 +02:00
|
|
|
|
|
|
|
if (file_exists(ICONS_DIR . "/$id.ico")) {
|
|
|
|
unlink(ICONS_DIR . "/$id.ico");
|
|
|
|
}
|
2005-08-23 13:34:07 +02:00
|
|
|
}
|
2005-08-22 06:56:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "add") {
|
2005-08-23 13:34:07 +02:00
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-23 13:34:07 +02:00
|
|
|
$feed_link = pg_escape_string($_GET["link"]);
|
|
|
|
|
|
|
|
$result = pg_query(
|
|
|
|
"INSERT INTO ttrss_feeds (feed_url,title) VALUES ('$feed_link', '')");
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-26 09:19:31 +02:00
|
|
|
$result = pg_query(
|
|
|
|
"SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'");
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-23 13:34:07 +02:00
|
|
|
$feed_id = pg_fetch_result($result, 0, "id");
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-23 13:34:07 +02:00
|
|
|
if ($feed_id) {
|
|
|
|
update_rss_feed($link, $feed_link, $feed_id);
|
|
|
|
}
|
|
|
|
}
|
2005-08-22 06:56:40 +02:00
|
|
|
}
|
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
$result = pg_query("SELECT
|
|
|
|
id,title,feed_url,substring(last_updated,1,16) as last_updated
|
|
|
|
FROM
|
|
|
|
ttrss_feeds ORDER by title");
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-22 06:56:40 +02:00
|
|
|
print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
|
2005-08-22 03:17:12 +02:00
|
|
|
print "<tr class=\"title\">
|
2005-08-26 08:56:00 +02:00
|
|
|
<td> </td><td>Select</td><td width=\"40%\">Title</td>
|
|
|
|
<td width=\"40%\">Link</td><td>Last Updated</td></tr>";
|
2005-08-22 03:17:12 +02:00
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
while ($line = pg_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$class = ($lnum % 2) ? "even" : "odd";
|
2005-08-26 09:05:16 +02:00
|
|
|
|
2005-08-22 06:56:40 +02:00
|
|
|
$feed_id = $line["id"];
|
2005-08-26 08:56:00 +02:00
|
|
|
|
|
|
|
$edit_feed_id = $_GET["id"];
|
|
|
|
|
2005-08-26 09:05:16 +02:00
|
|
|
if ($subop == "edit" && $feed_id != $edit_feed_id) {
|
|
|
|
$class .= "Grayed";
|
|
|
|
}
|
|
|
|
|
2005-08-22 06:56:40 +02:00
|
|
|
print "<tr class=\"$class\" id=\"FEEDR-$feed_id\">";
|
2005-08-22 03:17:12 +02:00
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
$icon_file = ICONS_DIR . "/$feed_id.ico";
|
|
|
|
|
|
|
|
if (file_exists($icon_file) && filesize($icon_file) > 0) {
|
|
|
|
$feed_icon = "<img width=\"16\" height=\"16\"
|
|
|
|
src=\"" . ICONS_URL . "/$feed_id.ico\">";
|
|
|
|
} else {
|
|
|
|
$feed_icon = " ";
|
|
|
|
}
|
|
|
|
print "<td align='center'>$feed_icon</td>";
|
|
|
|
|
2005-08-26 09:05:16 +02:00
|
|
|
if (!$edit_feed_id || $subop != "edit") {
|
2005-08-26 08:56:00 +02:00
|
|
|
|
|
|
|
print "<td><input onclick='toggleSelectRow(this);'
|
2005-08-22 06:56:40 +02:00
|
|
|
type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
|
2005-08-26 08:56:00 +02:00
|
|
|
|
|
|
|
print "<td><a href=\"javascript:editFeed($feed_id);\">" .
|
|
|
|
$line["title"] . "</td>";
|
|
|
|
print "<td><a href=\"javascript:editFeed($feed_id);\">" .
|
|
|
|
$line["feed_url"] . "</td>";
|
2005-08-26 09:05:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
} else if ($feed_id != $edit_feed_id) {
|
|
|
|
|
2005-08-26 09:19:31 +02:00
|
|
|
print "<td><input disabled=\"true\" type=\"checkbox\"
|
|
|
|
id=\"FRCHK-".$line["id"]."\"></td>";
|
2005-08-26 09:05:16 +02:00
|
|
|
|
|
|
|
print "<td>".$line["title"]."</td>";
|
|
|
|
print "<td>".$line["feed_url"]."</td>";
|
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
} else {
|
|
|
|
|
2005-08-26 09:19:31 +02:00
|
|
|
print "<td><input disabled=\"true\" type=\"checkbox\"></td>";
|
2005-08-26 08:56:00 +02:00
|
|
|
|
|
|
|
print "<td><input id=\"iedit_title\" value=\"".$line["title"]."\"></td>";
|
|
|
|
print "<td><input id=\"iedit_link\" value=\"".$line["feed_url"]."\"></td>";
|
|
|
|
|
|
|
|
}
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
print "<td>" . $line["last_updated"] . "</td>";
|
2005-08-26 08:56:00 +02:00
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
print "</tr>";
|
|
|
|
|
|
|
|
++$lnum;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
print "<p>";
|
|
|
|
|
|
|
|
if ($subop == "edit") {
|
|
|
|
print "Edit feed:
|
|
|
|
<a class=\"button\" href=\"javascript:feedEditCancel()\">Cancel</a>
|
|
|
|
<a class=\"button\" href=\"javascript:feedEditSave()\">Save</a>";
|
|
|
|
} else {
|
|
|
|
|
|
|
|
print "
|
|
|
|
Selection:
|
2005-08-26 09:19:31 +02:00
|
|
|
<a class=\"button\"
|
|
|
|
href=\"javascript:editSelectedFeed()\">Edit</a>
|
2005-08-26 08:56:00 +02:00
|
|
|
<a class=\"buttonWarn\"
|
|
|
|
href=\"javascript:removeSelectedFeeds()\">Remove</a>
|
|
|
|
<a class=\"button\"
|
|
|
|
href=\"javascript:readSelectedFeeds()\">Mark as read</a>
|
|
|
|
<a class=\"button\"
|
2005-08-26 09:19:31 +02:00
|
|
|
href=\"javascript:unreadSelectedFeeds()\">Mark as unread</a>
|
|
|
|
Page:
|
|
|
|
<a class=\"button\"
|
2005-09-02 06:41:30 +02:00
|
|
|
href=\"javascript:updateFeedList()\">Refresh</a>
|
|
|
|
OPML:
|
|
|
|
<a class=\"button\"
|
2005-09-02 12:18:45 +02:00
|
|
|
href=\"opml.php?op=import\">Import</a>
|
2005-09-02 06:41:30 +02:00
|
|
|
<a class=\"button\"
|
2005-09-02 12:18:45 +02:00
|
|
|
href=\"opml.php?op=export\">Export</a>";
|
2005-09-02 06:41:30 +02:00
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
}
|
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pg_close($link);
|
2005-08-21 12:13:10 +02:00
|
|
|
?>
|