2005-08-21 12:13:10 +02:00
|
|
|
<?
|
2005-11-17 19:04:38 +01:00
|
|
|
session_start();
|
2005-09-08 14:10:07 +02:00
|
|
|
|
2005-11-17 19:04:38 +01:00
|
|
|
define(SCHEMA_VERSION, 2);
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-08-21 17:23:44 +02:00
|
|
|
require_once "config.php";
|
2005-09-07 14:17:16 +02:00
|
|
|
require_once "db.php";
|
2005-11-16 17:57:08 +01:00
|
|
|
require_once "db-prefs.php";
|
2005-08-21 17:23:44 +02:00
|
|
|
require_once "functions.php";
|
|
|
|
require_once "magpierss/rss_fetch.inc";
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-11-17 19:04:38 +01:00
|
|
|
$_SESSION["uid"] = PLACEHOLDER_UID; // FIXME: placeholder
|
2005-11-17 19:29:13 +01:00
|
|
|
$_SESSION["name"] = PLACEHOLDER_NAME;
|
2005-11-17 19:04:38 +01:00
|
|
|
|
|
|
|
$op = $_REQUEST["op"];
|
|
|
|
|
|
|
|
if ($op == "rpc" || $op == "updateAllFeeds") {
|
|
|
|
header("Content-Type: application/xml");
|
|
|
|
}
|
|
|
|
|
2005-10-23 17:48:58 +02:00
|
|
|
$script_started = getmicrotime();
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-09-14 15:40:26 +02:00
|
|
|
if (!$link) {
|
|
|
|
if (DB_TYPE == "mysql") {
|
|
|
|
print mysql_error();
|
|
|
|
}
|
|
|
|
// PG seems to display its own errors just fine by default.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
pg_query("set client_encoding = 'utf-8'");
|
|
|
|
}
|
2005-11-10 05:35:39 +01:00
|
|
|
|
2005-11-16 08:59:46 +01:00
|
|
|
/*
|
2005-11-10 05:35:39 +01:00
|
|
|
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
|
|
|
|
|
|
|
|
$schema_version = db_fetch_result($result, 0, "schema_version");
|
|
|
|
|
|
|
|
if ($schema_version != SCHEMA_VERSION) {
|
|
|
|
print "Error: database schema is invalid
|
|
|
|
(got version $schema_version; expected ".SCHEMA_VERSION.")";
|
|
|
|
return;
|
|
|
|
}
|
2005-11-16 08:59:46 +01:00
|
|
|
*/
|
|
|
|
|
2005-08-22 06:56:40 +02:00
|
|
|
$fetch = $_GET["fetch"];
|
2005-08-22 13:43:07 +02:00
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
/* FIXME this needs reworking */
|
|
|
|
|
2005-10-23 17:40:55 +02:00
|
|
|
function getGlobalCounters($link) {
|
|
|
|
$result = db_query($link, "SELECT count(id) as c_id FROM ttrss_entries
|
2005-11-17 19:04:38 +01:00
|
|
|
WHERE unread = true AND owner_uid = " . $_SESSION["uid"]);
|
2005-10-23 17:40:55 +02:00
|
|
|
$c_id = db_fetch_result($result, 0, "c_id");
|
|
|
|
print "<counter id='global-unread' counter='$c_id'/>";
|
|
|
|
}
|
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
function getTagCounters($link) {
|
|
|
|
$result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
|
|
|
|
FROM ttrss_tags,ttrss_entries WHERE
|
2005-11-17 19:04:38 +01:00
|
|
|
ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
|
2005-09-09 09:45:54 +02:00
|
|
|
post_id = ttrss_entries.id AND unread = true GROUP BY tag_name
|
|
|
|
UNION
|
2005-11-17 19:04:38 +01:00
|
|
|
select tag_name,0 as count FROM ttrss_tags
|
|
|
|
WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]);
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
$tags = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$tags[$line["tag_name"]] += $line["count"];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (array_keys($tags) as $tag) {
|
|
|
|
$unread = $tags[$tag];
|
|
|
|
|
|
|
|
$tag = htmlspecialchars($tag);
|
|
|
|
print "<tag id=\"$tag\" counter=\"$unread\"/>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-08 14:10:07 +02:00
|
|
|
function getLabelCounters($link) {
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT count(id) as count FROM ttrss_entries
|
2005-11-17 19:04:38 +01:00
|
|
|
WHERE marked = true AND unread = true AND owner_uid = ".$_SESSION["uid"]);
|
2005-09-08 14:10:07 +02:00
|
|
|
|
2005-09-08 14:46:54 +02:00
|
|
|
$count = db_fetch_result($result, 0, "count");
|
2005-09-08 14:10:07 +02:00
|
|
|
|
|
|
|
print "<label id=\"-1\" counter=\"$count\"/>";
|
|
|
|
|
2005-11-17 19:04:38 +01:00
|
|
|
$result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
|
|
|
|
ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
|
2005-09-08 14:10:07 +02:00
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$id = -$line["id"] - 11;
|
|
|
|
|
|
|
|
error_reporting (0);
|
2005-09-08 14:46:54 +02:00
|
|
|
|
|
|
|
$tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_entries
|
2005-09-09 03:21:30 +02:00
|
|
|
WHERE (" . $line["sql_exp"] . ") AND unread = true");
|
2005-09-08 14:10:07 +02:00
|
|
|
|
2005-09-08 14:46:54 +02:00
|
|
|
$count = db_fetch_result($tmp_result, 0, "count");
|
2005-09-08 14:10:07 +02:00
|
|
|
|
2005-10-16 11:03:18 +02:00
|
|
|
print "<label id=\"$id\" counter=\"$count\"/>";
|
2005-09-08 14:10:07 +02:00
|
|
|
|
|
|
|
error_reporting (E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-09 04:47:39 +02:00
|
|
|
function getFeedCounter($link, $id) {
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
count(id) as count FROM ttrss_entries
|
2005-11-17 19:04:38 +01:00
|
|
|
WHERE feed_id = '$id' AND unread = true");
|
2005-09-09 04:47:39 +02:00
|
|
|
|
|
|
|
$count = db_fetch_result($result, 0, "count");
|
|
|
|
|
|
|
|
print "<feed id=\"$id\" counter=\"$count\"/>";
|
|
|
|
}
|
2005-09-08 14:10:07 +02:00
|
|
|
|
2005-09-09 04:47:39 +02:00
|
|
|
function getFeedCounters($link) {
|
|
|
|
|
2005-09-08 14:10:07 +02:00
|
|
|
$result = db_query($link, "SELECT id,
|
|
|
|
(SELECT count(id) FROM ttrss_entries WHERE feed_id = ttrss_feeds.id
|
|
|
|
AND unread = true) as count
|
2005-11-17 19:04:38 +01:00
|
|
|
FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"]);
|
2005-09-08 14:10:07 +02:00
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$id = $line["id"];
|
|
|
|
$count = $line["count"];
|
|
|
|
|
|
|
|
print "<feed id=\"$id\" counter=\"$count\"/>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
function outputFeedList($link, $tags = false) {
|
2005-08-22 13:43:07 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
print "<html><head>
|
|
|
|
<title>Tiny Tiny RSS : Feedlist</title>
|
2005-11-16 10:20:11 +01:00
|
|
|
<link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">";
|
|
|
|
|
2005-11-16 18:37:45 +01:00
|
|
|
if (get_pref($link, 'USE_COMPACT_STYLESHEET')) {
|
2005-11-16 10:20:11 +01:00
|
|
|
print "<link rel=\"stylesheet\" type=\"text/css\"
|
|
|
|
href=\"tt-rss_compact.css\"/>";
|
|
|
|
} else {
|
|
|
|
print "<link title=\"Compact Stylesheet\" rel=\"alternate stylesheet\"
|
|
|
|
type=\"text/css\" href=\"tt-rss_compact.css\"/>";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<script type=\"text/javascript\" src=\"functions.js\"></script>
|
2005-09-07 05:53:29 +02:00
|
|
|
<script type=\"text/javascript\" src=\"feedlist.js\"></script>
|
|
|
|
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
|
2005-11-15 10:13:49 +01:00
|
|
|
</head><body onload=\"init()\">";
|
2005-09-08 08:31:16 +02:00
|
|
|
|
|
|
|
print "<ul class=\"feedList\" id=\"feedList\">";
|
|
|
|
|
2005-11-17 19:04:38 +01:00
|
|
|
$owner_uid = $_SESSION["uid"];
|
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
if (!$tags) {
|
2005-09-08 08:31:16 +02:00
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
/* virtual feeds */
|
2005-09-08 08:31:16 +02:00
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
$result = db_query($link, "SELECT count(id) as num_starred
|
2005-11-17 19:04:38 +01:00
|
|
|
FROM ttrss_entries WHERE marked = true AND unread = true AND owner_uid = '$owner_uid'");
|
2005-09-09 09:45:54 +02:00
|
|
|
$num_starred = db_fetch_result($result, 0, "num_starred");
|
2005-09-08 08:31:16 +02:00
|
|
|
|
2005-11-15 10:13:49 +01:00
|
|
|
$class = "virt";
|
2005-09-09 09:58:21 +02:00
|
|
|
|
|
|
|
if ($num_starred > 0) $class .= "Unread";
|
|
|
|
|
|
|
|
printFeedEntry(-1, $class, "Starred articles", $num_starred,
|
2005-11-16 18:47:58 +01:00
|
|
|
"images/mark_set.png", $link);
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-11-16 18:37:45 +01:00
|
|
|
if (get_pref($link, 'ENABLE_LABELS')) {
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
$result = db_query($link, "SELECT id,sql_exp,description FROM
|
2005-11-17 19:04:38 +01:00
|
|
|
ttrss_labels WHERE owner_uid = '$owner_uid' ORDER by description");
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
if (db_num_rows($result) > 0) {
|
|
|
|
print "<li><hr></li>";
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
error_reporting (0);
|
|
|
|
|
|
|
|
$tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_entries
|
|
|
|
WHERE (" . $line["sql_exp"] . ") AND unread = true");
|
|
|
|
|
|
|
|
$count = db_fetch_result($tmp_result, 0, "count");
|
|
|
|
|
2005-11-15 10:13:49 +01:00
|
|
|
$class = "label";
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
if ($count > 0) {
|
|
|
|
$class .= "Unread";
|
|
|
|
}
|
|
|
|
|
|
|
|
error_reporting (E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
|
|
|
printFeedEntry(-$line["id"]-11,
|
2005-11-16 18:47:58 +01:00
|
|
|
$class, $line["description"], $count, "images/label.png", $link);
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
}
|
2005-09-08 09:43:44 +02:00
|
|
|
}
|
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
print "<li><hr></li>";
|
|
|
|
|
|
|
|
$result = db_query($link, "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
|
2005-11-17 19:04:38 +01:00
|
|
|
FROM ttrss_feeds WHERE owner_uid = '$owner_uid' ORDER BY title");
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
$actid = $_GET["actid"];
|
|
|
|
|
|
|
|
/* real feeds */
|
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
$total_unread = 0;
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
$feed = $line["title"];
|
|
|
|
$feed_id = $line["id"];
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
|
|
|
$total = $line["total"];
|
|
|
|
$unread = $line["unread"];
|
|
|
|
|
|
|
|
// $class = ($lnum % 2) ? "even" : "odd";
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-11-15 10:13:49 +01:00
|
|
|
$class = "feed";
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
if ($unread > 0) $class .= "Unread";
|
|
|
|
|
|
|
|
if ($actid == $feed_id) {
|
|
|
|
$class .= "Selected";
|
2005-09-09 03:21:30 +02:00
|
|
|
}
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
$total_unread += $unread;
|
|
|
|
|
2005-11-16 18:47:58 +01:00
|
|
|
printFeedEntry($feed_id, $class, $feed, $unread, "icons/$feed_id.ico", $link);
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
++$lnum;
|
2005-09-08 09:43:44 +02:00
|
|
|
}
|
2005-09-09 09:45:54 +02:00
|
|
|
} else {
|
2005-08-21 17:01:18 +02:00
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
// tags
|
2005-08-21 17:01:18 +02:00
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
$result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
|
|
|
|
FROM ttrss_tags,ttrss_entries WHERE
|
2005-11-17 19:04:38 +01:00
|
|
|
post_id = ttrss_entries.id AND unread = true
|
|
|
|
AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
|
2005-09-09 09:45:54 +02:00
|
|
|
UNION
|
2005-11-17 19:04:38 +01:00
|
|
|
select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'");
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
$tags = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$tags[$line["tag_name"]] += $line["count"];
|
2005-09-07 05:53:29 +02:00
|
|
|
}
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
foreach (array_keys($tags) as $tag) {
|
|
|
|
|
|
|
|
$unread = $tags[$tag];
|
|
|
|
|
|
|
|
$class = "odd";
|
|
|
|
|
|
|
|
if ($unread > 0) {
|
|
|
|
$class .= "Unread";
|
|
|
|
}
|
|
|
|
|
2005-11-16 18:47:58 +01:00
|
|
|
printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
|
2005-09-09 09:45:54 +02:00
|
|
|
|
|
|
|
}
|
2005-09-07 05:53:29 +02:00
|
|
|
|
2005-09-07 09:19:14 +02:00
|
|
|
}
|
2005-08-21 17:23:44 +02:00
|
|
|
|
2005-10-16 10:04:17 +02:00
|
|
|
if (db_num_rows($result) == 0) {
|
2005-11-17 19:04:38 +01:00
|
|
|
print "<li>No tags/feeds to display.</li>";
|
2005-10-16 10:04:17 +02:00
|
|
|
}
|
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
print "</ul>";
|
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-23 08:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ($op == "rpc") {
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
2005-09-08 14:10:07 +02:00
|
|
|
if ($subop == "getLabelCounters") {
|
2005-09-09 04:47:39 +02:00
|
|
|
$aid = $_GET["aid"];
|
2005-09-08 14:10:07 +02:00
|
|
|
print "<rpc-reply>";
|
|
|
|
getLabelCounters($link);
|
2005-09-09 04:47:39 +02:00
|
|
|
if ($aid) {
|
|
|
|
getFeedCounter($link, $aid);
|
|
|
|
}
|
2005-09-08 14:10:07 +02:00
|
|
|
print "</rpc-reply>";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "getFeedCounters") {
|
|
|
|
print "<rpc-reply>";
|
|
|
|
getFeedCounters($link);
|
|
|
|
print "</rpc-reply>";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "getAllCounters") {
|
|
|
|
print "<rpc-reply>";
|
|
|
|
getLabelCounters($link);
|
|
|
|
getFeedCounters($link);
|
2005-09-09 09:45:54 +02:00
|
|
|
getTagCounters($link);
|
2005-10-23 17:40:55 +02:00
|
|
|
getGlobalCounters($link);
|
2005-09-08 14:10:07 +02:00
|
|
|
print "</rpc-reply>";
|
|
|
|
}
|
|
|
|
|
2005-09-05 06:04:31 +02:00
|
|
|
if ($subop == "mark") {
|
|
|
|
$mark = $_GET["mark"];
|
2005-09-07 14:17:16 +02:00
|
|
|
$id = db_escape_string($_GET["id"]);
|
2005-09-05 06:04:31 +02:00
|
|
|
|
|
|
|
if ($mark == "1") {
|
|
|
|
$mark = "true";
|
|
|
|
} else {
|
|
|
|
$mark = "false";
|
|
|
|
}
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link, "UPDATE ttrss_entries SET marked = $mark
|
2005-09-05 06:04:31 +02:00
|
|
|
WHERE id = '$id'");
|
|
|
|
}
|
|
|
|
|
2005-08-28 07:48:32 +02:00
|
|
|
if ($subop == "updateFeed") {
|
2005-09-07 14:17:16 +02:00
|
|
|
$feed_id = db_escape_string($_GET["feed"]);
|
2005-08-25 13:20:50 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link,
|
2005-08-28 07:48:32 +02:00
|
|
|
"SELECT feed_url FROM ttrss_feeds WHERE id = '$feed_id'");
|
2005-08-25 13:20:50 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
if (db_num_rows($result) > 0) {
|
|
|
|
$feed_url = db_fetch_result($result, 0, "feed_url");
|
2005-08-28 07:48:32 +02:00
|
|
|
// 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-09-08 14:10:07 +02:00
|
|
|
if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
|
2005-10-28 11:38:36 +02:00
|
|
|
|
2005-08-23 08:43:20 +02:00
|
|
|
update_all_feeds($link, true);
|
|
|
|
|
2005-10-16 11:03:18 +02:00
|
|
|
$omode = $_GET["omode"];
|
|
|
|
|
|
|
|
if (!$omode) $omode = "tfl";
|
|
|
|
|
2005-09-08 14:10:07 +02:00
|
|
|
print "<rpc-reply>";
|
2005-10-16 11:03:18 +02:00
|
|
|
if (strchr($omode, "l")) getLabelCounters($link);
|
|
|
|
if (strchr($omode, "f")) getFeedCounters($link);
|
|
|
|
if (strchr($omode, "t")) getTagCounters($link);
|
2005-10-23 17:40:55 +02:00
|
|
|
getGlobalCounters($link);
|
2005-09-08 14:10:07 +02:00
|
|
|
print "</rpc-reply>";
|
2005-08-23 08:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "catchupPage") {
|
|
|
|
|
|
|
|
$ids = split(",", $_GET["ids"]);
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
db_query($link, "UPDATE ttrss_entries SET unread=false,last_read = NOW()
|
2005-08-23 08:43:20 +02:00
|
|
|
WHERE id = '$id'");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
print "Marked active page as read.";
|
|
|
|
}
|
2005-11-16 08:59:46 +01:00
|
|
|
|
|
|
|
if ($subop == "sanityCheck") {
|
|
|
|
|
|
|
|
$error_code = 0;
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
|
|
|
|
|
|
|
|
$schema_version = db_fetch_result($result, 0, "schema_version");
|
|
|
|
|
|
|
|
if ($schema_version != SCHEMA_VERSION) {
|
|
|
|
$error_code = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<error code='$error_code'/>";
|
|
|
|
}
|
2005-08-23 08:43:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($op == "feeds") {
|
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
$tags = $_GET["tags"];
|
|
|
|
|
2005-08-23 08:43:20 +02:00
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
|
|
|
if ($subop == "catchupAll") {
|
2005-09-07 14:17:16 +02:00
|
|
|
db_query($link, "UPDATE ttrss_entries SET last_read = NOW(),unread = false");
|
2005-08-23 08:43:20 +02:00
|
|
|
}
|
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
outputFeedList($link, $tags);
|
2005-08-23 08:43:20 +02:00
|
|
|
|
2005-08-21 12:13:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($op == "view") {
|
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
$id = $_GET["id"];
|
2005-09-09 04:47:39 +02:00
|
|
|
$feed_id = $_GET["feed"];
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link, "UPDATE ttrss_entries SET unread = false,last_read = NOW() WHERE id = '$id'");
|
2005-08-21 17:01:18 +02:00
|
|
|
|
2005-09-05 11:09:10 +02:00
|
|
|
$addheader = $_GET["addheader"];
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link, "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-09-05 11:09:10 +02:00
|
|
|
if ($addheader) {
|
2005-09-05 14:02:00 +02:00
|
|
|
print "<html><head>
|
2005-09-05 11:09:10 +02:00
|
|
|
<title>Tiny Tiny RSS : Article $id</title>
|
|
|
|
<link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
|
2005-09-05 17:49:39 +02:00
|
|
|
<script type=\"text/javascript\" src=\"functions.js\"></script>
|
2005-09-05 11:09:10 +02:00
|
|
|
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
|
2005-09-05 14:02:00 +02:00
|
|
|
</head><body>";
|
2005-09-05 11:09:10 +02:00
|
|
|
}
|
|
|
|
|
2005-08-21 15:46:43 +02:00
|
|
|
if ($result) {
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$line = db_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-09-07 10:46:30 +02:00
|
|
|
if ($line["comments"] && $line["link"] != $line["comments"]) {
|
|
|
|
$entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
|
|
|
|
} else {
|
|
|
|
$entry_comments = "";
|
|
|
|
}
|
|
|
|
|
2005-09-07 09:19:14 +02:00
|
|
|
print "<div class=\"postReply\">";
|
|
|
|
|
|
|
|
print "<div class=\"postHeader\"><table>";
|
|
|
|
|
|
|
|
print "<tr><td><b>Title:</b></td>
|
|
|
|
<td width='100%'>" . $line["title"] . "</td></tr>";
|
2005-09-07 10:46:30 +02:00
|
|
|
|
2005-09-07 09:19:14 +02:00
|
|
|
print "<tr><td><b>Link:</b></td>
|
2005-09-07 10:46:30 +02:00
|
|
|
<td width='100%'>
|
|
|
|
<a href=\"" . $line["link"] . "\">".$line["link"]."</a>
|
|
|
|
$entry_comments</td></tr>";
|
2005-09-07 09:19:14 +02:00
|
|
|
|
|
|
|
print "</table></div>";
|
|
|
|
|
|
|
|
print "<div class=\"postIcon\">" . $feed_icon . "</div>";
|
|
|
|
print "<div class=\"postContent\">" . $line["content"] . "</div>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
2005-09-08 14:10:07 +02:00
|
|
|
print "<script type=\"text/javascript\">
|
2005-09-09 09:45:54 +02:00
|
|
|
update_label_counters('$feed_id');
|
2005-09-08 14:10:07 +02:00
|
|
|
</script>";
|
2005-08-21 15:46:43 +02:00
|
|
|
}
|
2005-09-05 11:09:10 +02:00
|
|
|
|
|
|
|
if ($addheader) {
|
|
|
|
print "</body></html>";
|
|
|
|
}
|
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-09-05 08:04:02 +02:00
|
|
|
$view_mode = $_GET["view"];
|
2005-09-05 14:02:00 +02:00
|
|
|
$addheader = $_GET["addheader"];
|
2005-09-05 14:54:07 +02:00
|
|
|
$limit = $_GET["limit"];
|
2005-08-21 17:01:18 +02:00
|
|
|
|
2005-09-08 04:49:20 +02:00
|
|
|
if (!$feed) {
|
|
|
|
print "Error: no feed to display.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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-09-05 14:02:00 +02:00
|
|
|
if ($addheader) {
|
|
|
|
print "<html><head>
|
2005-09-06 06:14:17 +02:00
|
|
|
<title>Tiny Tiny RSS : Feed $feed</title>
|
2005-11-16 10:20:11 +01:00
|
|
|
<link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">";
|
|
|
|
|
2005-11-16 18:37:45 +01:00
|
|
|
if (get_pref($link, 'USE_COMPACT_STYLESHEET')) {
|
2005-11-16 10:20:11 +01:00
|
|
|
print "<link rel=\"stylesheet\"
|
|
|
|
type=\"text/css\" href=\"tt-rss_compact.css\"/>";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
print "<link title=\"Compact Stylesheet\" rel=\"alternate stylesheet\"
|
|
|
|
type=\"text/css\" href=\"tt-rss_compact.css\"/>";
|
|
|
|
}
|
|
|
|
print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
|
2005-09-05 14:02:00 +02:00
|
|
|
<script type=\"text/javascript\" src=\"functions.js\"></script>
|
|
|
|
<script type=\"text/javascript\" src=\"viewfeed.js\"></script>
|
2005-11-16 06:40:03 +01:00
|
|
|
</head><body onload='init()'>";
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
2005-10-28 11:33:24 +02:00
|
|
|
if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
|
|
|
|
|
|
|
|
$tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
|
|
|
|
WHERE id = '$feed'");
|
|
|
|
|
|
|
|
$feed_url = db_fetch_result($tmp_result, 0, "feed_url");
|
|
|
|
|
|
|
|
update_rss_feed($link, $feed_url, $feed);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-10-25 12:44:44 +02:00
|
|
|
if ($subop == "MarkAllRead") {
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-10-25 12:44:44 +02:00
|
|
|
if (sprintf("%d", $feed) != 0) {
|
|
|
|
|
|
|
|
if ($feed > 0) {
|
|
|
|
db_query($link, "UPDATE ttrss_entries
|
|
|
|
SET unread = false,last_read = NOW()
|
2005-09-08 08:31:16 +02:00
|
|
|
WHERE feed_id = '$feed'");
|
2005-10-25 12:44:44 +02:00
|
|
|
|
|
|
|
} else if ($feed < 0 && $feed > -10) { // special, like starred
|
|
|
|
|
|
|
|
if ($feed == -1) {
|
|
|
|
db_query($link, "UPDATE ttrss_entries
|
|
|
|
SET unread = false,last_read = NOW()
|
|
|
|
WHERE marked = true");
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ($feed < -10) { // label
|
|
|
|
|
2005-10-25 13:03:21 +02:00
|
|
|
$label_id = -$feed - 11;
|
2005-10-25 12:44:44 +02:00
|
|
|
|
2005-10-25 13:03:21 +02:00
|
|
|
$tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
|
|
|
|
WHERE id = '$label_id'");
|
|
|
|
|
|
|
|
if ($tmp_result) {
|
|
|
|
$sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
|
|
|
|
|
|
|
|
db_query($link, "UPDATE ttrss_entries
|
|
|
|
SET unread = false,last_read = NOW()
|
|
|
|
WHERE $sql_exp");
|
|
|
|
}
|
2005-09-08 08:31:16 +02:00
|
|
|
}
|
2005-10-25 12:44:44 +02:00
|
|
|
} else { // tag
|
|
|
|
// FIXME, implement catchup for tags
|
2005-08-21 17:01:18 +02:00
|
|
|
}
|
2005-10-25 12:44:44 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
}
|
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-25 15:27:12 +02:00
|
|
|
$search = $_GET["search"];
|
|
|
|
|
2005-10-16 18:16:34 +02:00
|
|
|
$search_mode = $_GET["smode"];
|
|
|
|
|
2005-09-05 08:04:02 +02:00
|
|
|
if ($search) {
|
2005-08-21 18:16:41 +02:00
|
|
|
$search_query_part = "(upper(title) LIKE upper('%$search%')
|
|
|
|
OR content LIKE '%$search%') AND";
|
2005-09-05 08:04:02 +02:00
|
|
|
} else {
|
|
|
|
$search_query_part = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
$view_query_part = "";
|
|
|
|
|
|
|
|
if ($view_mode == "Starred") {
|
|
|
|
$view_query_part = " marked = true AND ";
|
2005-08-21 18:16:41 +02:00
|
|
|
}
|
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
if ($view_mode == "Unread") {
|
|
|
|
$view_query_part = " unread = true AND ";
|
|
|
|
}
|
|
|
|
|
2005-10-16 16:37:15 +02:00
|
|
|
if ($view_mode == "Unread or Starred") {
|
|
|
|
$view_query_part = " (unread = true OR marked = true) AND ";
|
|
|
|
}
|
|
|
|
|
2005-10-23 13:24:56 +02:00
|
|
|
if ($view_mode == "Unread or Updated") {
|
|
|
|
$view_query_part = " (unread = true OR last_read is NULL) AND ";
|
|
|
|
}
|
|
|
|
|
2005-09-08 08:31:16 +02:00
|
|
|
/* $result = db_query($link, "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
|
|
|
|
2005-09-08 08:31:16 +02:00
|
|
|
$total_entries = db_fetch_result($result, 0, "total_entries"); */
|
2005-08-22 11:54:21 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
/* $result = db_query("SELECT count(id) AS unread_entries
|
2005-09-06 06:14:17 +02:00
|
|
|
FROM ttrss_entries WHERE
|
|
|
|
$search_query_part
|
|
|
|
unread = true AND
|
|
|
|
feed_id = '$feed'");
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$unread_entries = db_fetch_result($result, 0, "unread_entries"); */
|
2005-09-06 06:14:17 +02:00
|
|
|
|
2005-09-08 04:49:20 +02:00
|
|
|
if ($limit && $limit != "All") {
|
2005-09-05 14:56:07 +02:00
|
|
|
$limit_query_part = "LIMIT " . $limit;
|
2005-09-07 09:51:01 +02:00
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2005-09-08 08:31:16 +02:00
|
|
|
$vfeed_query_part = "";
|
|
|
|
|
2005-10-16 18:16:34 +02:00
|
|
|
// override query strategy and enable feed display when searching globally
|
|
|
|
if ($search_mode == "All feeds") {
|
|
|
|
$query_strategy_part = "id > 0";
|
|
|
|
$vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
|
|
|
|
id = feed_id) as feed_title,";
|
|
|
|
} else if (sprintf("%d", $feed) == 0) {
|
2005-09-09 09:45:54 +02:00
|
|
|
$query_strategy_part = "ttrss_entries.id > 0";
|
|
|
|
$vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
|
|
|
|
id = feed_id) as feed_title,";
|
|
|
|
} else if ($feed >= 0) {
|
2005-09-08 08:31:16 +02:00
|
|
|
$query_strategy_part = "feed_id = '$feed'";
|
2005-09-08 09:43:44 +02:00
|
|
|
} else if ($feed == -1) { // starred virtual feed
|
2005-09-08 08:31:16 +02:00
|
|
|
$query_strategy_part = "marked = true";
|
2005-09-08 09:43:44 +02:00
|
|
|
$vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
|
|
|
|
id = feed_id) as feed_title,";
|
|
|
|
} else if ($feed <= -10) { // labels
|
|
|
|
$label_id = -$feed - 11;
|
|
|
|
|
|
|
|
$tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
|
|
|
|
WHERE id = '$label_id'");
|
|
|
|
|
|
|
|
$query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
|
|
|
|
|
2005-09-08 08:31:16 +02:00
|
|
|
$vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
|
|
|
|
id = feed_id) as feed_title,";
|
|
|
|
} else {
|
2005-09-08 09:43:44 +02:00
|
|
|
$query_strategy_part = "id > 0"; // dumb
|
2005-09-08 08:31:16 +02:00
|
|
|
}
|
|
|
|
|
2005-10-16 18:16:34 +02:00
|
|
|
|
2005-09-09 04:53:39 +02:00
|
|
|
$order_by = "updated DESC";
|
|
|
|
|
|
|
|
// if ($feed < -10) {
|
|
|
|
// $order_by = "feed_id,updated DESC";
|
|
|
|
// }
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
if ($feed < -10) error_reporting (0);
|
|
|
|
|
2005-09-09 09:45:54 +02:00
|
|
|
if (sprintf("%d", $feed) != 0) {
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
id,title,updated,unread,feed_id,marked,link,last_read,
|
|
|
|
SUBSTRING(last_read,1,19) as last_read_noms,
|
|
|
|
$vfeed_query_part
|
|
|
|
SUBSTRING(updated,1,19) as updated_noms
|
|
|
|
FROM
|
|
|
|
ttrss_entries
|
|
|
|
WHERE
|
|
|
|
$search_query_part
|
|
|
|
$view_query_part
|
|
|
|
$query_strategy_part ORDER BY $order_by
|
|
|
|
$limit_query_part");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// browsing by tag
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
ttrss_entries.id as id,title,updated,unread,feed_id,
|
|
|
|
marked,link,last_read,
|
2005-09-08 05:49:53 +02:00
|
|
|
SUBSTRING(last_read,1,19) as last_read_noms,
|
2005-09-08 08:31:16 +02:00
|
|
|
$vfeed_query_part
|
2005-09-08 05:49:53 +02:00
|
|
|
SUBSTRING(updated,1,19) as updated_noms
|
2005-09-09 09:45:54 +02:00
|
|
|
FROM
|
|
|
|
ttrss_entries,ttrss_tags
|
|
|
|
WHERE
|
|
|
|
post_id = ttrss_entries.id AND tag_name = '$feed' AND
|
|
|
|
$view_query_part
|
|
|
|
$search_query_part
|
|
|
|
$query_strategy_part ORDER BY $order_by
|
|
|
|
$limit_query_part");
|
|
|
|
}
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
if (!$result) {
|
|
|
|
print "<tr><td colspan='4' align='center'>
|
|
|
|
Could not display feed (query failed). Please check match syntax or local configuration.</td></tr>";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
$lnum = 0;
|
2005-09-08 09:43:44 +02:00
|
|
|
|
|
|
|
error_reporting (E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
2005-08-26 08:18:48 +02:00
|
|
|
$num_unread = 0;
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
while ($line = db_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-09-07 12:48:24 +02:00
|
|
|
$id = $line["id"];
|
|
|
|
$feed_id = $line["feed_id"];
|
|
|
|
|
2005-09-08 05:31:09 +02:00
|
|
|
// printf("L %d (%s) > U %d (%s) = %d<br>",
|
2005-09-08 05:49:53 +02:00
|
|
|
// strtotime($line["last_read_noms"]), $line["last_read_noms"],
|
2005-09-08 05:31:09 +02:00
|
|
|
// strtotime($line["updated"]), $line["updated"],
|
|
|
|
// strtotime($line["last_read"]) >= strtotime($line["updated"]));
|
|
|
|
|
2005-10-16 10:29:09 +02:00
|
|
|
/* if ($line["last_read"] != "" && $line["updated"] != "" &&
|
2005-09-08 05:49:53 +02:00
|
|
|
strtotime($line["last_read_noms"]) < strtotime($line["updated_noms"])) {
|
2005-09-08 05:31:09 +02:00
|
|
|
|
|
|
|
$update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
|
|
|
|
alt=\"Updated\">";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2005-09-08 06:48:01 +02:00
|
|
|
$update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
|
2005-09-08 05:31:09 +02:00
|
|
|
alt=\"Updated\">";
|
|
|
|
|
2005-10-16 10:29:09 +02:00
|
|
|
} */
|
|
|
|
|
2005-10-16 10:30:48 +02:00
|
|
|
if ($line["last_read"] == "" &&
|
|
|
|
($line["unread"] != "t" && $line["unread"] != "1")) {
|
|
|
|
|
2005-10-16 10:29:09 +02:00
|
|
|
$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\">";
|
2005-09-08 05:31:09 +02:00
|
|
|
}
|
2005-08-22 11:04:38 +02:00
|
|
|
|
2005-09-07 15:31:21 +02:00
|
|
|
if ($line["unread"] == "t" || $line["unread"] == "1") {
|
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-09-07 15:31:21 +02:00
|
|
|
if ($line["marked"] == "t" || $line["marked"] == "1") {
|
2005-09-05 06:04:31 +02:00
|
|
|
$marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_set.png\"
|
|
|
|
alt=\"Reset mark\" onclick='javascript:toggleMark($id, false)'>";
|
|
|
|
} else {
|
|
|
|
$marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_unset.png\"
|
|
|
|
alt=\"Set mark\" onclick='javascript:toggleMark($id, true)'>";
|
|
|
|
}
|
|
|
|
|
2005-09-06 06:14:17 +02:00
|
|
|
$content_link = "<a id=\"FTITLE-$id\" href=\"javascript:view($id,$feed_id);\">" .
|
2005-08-22 11:04:38 +02:00
|
|
|
$line["title"] . "</a>";
|
|
|
|
|
2005-09-08 06:39:55 +02:00
|
|
|
print "<tr class='$class' id='RROW-$id'>";
|
2005-09-06 03:24:30 +02:00
|
|
|
// onclick=\"javascript:view($id,$feed_id)\">
|
2005-08-22 11:04:38 +02:00
|
|
|
|
2005-09-08 04:49:20 +02:00
|
|
|
print "<td valign='center' align='center'>$update_pic</td>";
|
|
|
|
print "<td valign='center' align='center'>$marked_pic</td>";
|
2005-08-22 11:04:38 +02:00
|
|
|
|
2005-09-08 04:49:20 +02:00
|
|
|
print "<td width='25%'>
|
2005-08-26 03:13:22 +02:00
|
|
|
<a href=\"javascript:view($id,$feed_id);\">".$line["updated"]."</a></td>";
|
2005-09-08 08:31:16 +02:00
|
|
|
|
|
|
|
if ($line["feed_title"]) {
|
|
|
|
print "<td width='50%'>$content_link</td>";
|
2005-11-16 06:22:21 +01:00
|
|
|
print "<td width='20%'>
|
|
|
|
<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a></td>";
|
2005-09-08 08:31:16 +02:00
|
|
|
} else {
|
|
|
|
print "<td width='70%'>$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) {
|
2005-09-08 11:35:05 +02:00
|
|
|
print "<tr><td align='center'>No articles found.</td></tr>";
|
2005-08-23 16:54:18 +02:00
|
|
|
}
|
2005-08-23 09:32:11 +02:00
|
|
|
|
2005-08-21 17:01:18 +02:00
|
|
|
print "</table>";
|
2005-09-05 14:07:57 +02:00
|
|
|
|
|
|
|
print "<script type=\"text/javascript\">
|
2005-09-05 14:41:59 +02:00
|
|
|
document.onkeydown = hotkey_handler;
|
2005-09-09 09:45:54 +02:00
|
|
|
update_label_counters('$feed');
|
2005-09-05 14:07:57 +02:00
|
|
|
</script>";
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
if ($addheader) {
|
|
|
|
print "</body></html>";
|
|
|
|
}
|
|
|
|
|
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) {
|
2005-09-07 14:17:16 +02:00
|
|
|
db_query($link, "UPDATE ttrss_entries SET unread = true 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 read.";
|
2005-08-22 07:23:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "read") {
|
|
|
|
$ids = split(",", $_GET["ids"]);
|
|
|
|
foreach ($ids as $id) {
|
2005-09-07 14:17:16 +02:00
|
|
|
db_query($link, "UPDATE ttrss_entries
|
2005-08-22 11:04:38 +02:00
|
|
|
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") {
|
2005-09-07 14:17:16 +02:00
|
|
|
$feed_title = db_escape_string($_GET["t"]);
|
|
|
|
$feed_link = db_escape_string($_GET["l"]);
|
2005-10-13 05:15:09 +02:00
|
|
|
$upd_intl = db_escape_string($_GET["ui"]);
|
2005-11-16 10:37:50 +01:00
|
|
|
$purge_intl = db_escape_string($_GET["pi"]);
|
2005-08-24 10:02:58 +02:00
|
|
|
$feed_id = $_GET["id"];
|
|
|
|
|
2005-10-13 05:15:09 +02:00
|
|
|
if (strtoupper($upd_intl) == "DEFAULT")
|
|
|
|
$upd_intl = 0;
|
|
|
|
|
2005-11-16 10:37:50 +01:00
|
|
|
if (strtoupper($purge_intl) == "DEFAULT")
|
|
|
|
$purge_intl = 0;
|
|
|
|
|
2005-11-16 10:47:22 +01:00
|
|
|
if (strtoupper($purge_intl) == "DISABLED")
|
|
|
|
$purge_intl = -1;
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link, "UPDATE ttrss_feeds SET
|
2005-10-13 05:15:09 +02:00
|
|
|
title = '$feed_title', feed_url = '$feed_link',
|
2005-11-16 10:37:50 +01:00
|
|
|
update_interval = '$upd_intl',
|
|
|
|
purge_interval = '$purge_intl'
|
|
|
|
WHERE id = '$feed_id'");
|
2005-08-24 10:02:58 +02:00
|
|
|
|
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) {
|
2005-09-07 14:17:16 +02:00
|
|
|
db_query($link, "DELETE FROM ttrss_feeds WHERE id = '$id'");
|
2005-11-16 18:37:45 +01:00
|
|
|
|
|
|
|
$icons_dir = get_pref($link, 'ICONS_DIR');
|
2005-08-26 05:41:45 +02:00
|
|
|
|
2005-11-16 18:37:45 +01:00
|
|
|
if (file_exists($icons_dir . "/$id.ico")) {
|
|
|
|
unlink($icons_dir . "/$id.ico");
|
2005-08-26 05:41:45 +02:00
|
|
|
}
|
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-09-07 14:17:16 +02:00
|
|
|
$feed_link = db_escape_string($_GET["link"]);
|
2005-08-23 13:34:07 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link,
|
2005-11-17 19:04:38 +01:00
|
|
|
"INSERT INTO ttrss_feeds (owner_uid,feed_url,title) VALUES ('".$_SESSION["uid"]."', '$feed_link', '')");
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link,
|
2005-08-26 09:19:31 +02:00
|
|
|
"SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'");
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$feed_id = db_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-09-03 09:22:29 +02:00
|
|
|
|
2005-11-01 08:47:03 +01:00
|
|
|
$result = db_query($link, "SELECT id,title,feed_url,last_error
|
|
|
|
FROM ttrss_feeds WHERE last_error != ''");
|
|
|
|
|
|
|
|
if (db_num_rows($result) > 0) {
|
|
|
|
|
|
|
|
print "<div class=\"warning\">";
|
|
|
|
|
|
|
|
print "<b>Feeds with update errors:</b>";
|
|
|
|
|
|
|
|
print "<ul class=\"nomarks\">";
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
print "<li>" . $line["title"] . " (" . $line["feed_url"] . "): " .
|
|
|
|
$line["last_error"];
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</ul>";
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
print "<table class=\"prefAddFeed\"><tr>
|
|
|
|
<td><input id=\"fadd_link\"></td>
|
|
|
|
<td colspan=\"4\" align=\"right\">
|
|
|
|
<a class=\"button\" href=\"javascript:addFeed()\">Add feed</a></td></tr>
|
|
|
|
</table>";
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link, "SELECT
|
2005-10-13 05:15:09 +02:00
|
|
|
id,title,feed_url,substring(last_updated,1,16) as last_updated,
|
2005-11-16 10:37:50 +01:00
|
|
|
update_interval,purge_interval
|
2005-08-25 17:15:27 +02:00
|
|
|
FROM
|
2005-11-17 19:04:38 +01:00
|
|
|
ttrss_feeds WHERE owner_uid = '".$_SESSION["uid"]."' 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-11-16 10:37:50 +01:00
|
|
|
<td> </td><td>Select</td><td width=\"30%\">Title</td>
|
|
|
|
<td width=\"30%\">Link</td>
|
|
|
|
<td width=\"10%\">Update Interval</td>
|
|
|
|
<td width=\"10%\">Purge Days</td>
|
2005-10-13 05:15:09 +02:00
|
|
|
<td>Last updated</td></tr>";
|
2005-08-22 03:17:12 +02:00
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2005-08-22 03:17:12 +02:00
|
|
|
|
|
|
|
$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-11-16 18:37:45 +01:00
|
|
|
$icon_file = get_pref($link, 'ICONS_DIR') . "/$feed_id.ico";
|
2005-08-25 17:15:27 +02:00
|
|
|
|
|
|
|
if (file_exists($icon_file) && filesize($icon_file) > 0) {
|
|
|
|
$feed_icon = "<img width=\"16\" height=\"16\"
|
2005-11-16 18:37:45 +01:00
|
|
|
src=\"" . get_pref($link, 'ICONS_URL') . "/$feed_id.ico\">";
|
2005-08-25 17:15:27 +02:00
|
|
|
} else {
|
|
|
|
$feed_icon = " ";
|
|
|
|
}
|
|
|
|
print "<td align='center'>$feed_icon</td>";
|
|
|
|
|
2005-10-16 16:48:33 +02:00
|
|
|
$edit_title = htmlspecialchars(db_unescape_string($line["title"]));
|
|
|
|
$edit_link = htmlspecialchars(db_unescape_string($line["feed_url"]));
|
|
|
|
|
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);\">" .
|
2005-11-16 10:37:50 +01:00
|
|
|
$edit_title . "</a></td>";
|
2005-08-26 08:56:00 +02:00
|
|
|
print "<td><a href=\"javascript:editFeed($feed_id);\">" .
|
2005-11-16 10:37:50 +01:00
|
|
|
$edit_link . "</a></td>";
|
2005-10-13 05:15:09 +02:00
|
|
|
|
|
|
|
if ($line["update_interval"] == "0")
|
|
|
|
$line["update_interval"] = "Default";
|
|
|
|
|
2005-11-16 10:37:50 +01:00
|
|
|
print "<td><a href=\"javascript:editFeed($feed_id);\">" .
|
|
|
|
$line["update_interval"] . "</a></td>";
|
2005-10-13 05:15:09 +02:00
|
|
|
|
2005-11-16 10:37:50 +01:00
|
|
|
if ($line["purge_interval"] == "0")
|
|
|
|
$line["purge_interval"] = "Default";
|
|
|
|
|
2005-11-16 10:47:22 +01:00
|
|
|
if ($line["purge_interval"] < 0)
|
|
|
|
$line["purge_interval"] = "Disabled";
|
|
|
|
|
2005-11-16 10:37:50 +01:00
|
|
|
print "<td><a href=\"javascript:editFeed($feed_id);\">" .
|
|
|
|
$line["purge_interval"] . "</a></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
|
|
|
|
2005-10-16 16:48:33 +02:00
|
|
|
print "<td>$edit_title</td>";
|
|
|
|
print "<td>$edit_link</td>";
|
2005-08-26 09:05:16 +02:00
|
|
|
|
2005-10-13 05:15:09 +02:00
|
|
|
if ($line["update_interval"] == "0")
|
|
|
|
$line["update_interval"] = "Default";
|
|
|
|
|
|
|
|
print "<td>" . $line["update_interval"] . "</td>";
|
|
|
|
|
2005-11-16 10:37:50 +01:00
|
|
|
if ($line["purge_interval"] == "0")
|
|
|
|
$line["purge_interval"] = "Default";
|
|
|
|
|
2005-11-16 10:47:22 +01:00
|
|
|
if ($line["purge_interval"] < 0)
|
|
|
|
$line["purge_interval"] = "Disabled";
|
|
|
|
|
2005-11-16 10:37:50 +01:00
|
|
|
print "<td>" . $line["purge_interval"] . "</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
|
|
|
|
2005-10-16 16:48:33 +02:00
|
|
|
print "<td><input id=\"iedit_title\" value=\"$edit_title\"></td>";
|
|
|
|
print "<td><input id=\"iedit_link\" value=\"$edit_link\"></td>";
|
2005-10-13 05:15:09 +02:00
|
|
|
print "<td><input id=\"iedit_updintl\" value=\"".$line["update_interval"]."\"></td>";
|
2005-11-16 10:37:50 +01:00
|
|
|
print "<td><input id=\"iedit_purgintl\" value=\"".$line["purge_interval"]."\"></td>";
|
2005-10-13 05:15:09 +02:00
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
}
|
2005-09-03 09:50:18 +02:00
|
|
|
|
|
|
|
if (!$line["last_updated"]) $line["last_updated"] = "Never";
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2005-09-03 09:50:18 +02:00
|
|
|
if ($lnum == 0) {
|
|
|
|
print "<tr><td colspan=\"5\" align=\"center\">No feeds defined.</td></tr>";
|
|
|
|
}
|
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
print "</table>";
|
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
print "<p>";
|
|
|
|
|
|
|
|
if ($subop == "edit") {
|
|
|
|
print "Edit feed:
|
2005-09-07 09:19:14 +02:00
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:feedEditCancel()\" value=\"Cancel\">
|
|
|
|
<input type=\"submit\" class=\"button\"
|
2005-09-07 15:31:21 +02:00
|
|
|
onclick=\"javascript:feedEditSave()\" value=\"Save\">";
|
2005-08-26 08:56:00 +02:00
|
|
|
} else {
|
|
|
|
|
|
|
|
print "
|
|
|
|
Selection:
|
2005-09-07 09:19:14 +02:00
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:editSelectedFeed()\" value=\"Edit\">
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:removeSelectedFeeds()\" value=\"Remove\">";
|
|
|
|
|
2005-11-16 18:37:45 +01:00
|
|
|
if (get_pref($link, 'ENABLE_PREFS_CATCHUP_UNCATCHUP')) {
|
2005-09-02 17:50:12 +02:00
|
|
|
print "
|
2005-09-07 09:19:14 +02:00
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:readSelectedFeeds()\" value=\"Mark as read\">
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:unreadSelectedFeeds()\" value=\"Mark as unread\"> ";
|
2005-09-02 17:50:12 +02:00
|
|
|
}
|
|
|
|
print "
|
2005-09-07 09:19:14 +02:00
|
|
|
All feeds:
|
|
|
|
<input type=\"submit\"
|
2005-09-07 15:31:21 +02:00
|
|
|
class=\"button\" onclick=\"gotoExportOpml()\" value=\"Export OPML\">";
|
2005-09-02 06:41:30 +02:00
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
}
|
|
|
|
|
2005-10-28 19:58:20 +02:00
|
|
|
print "<h3>OPML Import</h3>
|
|
|
|
<form enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
|
|
|
|
File: <input id=\"opml_file\" name=\"opml_file\" type=\"file\">
|
|
|
|
<input class=\"button\" name=\"op\" onclick=\"return validateOpmlImport();\"
|
|
|
|
type=\"submit\" value=\"Import\">
|
|
|
|
</form>";
|
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
}
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
if ($op == "pref-filters") {
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
|
|
|
if ($subop == "editSave") {
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$regexp = db_escape_string($_GET["r"]);
|
|
|
|
$descr = db_escape_string($_GET["d"]);
|
|
|
|
$match = db_escape_string($_GET["m"]);
|
|
|
|
$filter_id = db_escape_string($_GET["id"]);
|
2005-09-03 09:50:18 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link, "UPDATE ttrss_filters SET
|
2005-09-07 14:42:49 +02:00
|
|
|
reg_exp = '$regexp',
|
2005-09-03 09:50:18 +02:00
|
|
|
description = '$descr',
|
|
|
|
filter_type = (SELECT id FROM ttrss_filter_types WHERE
|
|
|
|
description = '$match')
|
|
|
|
WHERE id = '$filter_id'");
|
2005-09-03 09:22:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "remove") {
|
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
|
|
|
|
|
|
|
$ids = split(",", $_GET["ids"]);
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
2005-09-07 14:17:16 +02:00
|
|
|
db_query($link, "DELETE FROM ttrss_filters WHERE id = '$id'");
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "add") {
|
|
|
|
|
2005-09-03 09:34:31 +02:00
|
|
|
if (!WEB_DEMO_MODE) {
|
2005-09-03 09:22:29 +02:00
|
|
|
|
2005-09-07 15:31:21 +02:00
|
|
|
$regexp = db_escape_string($_GET["regexp"]);
|
2005-09-07 14:17:16 +02:00
|
|
|
$match = db_escape_string($_GET["match"]);
|
2005-09-03 09:22:29 +02:00
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link,
|
2005-11-17 19:04:38 +01:00
|
|
|
"INSERT INTO ttrss_filters (reg_exp,filter_type,owner_uid) VALUES
|
2005-09-03 09:34:31 +02:00
|
|
|
('$regexp', (SELECT id FROM ttrss_filter_types WHERE
|
2005-11-17 19:04:38 +01:00
|
|
|
description = '$match'),'".$_SESSION["uid"]."')");
|
2005-09-03 09:34:31 +02:00
|
|
|
}
|
2005-09-03 09:22:29 +02:00
|
|
|
}
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link, "SELECT description
|
2005-09-03 09:22:29 +02:00
|
|
|
FROM ttrss_filter_types ORDER BY description");
|
|
|
|
|
|
|
|
$filter_types = array();
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2005-09-03 09:22:29 +02:00
|
|
|
array_push($filter_types, $line["description"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<table class=\"prefAddFeed\"><tr>
|
2005-09-03 10:03:06 +02:00
|
|
|
<td><input id=\"fadd_regexp\"></td>
|
2005-09-03 09:22:29 +02:00
|
|
|
<td>";
|
2005-09-03 12:37:40 +02:00
|
|
|
print_select("fadd_match", "Title", $filter_types);
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
print"</td><td colspan=\"4\" align=\"right\">
|
|
|
|
<a class=\"button\" href=\"javascript:addFilter()\">Add filter</a></td></tr>
|
|
|
|
</table>";
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
$result = db_query($link, "SELECT
|
2005-09-07 14:42:49 +02:00
|
|
|
id,reg_exp,description,
|
2005-09-03 09:22:29 +02:00
|
|
|
(SELECT name FROM ttrss_filter_types WHERE
|
|
|
|
id = filter_type) as filter_type_name,
|
|
|
|
(SELECT description FROM ttrss_filter_types
|
|
|
|
WHERE id = filter_type) as filter_type_descr
|
|
|
|
FROM
|
2005-11-17 19:04:38 +01:00
|
|
|
ttrss_filters
|
|
|
|
WHERE
|
|
|
|
owner_uid = ".$_SESSION["uid"]."
|
|
|
|
ORDER by reg_exp");
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
print "<p><table width=\"100%\" class=\"prefFilterList\" id=\"prefFilterList\">";
|
|
|
|
|
|
|
|
print "<tr class=\"title\">
|
2005-09-03 09:50:18 +02:00
|
|
|
<td width=\"5%\">Select</td><td width=\"40%\">Filter expression</td>
|
|
|
|
<td width=\"40%\">Description</td><td width=\"10%\">Match</td></tr>";
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
2005-09-07 14:17:16 +02:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
$class = ($lnum % 2) ? "even" : "odd";
|
|
|
|
|
|
|
|
$filter_id = $line["id"];
|
|
|
|
$edit_filter_id = $_GET["id"];
|
|
|
|
|
|
|
|
if ($subop == "edit" && $filter_id != $edit_filter_id) {
|
|
|
|
$class .= "Grayed";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<tr class=\"$class\" id=\"FILRR-$filter_id\">";
|
|
|
|
|
2005-09-07 14:42:49 +02:00
|
|
|
$line["regexp"] = htmlspecialchars($line["reg_exp"]);
|
2005-09-03 10:03:06 +02:00
|
|
|
$line["description"] = htmlspecialchars($line["description"]);
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
if (!$edit_filter_id || $subop != "edit") {
|
|
|
|
|
2005-09-03 09:50:18 +02:00
|
|
|
if (!$line["description"]) $line["description"] = "[No description]";
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
print "<td><input onclick='toggleSelectRow(this);'
|
|
|
|
type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
|
|
|
|
|
|
|
|
print "<td><a href=\"javascript:editFilter($filter_id);\">" .
|
2005-09-07 14:42:49 +02:00
|
|
|
$line["reg_exp"] . "</td>";
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
print "<td><a href=\"javascript:editFilter($filter_id);\">" .
|
|
|
|
$line["description"] . "</td>";
|
|
|
|
|
|
|
|
print "<td>".$line["filter_type_descr"]."</td>";
|
|
|
|
|
|
|
|
} else if ($filter_id != $edit_filter_id) {
|
|
|
|
|
2005-09-03 09:50:18 +02:00
|
|
|
if (!$line["description"]) $line["description"] = "[No description]";
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
print "<td><input disabled=\"true\" type=\"checkbox\"
|
|
|
|
id=\"FICHK-".$line["id"]."\"></td>";
|
|
|
|
|
2005-09-07 14:42:49 +02:00
|
|
|
print "<td>".$line["reg_exp"]."</td>";
|
2005-09-03 09:22:29 +02:00
|
|
|
print "<td>".$line["description"]."</td>";
|
|
|
|
print "<td>".$line["filter_type_descr"]."</td>";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
print "<td><input disabled=\"true\" type=\"checkbox\"></td>";
|
|
|
|
|
2005-09-07 14:42:49 +02:00
|
|
|
print "<td><input id=\"iedit_regexp\" value=\"".$line["reg_exp"].
|
2005-09-03 09:22:29 +02:00
|
|
|
"\"></td>";
|
|
|
|
|
|
|
|
print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
|
|
|
|
"\"></td>";
|
|
|
|
|
|
|
|
print "<td>";
|
|
|
|
print_select("iedit_match", $line["filter_type_descr"], $filter_types);
|
|
|
|
print "</td>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print "</tr>";
|
|
|
|
|
|
|
|
++$lnum;
|
|
|
|
}
|
|
|
|
|
2005-09-03 09:50:18 +02:00
|
|
|
if ($lnum == 0) {
|
|
|
|
print "<tr><td colspan=\"4\" align=\"center\">No filters defined.</td></tr>";
|
|
|
|
}
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
print "<p>";
|
|
|
|
|
|
|
|
if ($subop == "edit") {
|
2005-09-07 09:19:14 +02:00
|
|
|
print "Edit feed:
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:filterEditCancel()\" value=\"Cancel\">
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:filterEditSave()\" value=\"Save\">";
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
print "
|
2005-09-07 09:19:14 +02:00
|
|
|
Selection:
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:editSelectedFilter()\" value=\"Edit\">
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:removeSelectedFilters()\" value=\"Remove\">";
|
2005-09-03 09:22:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
if ($op == "pref-labels") {
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
|
|
|
if ($subop == "editSave") {
|
|
|
|
|
|
|
|
$sql_exp = $_GET["s"];
|
|
|
|
$descr = $_GET["d"];
|
|
|
|
$label_id = db_escape_string($_GET["id"]);
|
|
|
|
|
|
|
|
// print "$sql_exp : $descr : $label_id";
|
|
|
|
|
|
|
|
$result = db_query($link, "UPDATE ttrss_labels SET
|
|
|
|
sql_exp = '$sql_exp',
|
|
|
|
description = '$descr'
|
|
|
|
WHERE id = '$label_id'");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "remove") {
|
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
|
|
|
|
|
|
|
$ids = split(",", $_GET["ids"]);
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
db_query($link, "DELETE FROM ttrss_labels WHERE id = '$id'");
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "add") {
|
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
|
|
|
|
|
|
|
$exp = $_GET["exp"];
|
|
|
|
|
|
|
|
$result = db_query($link,
|
2005-11-17 19:04:38 +01:00
|
|
|
"INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
|
|
|
|
VALUES ('$exp', '$exp', '".$_SESSION["uid"]."')");
|
2005-09-08 09:43:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<table class=\"prefAddFeed\"><tr>
|
|
|
|
<td><input id=\"ladd_expr\"></td>";
|
|
|
|
|
|
|
|
print"<td colspan=\"4\" align=\"right\">
|
|
|
|
<a class=\"button\" href=\"javascript:addLabel()\">Add label</a></td></tr>
|
|
|
|
</table>";
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
id,sql_exp,description
|
|
|
|
FROM
|
2005-11-17 19:04:38 +01:00
|
|
|
ttrss_labels
|
|
|
|
WHERE
|
|
|
|
owner_uid = ".$_SESSION["uid"]."
|
|
|
|
ORDER by description");
|
2005-09-08 09:43:44 +02:00
|
|
|
|
|
|
|
print "<p><table width=\"100%\" class=\"prefLabelList\" id=\"prefLabelList\">";
|
|
|
|
|
|
|
|
print "<tr class=\"title\">
|
2005-10-16 17:17:12 +02:00
|
|
|
<td width=\"5%\">Select</td><td width=\"40%\">SQL expression
|
|
|
|
<a class=\"helpLink\" href=\"javascript:popupHelp(1)\">(?)</a>
|
|
|
|
</td>
|
2005-09-08 09:43:44 +02:00
|
|
|
<td width=\"40%\">Caption</td></tr>";
|
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$class = ($lnum % 2) ? "even" : "odd";
|
|
|
|
|
|
|
|
$label_id = $line["id"];
|
|
|
|
$edit_label_id = $_GET["id"];
|
|
|
|
|
|
|
|
if ($subop == "edit" && $label_id != $edit_label_id) {
|
|
|
|
$class .= "Grayed";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<tr class=\"$class\" id=\"LILRR-$label_id\">";
|
|
|
|
|
|
|
|
$line["sql_exp"] = htmlspecialchars($line["sql_exp"]);
|
|
|
|
$line["description"] = htmlspecialchars($line["description"]);
|
|
|
|
|
|
|
|
if (!$edit_label_id || $subop != "edit") {
|
|
|
|
|
|
|
|
if (!$line["description"]) $line["description"] = "[No caption]";
|
|
|
|
|
|
|
|
print "<td><input onclick='toggleSelectRow(this);'
|
|
|
|
type=\"checkbox\" id=\"LICHK-".$line["id"]."\"></td>";
|
|
|
|
|
|
|
|
print "<td><a href=\"javascript:editLabel($label_id);\">" .
|
|
|
|
$line["sql_exp"] . "</td>";
|
|
|
|
|
|
|
|
print "<td><a href=\"javascript:editLabel($label_id);\">" .
|
|
|
|
$line["description"] . "</td>";
|
|
|
|
|
|
|
|
} else if ($label_id != $edit_label_id) {
|
|
|
|
|
|
|
|
if (!$line["description"]) $line["description"] = "[No description]";
|
|
|
|
|
|
|
|
print "<td><input disabled=\"true\" type=\"checkbox\"
|
|
|
|
id=\"LICHK-".$line["id"]."\"></td>";
|
|
|
|
|
|
|
|
print "<td>".$line["sql_exp"]."</td>";
|
|
|
|
print "<td>".$line["description"]."</td>";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
print "<td><input disabled=\"true\" type=\"checkbox\"></td>";
|
|
|
|
|
|
|
|
print "<td><input id=\"iedit_expr\" value=\"".$line["sql_exp"].
|
|
|
|
"\"></td>";
|
|
|
|
|
|
|
|
print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
|
|
|
|
"\"></td>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print "</tr>";
|
|
|
|
|
|
|
|
++$lnum;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($lnum == 0) {
|
|
|
|
print "<tr><td colspan=\"4\" align=\"center\">No labels defined.</td></tr>";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
print "<p>";
|
|
|
|
|
|
|
|
if ($subop == "edit") {
|
|
|
|
print "Edit label:
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:labelEditCancel()\" value=\"Cancel\">
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:labelEditSave()\" value=\"Save\">";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
print "
|
|
|
|
Selection:
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:editSelectedLabel()\" value=\"Edit\">
|
|
|
|
<input type=\"submit\" class=\"button\"
|
|
|
|
onclick=\"javascript:removeSelectedLabels()\" value=\"Remove\">";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-07 09:19:14 +02:00
|
|
|
if ($op == "error") {
|
|
|
|
print "<div width=\"100%\" align='center'>";
|
|
|
|
$msg = $_GET["msg"];
|
|
|
|
print $msg;
|
|
|
|
print "</div>";
|
|
|
|
}
|
|
|
|
|
2005-10-16 17:17:12 +02:00
|
|
|
if ($op == "help") {
|
|
|
|
print "<html><head>
|
|
|
|
<title>Tiny Tiny RSS : Help</title>
|
|
|
|
<link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
|
|
|
|
<script type=\"text/javascript\" src=\"functions.js\"></script>
|
|
|
|
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
|
|
|
|
</head><body>";
|
|
|
|
|
|
|
|
$tid = sprintf("%d", $_GET["tid"]);
|
|
|
|
|
|
|
|
/* FIXME this badly needs real implementation */
|
|
|
|
|
|
|
|
print "<div class='helpResponse'>";
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<h1>Help for SQL expressions</h1>
|
|
|
|
|
|
|
|
<h2>Description</h2>
|
|
|
|
|
|
|
|
<p>The «SQL expression» is added to WHERE clause of
|
2005-10-16 17:21:53 +02:00
|
|
|
view feed query. You can match on ttrss_entries table fields
|
2005-10-16 17:17:12 +02:00
|
|
|
and even use subselect to query additional information. This
|
|
|
|
functionality is considered to be advanced and requires basic
|
|
|
|
understanding of SQL.</p>
|
|
|
|
|
|
|
|
<h2>Examples</h2>
|
|
|
|
|
|
|
|
<pre>unread = true</pre>
|
|
|
|
|
|
|
|
Matches all unread articles
|
|
|
|
|
|
|
|
<pre>title like '%Linux%'</pre>
|
|
|
|
|
|
|
|
Matches all articles which mention Linux in the title. You get the idea.
|
|
|
|
|
|
|
|
<p>See the database schema included in the distribution package for gruesome
|
|
|
|
details.</p>
|
|
|
|
|
|
|
|
<?
|
|
|
|
|
|
|
|
print "<div align='center'>
|
|
|
|
<a class=\"helpLink\"
|
|
|
|
href=\"javascript:window.close()\">(Close this window)</a></div>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
print "</body></html>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-10-28 07:59:29 +02:00
|
|
|
if ($op == "dlg") {
|
|
|
|
$id = $_GET["id"];
|
2005-10-28 08:21:16 +02:00
|
|
|
$param = $_GET["param"];
|
2005-10-28 07:59:29 +02:00
|
|
|
|
|
|
|
if ($id == "quickAddFeed") {
|
2005-10-28 08:51:34 +02:00
|
|
|
print "Feed URL: <input
|
|
|
|
onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
|
|
|
|
id=\"qafInput\">
|
2005-10-28 07:59:29 +02:00
|
|
|
<input class=\"button\"
|
|
|
|
type=\"submit\" onclick=\"javascript:qafAdd()\" value=\"Add feed\">
|
|
|
|
<input class=\"button\"
|
|
|
|
type=\"submit\" onclick=\"javascript:closeDlg()\"
|
|
|
|
value=\"Cancel\">";
|
|
|
|
}
|
2005-10-28 08:21:16 +02:00
|
|
|
|
|
|
|
if ($id == "quickDelFeed") {
|
|
|
|
|
|
|
|
$param = db_escape_string($param);
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$param'");
|
|
|
|
|
|
|
|
if ($result) {
|
|
|
|
|
|
|
|
$f_title = db_fetch_result($result, 0, "title");
|
|
|
|
|
|
|
|
print "Remove current feed ($f_title)?
|
|
|
|
<input class=\"button\"
|
|
|
|
type=\"submit\" onclick=\"javascript:qfdDelete($param)\" value=\"Remove\">
|
|
|
|
<input class=\"button\"
|
|
|
|
type=\"submit\" onclick=\"javascript:closeDlg()\"
|
|
|
|
value=\"Cancel\">";
|
|
|
|
} else {
|
|
|
|
print "Error: Feed $param not found.
|
|
|
|
<input class=\"button\"
|
|
|
|
type=\"submit\" onclick=\"javascript:closeDlg()\"
|
|
|
|
value=\"Cancel\">";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-28 08:51:34 +02:00
|
|
|
if ($id == "search") {
|
|
|
|
|
|
|
|
print "<input id=\"searchbox\" class=\"extSearch\"
|
|
|
|
onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
|
|
|
|
onchange=\"javascript:search()\">
|
|
|
|
<select id=\"searchmodebox\">
|
|
|
|
<option selected>All feeds</option>
|
|
|
|
<option>This feed</option>
|
|
|
|
</select>
|
|
|
|
<input type=\"submit\"
|
|
|
|
class=\"button\" onclick=\"javascript:search()\" value=\"Search\">
|
|
|
|
<input class=\"button\"
|
|
|
|
type=\"submit\" onclick=\"javascript:closeDlg()\"
|
|
|
|
value=\"Close\">";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-10-28 07:59:29 +02:00
|
|
|
}
|
|
|
|
|
2005-11-16 10:54:33 +01:00
|
|
|
if ($op == "updateAllFeeds") {
|
|
|
|
update_all_feeds($link, true);
|
|
|
|
|
|
|
|
print "<rpc-reply>";
|
|
|
|
getLabelCounters($link);
|
|
|
|
getFeedCounters($link);
|
|
|
|
getTagCounters($link);
|
|
|
|
getGlobalCounters($link);
|
|
|
|
print "</rpc-reply>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-17 06:26:54 +01:00
|
|
|
if ($op == "pref-prefs") {
|
|
|
|
|
2005-11-17 08:10:31 +01:00
|
|
|
$subop = $_REQUEST["subop"];
|
2005-11-17 06:26:54 +01:00
|
|
|
|
|
|
|
if ($subop == "Save configuration") {
|
|
|
|
|
2005-11-17 08:26:33 +01:00
|
|
|
if (WEB_DEMO_MODE) return;
|
|
|
|
|
2005-11-17 06:26:54 +01:00
|
|
|
foreach (array_keys($_POST) as $pref_name) {
|
|
|
|
|
|
|
|
$pref_name = db_escape_string($pref_name);
|
|
|
|
$value = db_escape_string($_POST[$pref_name]);
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT type_name
|
|
|
|
FROM ttrss_prefs,ttrss_prefs_types
|
|
|
|
WHERE pref_name = '$pref_name' AND type_id = ttrss_prefs_types.id");
|
|
|
|
|
|
|
|
if (db_num_rows($result) > 0) {
|
|
|
|
|
|
|
|
$type_name = db_fetch_result($result, 0, "type_name");
|
|
|
|
|
2005-11-17 06:34:52 +01:00
|
|
|
// print "$pref_name : $type_name : $value<br>";
|
|
|
|
|
2005-11-17 06:26:54 +01:00
|
|
|
if ($type_name == "bool") {
|
2005-11-17 06:34:52 +01:00
|
|
|
if ($value == "1") {
|
2005-11-17 06:26:54 +01:00
|
|
|
$value = "true";
|
|
|
|
} else {
|
|
|
|
$value = "false";
|
|
|
|
}
|
|
|
|
} else if ($type_name == "integer") {
|
|
|
|
$value = sprintf("%d", $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
// print "$pref_name : $type_name : $value<br>";
|
|
|
|
|
|
|
|
db_query($link, "UPDATE ttrss_prefs SET value = '$value'
|
|
|
|
WHERE pref_name = '$pref_name'");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
header("Location: prefs.php");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-17 08:10:31 +01:00
|
|
|
} else if ($subop == "getHelp") {
|
|
|
|
|
|
|
|
$pref_name = db_escape_string($_GET["pn"]);
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT help_text FROM ttrss_prefs
|
|
|
|
WHERE pref_name = '$pref_name'");
|
|
|
|
|
|
|
|
if (db_num_rows($result) > 0) {
|
|
|
|
$help_text = db_fetch_result($result, 0, "help_text");
|
|
|
|
print $help_text;
|
|
|
|
} else {
|
|
|
|
print "Unknown option: $pref_name";
|
|
|
|
}
|
|
|
|
|
2005-11-17 06:26:54 +01:00
|
|
|
} else if ($subop == "Reset to defaults") {
|
|
|
|
|
2005-11-17 08:26:33 +01:00
|
|
|
if (WEB_DEMO_MODE) return;
|
|
|
|
|
2005-11-17 06:34:52 +01:00
|
|
|
db_query($link, "UPDATE ttrss_prefs SET value = def_value");
|
|
|
|
|
2005-11-17 06:26:54 +01:00
|
|
|
header("Location: prefs.php");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
pref_name,short_desc,help_text,value,type_name,
|
|
|
|
section_name,def_value
|
|
|
|
FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections
|
|
|
|
WHERE type_id = ttrss_prefs_types.id AND
|
|
|
|
section_id = ttrss_prefs_sections.id
|
2005-11-17 11:24:34 +01:00
|
|
|
ORDER BY section_id,short_desc");
|
2005-11-17 06:26:54 +01:00
|
|
|
|
|
|
|
print "<form action=\"backend.php\" method=\"POST\">";
|
|
|
|
|
|
|
|
print "<table width=\"100%\" class=\"prefPrefsList\">";
|
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
$active_section = "";
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
if ($active_section != $line["section_name"]) {
|
2005-11-17 06:42:17 +01:00
|
|
|
|
|
|
|
if ($active_section != "") {
|
|
|
|
print "</table><p><table width=\"100%\" class=\"prefPrefsList\">";
|
|
|
|
}
|
|
|
|
|
|
|
|
$active_section = $line["section_name"];
|
|
|
|
|
2005-11-17 06:26:54 +01:00
|
|
|
print "<tr><td colspan=\"3\"><h3>$active_section</h3></td></tr>";
|
2005-11-17 06:42:17 +01:00
|
|
|
// print "<tr class=\"title\">
|
|
|
|
// <td width=\"25%\">Option</td><td>Value</td></tr>";
|
2005-11-17 08:20:29 +01:00
|
|
|
|
|
|
|
$lnum = 0;
|
2005-11-17 06:26:54 +01:00
|
|
|
}
|
|
|
|
|
2005-11-17 11:24:34 +01:00
|
|
|
// $class = ($lnum % 2) ? "even" : "odd";
|
2005-11-17 06:26:54 +01:00
|
|
|
|
2005-11-17 11:24:34 +01:00
|
|
|
print "<tr>";
|
2005-11-17 06:26:54 +01:00
|
|
|
|
|
|
|
$type_name = $line["type_name"];
|
|
|
|
$pref_name = $line["pref_name"];
|
|
|
|
$value = $line["value"];
|
|
|
|
$def_value = $line["def_value"];
|
2005-11-17 08:10:31 +01:00
|
|
|
$help_text = $line["help_text"];
|
|
|
|
|
|
|
|
print "<td width=\"40%\" id=\"$pref_name\">" . $line["short_desc"];
|
|
|
|
|
|
|
|
if ($help_text) print "<div class=\"prefHelp\">$help_text</div>";
|
|
|
|
|
|
|
|
print "</td>";
|
2005-11-17 06:26:54 +01:00
|
|
|
|
|
|
|
print "<td>";
|
|
|
|
|
|
|
|
if ($type_name == "bool") {
|
|
|
|
// print_select($pref_name, $value, array("true", "false"));
|
|
|
|
|
|
|
|
if ($value == "true") {
|
|
|
|
$value = "Yes";
|
|
|
|
} else {
|
|
|
|
$value = "No";
|
|
|
|
}
|
|
|
|
|
|
|
|
print_radio($pref_name, $value, array("Yes", "No"));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
print "<input class=\"editbox\" name=\"$pref_name\" value=\"$value\">";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</td>";
|
|
|
|
|
|
|
|
print "</tr>";
|
|
|
|
|
|
|
|
$lnum++;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
|
|
|
|
|
|
|
|
print "<p><input class=\"button\" type=\"submit\"
|
|
|
|
name=\"subop\" value=\"Save configuration\">";
|
|
|
|
|
|
|
|
print " <input class=\"button\" type=\"submit\"
|
|
|
|
name=\"subop\" value=\"Reset to defaults\"></p>";
|
|
|
|
|
|
|
|
print "</form>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
<!-- <?= sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
|
|
|
|
|