ttrss/backend.php

352 lines
8.7 KiB
PHP
Raw Normal View History

2005-08-21 12:13:10 +02:00
<?
header("Content-Type: application/xml");
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-21 15:46:43 +02:00
$link = pg_connect(DB_CONN);
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-21 17:23:44 +02:00
2005-08-21 12:13:10 +02:00
if ($op == "feeds") {
$subop = $_GET["subop"];
if ($subop == "catchupAll") {
pg_query("UPDATE ttrss_entries SET last_read = NOW(),unread = false");
}
2005-08-22 08:13:33 +02:00
if ($fetch) update_all_feeds($link, $fetch);
2005-08-21 17:23:44 +02:00
2005-08-21 15:46:43 +02:00
$result = pg_query("SELECT *,
(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-21 17:23:44 +02:00
print "<table width=\"100%\" class=\"feeds\">";
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-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\">";
$feed = "<a href=\"javascript:viewfeed($feed_id, 0);\">$feed</a>";
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>&nbsp;/&nbsp;";
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;
}
// 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\">&nbsp;";
// 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
print "<p align=\"center\">All feeds:
<a class=\"button\"
href=\"javascript:updateFeedList(false,true)\">Update</a>";
print "&nbsp;<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-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-21 15:46:43 +02:00
$result = pg_query("SELECT title,link,content FROM ttrss_entries
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-21 15:46:43 +02:00
print "<table class=\"feedOverview\">";
print "<tr><td><b>Title:</b></td><td>".$line["title"]."</td></tr>";
print "<tr><td><b>Link:</b></td><td><a href=\"".$line["link"]."\">".$line["link"]."</a></td></tr>";
print "</table>";
print $line["content"];
}
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"];
$subop = $_GET["subop"];
2005-08-21 17:01:18 +02:00
2005-08-21 18:16:41 +02:00
if (!$skip) $skip = 0;
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-21 17:23:44 +02:00
$result = pg_query("SELECT *,
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
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
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-22 07:23:49 +02:00
if ($subop == "MarkPageRead") {
2005-08-22 07:23:49 +02:00
// pg_query("UPDATE ttrss_entries SET unread = false
// WHERE feed_id = '$feed' ORDER BY updated OFFSET $skip LIMIT 1");
}
2005-08-21 17:01:18 +02:00
}
}
2005-08-21 15:46:43 +02:00
2005-08-21 17:01:18 +02:00
print "<table class=\"headlines\" width=\"100%\">";
2005-08-21 18:16:41 +02:00
2005-08-22 11:27:32 +02:00
print "<tr><td class=\"search\" colspan=\"3\">
2005-08-22 07:23:49 +02:00
Search: <input onchange=\"javascript:search($feed,this);\"></td></tr>";
2005-08-22 11:04:38 +02:00
print "<tr><td colspan=\"3\" class=\"title\">" . $line["title"] . "</td></tr>";
2005-08-21 15:46:43 +02:00
2005-08-21 18:16:41 +02:00
if ($ext == "SEARCH") {
$search = $_GET["search"];
$search_query_part = "(upper(title) LIKE upper('%$search%')
OR content LIKE '%$search%') AND";
}
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-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") {
$update_pic = "<img src=\"updated.png\" alt=\"Updated\">";
} else {
$update_pic = "&nbsp;";
}
2005-08-21 17:01:18 +02:00
if ($line["unread"] == "t")
$class .= "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-21 17:01:18 +02:00
print "<td class='headlineUpdated'>".$line["updated"]."</td>";
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-22 11:04:38 +02:00
print "<tr><td colspan=\"3\" class=\"headlineToolbar\">";
2005-08-21 15:46:43 +02:00
2005-08-21 17:01:18 +02:00
$next_skip = $skip + HEADLINES_PER_PAGE;
$prev_skip = $skip - HEADLINES_PER_PAGE;
2005-08-22 07:23:49 +02:00
print "Navigate: ";
2005-08-21 17:01:18 +02:00
print "<a class=\"button\"
href=\"javascript:viewfeed($feed, $prev_skip);\">Previous Page</a>";
print "&nbsp;";
print "<a class=\"button\"
href=\"javascript:viewfeed($feed, $next_skip);\">Next Page</a>";
2005-08-22 07:23:49 +02:00
print "&nbsp;";
2005-08-22 11:04:38 +02:00
print "<a class=\"button\"
href=\"javascript:viewfeed($feed, $skip, '');\">Refresh Page</a>";
print "&nbsp;";
2005-08-21 18:16:41 +02:00
print "<a class=\"button\"
href=\"javascript:viewfeed($feed, 0, 'ForceUpdate');\">Update</a>";
2005-08-22 07:23:49 +02:00
print "&nbsp;&nbsp;Mark as read: ";
print "<a class=\"button\"
href=\"javascript:viewfeed($feed, $skip, 'MarkPageRead');\">This Page</a>";
print "&nbsp;";
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>";
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"];
if ($subop == "edit") {
print "<p>[Edit feed placeholder]</p>";
2005-08-22 07:23:49 +02:00
}
2005-08-22 06:56:40 +02:00
if ($subop == "remove") {
$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");
}
}
if ($subop == "add") {
$feed_link = pg_escape_string($_GET["link"]);
$result = pg_query(
"INSERT INTO ttrss_feeds (feed_url,title) VALUES ('$feed_link', '')");
$result = pg_query("SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'");
$feed_id = pg_fetch_result($result, 0, "id");
if ($feed_id) {
update_rss_feed($link, $feed_link, $feed_id);
}
}
2005-08-22 03:17:12 +02:00
$result = pg_query("SELECT * 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\">
<td>Select</td><td>Title</td><td>Link</td><td>Last Updated</td></tr>";
$lnum = 0;
while ($line = pg_fetch_assoc($result)) {
$class = ($lnum % 2) ? "even" : "odd";
2005-08-22 06:56:40 +02:00
$feed_id = $line["id"];
print "<tr class=\"$class\" id=\"FEEDR-$feed_id\">";
2005-08-22 03:17:12 +02:00
print "<td><input onclick='toggleSelectRow(this);'
2005-08-22 06:56:40 +02:00
type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
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-22 03:17:12 +02:00
print "<td>" . $line["last_updated"] . "</td>";
print "</tr>";
++$lnum;
}
print "</table>";
}
pg_close($link);
2005-08-21 12:13:10 +02:00
?>