2006-10-01 12:05:20 +02:00
|
|
|
<?php
|
2006-10-02 05:22:20 +02:00
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
function module_pref_feeds($link) {
|
|
|
|
|
2006-10-02 05:22:20 +02:00
|
|
|
global $update_intervals;
|
|
|
|
global $purge_intervals;
|
2008-01-25 18:46:01 +01:00
|
|
|
global $update_methods;
|
2006-10-02 05:22:20 +02:00
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
$subop = $_REQUEST["subop"];
|
|
|
|
$quiet = $_REQUEST["quiet"];
|
|
|
|
|
|
|
|
if ($subop == "massSubscribe") {
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
|
|
|
|
$subscribed = array();
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
$result = db_query($link, "SELECT feed_url,title FROM ttrss_feeds
|
|
|
|
WHERE id = '$id'");
|
|
|
|
|
|
|
|
$feed_url = db_escape_string(db_fetch_result($result, 0, "feed_url"));
|
|
|
|
$title = db_escape_string(db_fetch_result($result, 0, "title"));
|
|
|
|
|
|
|
|
$title_orig = db_fetch_result($result, 0, "title");
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
|
|
|
|
feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
$result = db_query($link,
|
|
|
|
"INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
|
|
|
|
VALUES ('".$_SESSION["uid"]."', '$feed_url', '$title', NULL)");
|
|
|
|
|
|
|
|
array_push($subscribed, $title_orig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($subscribed) > 0) {
|
2007-03-05 10:37:40 +01:00
|
|
|
$msg = "<b>".__('Subscribed to feeds:')."</b>".
|
2007-03-02 20:16:45 +01:00
|
|
|
"<ul class=\"nomarks\">";
|
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
foreach ($subscribed as $title) {
|
2007-03-02 20:16:45 +01:00
|
|
|
$msg .= "<li>$title</li>";
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
2007-03-02 20:16:45 +01:00
|
|
|
$msg .= "</ul>";
|
|
|
|
|
|
|
|
print format_notice($msg);
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "browse") {
|
|
|
|
|
|
|
|
if (!ENABLE_FEED_BROWSER) {
|
2007-03-05 10:37:40 +01:00
|
|
|
print __("Feed browser is administratively disabled.");
|
2006-10-01 12:05:20 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<div id=\"infoBoxTitle\">".__('Other feeds: Top 25')."</div>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
print "<div class=\"infoBoxContents\">";
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<p>".__("Showing top 25 registered feeds, sorted by popularity:")."</p>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
$owner_uid = $_SESSION["uid"];
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT feed_url,COUNT(id) AS subscribers
|
|
|
|
FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
|
|
|
|
WHERE tf.feed_url = ttrss_feeds.feed_url
|
|
|
|
AND owner_uid = '$owner_uid') GROUP BY feed_url
|
|
|
|
ORDER BY subscribers DESC LIMIT 25");
|
|
|
|
|
|
|
|
print "<ul class='browseFeedList' id='browseFeedList'>";
|
|
|
|
|
|
|
|
$feedctr = 0;
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$feed_url = $line["feed_url"];
|
|
|
|
$subscribers = $line["subscribers"];
|
|
|
|
|
|
|
|
$det_result = db_query($link, "SELECT site_url,title,id
|
|
|
|
FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1");
|
|
|
|
|
|
|
|
$details = db_fetch_assoc($det_result);
|
|
|
|
|
|
|
|
$icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
|
|
|
|
|
|
|
|
if (file_exists($icon_file) && filesize($icon_file) > 0) {
|
|
|
|
$feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
|
|
|
|
"/".$details["id"].".ico\">";
|
|
|
|
} else {
|
|
|
|
$feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
|
|
|
|
}
|
|
|
|
|
|
|
|
$check_box = "<input onclick='toggleSelectListRow(this)' class='feedBrowseCB'
|
|
|
|
type=\"checkbox\" id=\"FBCHK-" . $details["id"] . "\">";
|
|
|
|
|
|
|
|
$class = ($feedctr % 2) ? "even" : "odd";
|
|
|
|
|
|
|
|
print "<li class='$class' id=\"FBROW-".$details["id"]."\">$check_box".
|
2007-05-19 16:09:16 +02:00
|
|
|
"$feed_icon " . $details["title"] .
|
2006-10-01 12:05:20 +02:00
|
|
|
" <span class='subscribers'>($subscribers)</span></li>";
|
|
|
|
|
|
|
|
++$feedctr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($feedctr == 0) {
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<li>".__('No feeds found to subscribe.')."</li>";
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
print "</ul>";
|
|
|
|
|
|
|
|
print "<div align='center'>
|
|
|
|
<input type=\"submit\" class=\"button\"
|
2007-03-05 10:37:40 +01:00
|
|
|
onclick=\"feedBrowserSubscribe()\" value=\"".__('Subscribe')."\">
|
2006-10-01 12:05:20 +02:00
|
|
|
<input type='submit' class='button'
|
2007-03-05 10:37:40 +01:00
|
|
|
onclick=\"closeInfoBox()\" value=\"".__('Cancel')."\"></div>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "editfeed") {
|
|
|
|
$feed_id = db_escape_string($_REQUEST["id"]);
|
|
|
|
|
|
|
|
$result = db_query($link,
|
|
|
|
"SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
2007-05-19 16:09:16 +02:00
|
|
|
$title = htmlspecialchars(db_fetch_result($result,
|
|
|
|
0, "title"));
|
2006-10-01 12:05:20 +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 = "";
|
|
|
|
}
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<div id=\"infoBoxTitle\">".__('Feed editor')."</div>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
print "<div class=\"infoBoxContents\">";
|
|
|
|
|
2007-03-02 21:58:29 +01:00
|
|
|
print "<form id=\"edit_feed_form\" onsubmit=\"return false\">";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
print "<input type=\"hidden\" name=\"id\" value=\"$feed_id\">";
|
|
|
|
print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
|
|
|
|
print "<input type=\"hidden\" name=\"subop\" value=\"editSave\">";
|
|
|
|
|
|
|
|
print "<table width='100%'>";
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td>".__('Title:')."</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
print "<td><input class=\"iedit\" onkeypress=\"return filterCR(event, feedEditSave)\"
|
|
|
|
name=\"title\" value=\"$title\"></td></tr>";
|
|
|
|
|
|
|
|
$feed_url = db_fetch_result($result, 0, "feed_url");
|
2007-05-19 16:09:16 +02:00
|
|
|
$feed_url = htmlspecialchars(db_fetch_result($result,
|
|
|
|
0, "feed_url"));
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td>".__('Feed URL:')."</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
print "<td><input class=\"iedit\" onkeypress=\"return filterCR(event, feedEditSave)\"
|
|
|
|
name=\"feed_url\" value=\"$feed_url\"></td></tr>";
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
|
|
|
|
$cat_id = db_fetch_result($result, 0, "cat_id");
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td>".__('Category:')."</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
print "<td>";
|
|
|
|
|
|
|
|
$parent_feed = db_fetch_result($result, 0, "parent_feed");
|
|
|
|
|
|
|
|
if (sprintf("%d", $parent_feed) > 0) {
|
|
|
|
$disabled = "disabled";
|
|
|
|
} else {
|
|
|
|
$disabled = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
print_feed_cat_select($link, "cat_id", $cat_id, "class=\"iedit\" $disabled");
|
|
|
|
|
|
|
|
print "</td>";
|
|
|
|
print "</td></tr>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$update_interval = db_fetch_result($result, 0, "update_interval");
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td>".__('Update Interval:')."</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
print "<td>";
|
|
|
|
|
|
|
|
print_select_hash("update_interval", $update_interval, $update_intervals,
|
|
|
|
"class=\"iedit\"");
|
|
|
|
|
|
|
|
print "</td>";
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td>".__('Link to:')."</td><td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
$tmp_result = db_query($link, "SELECT COUNT(id) AS count
|
|
|
|
FROM ttrss_feeds WHERE parent_feed = '$feed_id'");
|
|
|
|
|
|
|
|
$linked_count = db_fetch_result($tmp_result, 0, "count");
|
|
|
|
|
|
|
|
$parent_feed = db_fetch_result($result, 0, "parent_feed");
|
|
|
|
|
|
|
|
if ($linked_count > 0) {
|
|
|
|
$disabled = "disabled";
|
|
|
|
} else {
|
|
|
|
$disabled = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<select class=\"iedit\" $disabled name=\"parent_feed\">";
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<option value=\"0\">".__('Not linked')."</option>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
if ($cat_id) {
|
|
|
|
$cat_qpart = "AND cat_id = '$cat_id'";
|
|
|
|
} else {
|
|
|
|
$cat_qpart = "AND cat_id IS NULL";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$tmp_result = db_query($link, "SELECT id,title FROM ttrss_feeds
|
|
|
|
WHERE id != '$feed_id' AND owner_uid = ".$_SESSION["uid"]." AND
|
|
|
|
(SELECT COUNT(id) FROM ttrss_feeds AS T2 WHERE T2.id = ttrss_feeds.parent_feed) = 0
|
|
|
|
$cat_qpart ORDER BY title");
|
|
|
|
|
|
|
|
if (db_num_rows($tmp_result) > 0) {
|
|
|
|
print "<option disabled>--------</option>";
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($tmp_line = db_fetch_assoc($tmp_result)) {
|
|
|
|
if ($tmp_line["id"] == $parent_feed) {
|
|
|
|
$is_selected = "selected";
|
|
|
|
} else {
|
|
|
|
$is_selected = "";
|
|
|
|
}
|
|
|
|
printf("<option $is_selected value='%d'>%s</option>",
|
|
|
|
$tmp_line["id"], $tmp_line["title"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</select>";
|
|
|
|
print "</td></tr>";
|
|
|
|
|
|
|
|
$purge_interval = db_fetch_result($result, 0, "purge_interval");
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td>".__('Article purging:')."</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
print "<td>";
|
|
|
|
|
|
|
|
print_select_hash("purge_interval", $purge_interval, $purge_intervals,
|
|
|
|
"class=\"iedit\"");
|
|
|
|
|
|
|
|
print "</td>";
|
|
|
|
|
2008-01-25 18:50:29 +01:00
|
|
|
if (ALLOW_SELECT_UPDATE_METHOD) {
|
2008-01-25 18:46:01 +01:00
|
|
|
|
2008-01-25 18:50:29 +01:00
|
|
|
$update_method = db_fetch_result($result, 0, "update_method");
|
|
|
|
|
|
|
|
print "<tr><td>".__('Update using:')."</td>";
|
|
|
|
|
|
|
|
print "<td>";
|
|
|
|
|
|
|
|
print_select_hash("update_method", $update_method, $update_methods,
|
|
|
|
"class=\"iedit\"");
|
|
|
|
|
|
|
|
print "</td>";
|
|
|
|
}
|
2008-01-25 18:46:01 +01:00
|
|
|
|
2007-05-19 16:09:16 +02:00
|
|
|
$auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td>".__('Login:')."</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
print "<td><input class=\"iedit\" onkeypress=\"return filterCR(event, feedEditSave)\"
|
|
|
|
name=\"auth_login\" value=\"$auth_login\"></td></tr>";
|
|
|
|
|
2007-05-19 16:09:16 +02:00
|
|
|
$auth_pass = htmlspecialchars(db_fetch_result($result, 0, "auth_pass"));
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td>".__('Password:')."</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
print "<td><input class=\"iedit\" type=\"password\" name=\"auth_pass\"
|
|
|
|
onkeypress=\"return filterCR(event, feedEditSave)\"
|
|
|
|
value=\"$auth_pass\"></td></tr>";
|
|
|
|
|
|
|
|
$private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
|
|
|
|
|
|
|
|
if ($private) {
|
|
|
|
$checked = "checked";
|
|
|
|
} else {
|
|
|
|
$checked = "";
|
|
|
|
}
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<tr><td valign='top'>".__('Options:')."</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
print "<td><input type=\"checkbox\" name=\"private\" id=\"private\"
|
2007-03-05 10:37:40 +01:00
|
|
|
$checked><label for=\"private\">".__('Hide from "Other Feeds"')."</label>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
$rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
|
|
|
|
|
|
|
|
if ($rtl_content) {
|
|
|
|
$checked = "checked";
|
|
|
|
} else {
|
|
|
|
$checked = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<br><input type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
|
2007-03-09 19:12:31 +01:00
|
|
|
$checked><label for=\"rtl_content\">".__('Right-to-left content')."</label>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
$hidden = sql_bool_to_bool(db_fetch_result($result, 0, "hidden"));
|
|
|
|
|
|
|
|
if ($hidden) {
|
|
|
|
$checked = "checked";
|
|
|
|
} else {
|
|
|
|
$checked = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<br><input type=\"checkbox\" id=\"hidden\" name=\"hidden\"
|
2007-03-05 10:37:40 +01:00
|
|
|
$checked><label for=\"hidden\">".__('Hide from my feed list')."</label>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
$include_in_digest = sql_bool_to_bool(db_fetch_result($result, 0, "include_in_digest"));
|
|
|
|
|
|
|
|
if ($include_in_digest) {
|
|
|
|
$checked = "checked";
|
|
|
|
} else {
|
|
|
|
$checked = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<br><input type=\"checkbox\" id=\"include_in_digest\"
|
|
|
|
name=\"include_in_digest\"
|
2007-03-05 10:37:40 +01:00
|
|
|
$checked><label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2007-08-26 06:00:30 +02:00
|
|
|
$cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
|
|
|
|
|
|
|
|
if ($cache_images) {
|
|
|
|
$checked = "checked";
|
|
|
|
} else {
|
|
|
|
$checked = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ENABLE_SIMPLEPIE && SIMPLEPIE_CACHE_IMAGES) {
|
|
|
|
$disabled = "";
|
|
|
|
$label_class = "";
|
|
|
|
} else {
|
|
|
|
$disabled = "disabled";
|
|
|
|
$label_class = "class='insensitive'";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<br><input type=\"checkbox\" id=\"cache_images\"
|
|
|
|
name=\"cache_images\" $disabled
|
|
|
|
$checked><label $label_class for=\"cache_images\">".
|
|
|
|
__('Cache images locally')."</label>";
|
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
print "</td></tr>";
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
print "</form>";
|
|
|
|
|
|
|
|
print "<div align='right'>
|
|
|
|
<input type=\"submit\" class=\"button\"
|
2007-03-05 10:37:40 +01:00
|
|
|
onclick=\"return feedEditSave()\" value=\"".__('Save')."\">
|
2006-10-01 12:05:20 +02:00
|
|
|
<input type='submit' class='button'
|
2007-03-05 10:37:40 +01:00
|
|
|
onclick=\"return feedEditCancel()\" value=\"".__('Cancel')."\"></div>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "editSave") {
|
|
|
|
|
|
|
|
$feed_title = db_escape_string(trim($_POST["title"]));
|
|
|
|
$feed_link = db_escape_string(trim($_POST["feed_url"]));
|
|
|
|
$upd_intl = db_escape_string($_POST["update_interval"]);
|
|
|
|
$purge_intl = db_escape_string($_POST["purge_interval"]);
|
|
|
|
$feed_id = db_escape_string($_POST["id"]);
|
|
|
|
$cat_id = db_escape_string($_POST["cat_id"]);
|
|
|
|
$auth_login = db_escape_string(trim($_POST["auth_login"]));
|
|
|
|
$auth_pass = db_escape_string(trim($_POST["auth_pass"]));
|
|
|
|
$parent_feed = db_escape_string($_POST["parent_feed"]);
|
|
|
|
$private = checkbox_to_sql_bool(db_escape_string($_POST["private"]));
|
|
|
|
$rtl_content = checkbox_to_sql_bool(db_escape_string($_POST["rtl_content"]));
|
|
|
|
$hidden = checkbox_to_sql_bool(db_escape_string($_POST["hidden"]));
|
|
|
|
$include_in_digest = checkbox_to_sql_bool(
|
|
|
|
db_escape_string($_POST["include_in_digest"]));
|
2007-08-26 06:00:30 +02:00
|
|
|
$cache_images = checkbox_to_sql_bool(
|
|
|
|
db_escape_string($_POST["cache_images"]));
|
2008-01-25 18:46:01 +01:00
|
|
|
$update_method = (int) db_escape_string($_POST["update_method"]);
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
if ($cat_id && $cat_id != 0) {
|
|
|
|
$category_qpart = "cat_id = '$cat_id',";
|
|
|
|
$category_qpart_nocomma = "cat_id = '$cat_id'";
|
|
|
|
} else {
|
|
|
|
$category_qpart = 'cat_id = NULL,';
|
|
|
|
$category_qpart_nocomma = 'cat_id = NULL';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$category_qpart = "";
|
|
|
|
$category_qpart_nocomma = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($parent_feed && $parent_feed != 0) {
|
|
|
|
$parent_qpart = "parent_feed = '$parent_feed'";
|
|
|
|
} else {
|
|
|
|
$parent_qpart = 'parent_feed = NULL';
|
|
|
|
}
|
|
|
|
|
2007-08-26 06:00:30 +02:00
|
|
|
if (ENABLE_SIMPLEPIE && SIMPLEPIE_CACHE_IMAGES) {
|
|
|
|
$cache_images_qpart = "cache_images = $cache_images,";
|
|
|
|
} else {
|
|
|
|
$cache_images_qpart = "";
|
|
|
|
}
|
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
$result = db_query($link, "UPDATE ttrss_feeds SET
|
|
|
|
$category_qpart $parent_qpart,
|
|
|
|
title = '$feed_title', feed_url = '$feed_link',
|
|
|
|
update_interval = '$upd_intl',
|
|
|
|
purge_interval = '$purge_intl',
|
|
|
|
auth_login = '$auth_login',
|
|
|
|
auth_pass = '$auth_pass',
|
|
|
|
private = $private,
|
|
|
|
rtl_content = $rtl_content,
|
|
|
|
hidden = $hidden,
|
2007-08-26 06:00:30 +02:00
|
|
|
$cache_images_qpart
|
2008-01-25 18:46:01 +01:00
|
|
|
include_in_digest = $include_in_digest,
|
|
|
|
update_method = '$update_method'
|
2006-10-01 12:05:20 +02:00
|
|
|
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
# update linked feed categories
|
|
|
|
$result = db_query($link, "UPDATE ttrss_feeds SET
|
|
|
|
$category_qpart_nocomma WHERE parent_feed = '$feed_id' AND
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "remove") {
|
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
|
|
|
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
|
|
|
if ($id > 0) {
|
|
|
|
|
|
|
|
db_query($link, "DELETE FROM ttrss_feeds
|
|
|
|
WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
$icons_dir = ICONS_DIR;
|
|
|
|
|
|
|
|
if (file_exists($icons_dir . "/$id.ico")) {
|
|
|
|
unlink($icons_dir . "/$id.ico");
|
|
|
|
}
|
|
|
|
} else if ($id < -10) {
|
|
|
|
|
|
|
|
$label_id = -$id - 11;
|
|
|
|
|
|
|
|
db_query($link, "DELETE FROM ttrss_labels
|
|
|
|
WHERE id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-26 06:13:50 +02:00
|
|
|
if ($subop == "clear") {
|
|
|
|
$id = db_escape_string($_GET["id"]);
|
|
|
|
clear_feed_articles($link, $id);
|
|
|
|
}
|
|
|
|
|
2008-04-30 12:12:41 +02:00
|
|
|
if ($subop == "rescore") {
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
|
|
|
$filters = load_filters($link, $id, $_SESSION["uid"], 6);
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT title, content, link, ref_id FROM
|
|
|
|
ttrss_user_entries, ttrss_entries
|
|
|
|
WHERE ref_id = id AND feed_id = '$id' AND
|
|
|
|
owner_uid = " .$_SESSION['uid']."
|
2008-04-30 12:54:26 +02:00
|
|
|
");
|
2008-04-30 12:12:41 +02:00
|
|
|
|
|
|
|
$scores = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$article_filters = get_article_filters($filters, $line['title'],
|
|
|
|
$line['content'], $line['link']);
|
|
|
|
|
|
|
|
$new_score = calculate_article_score($article_filters);
|
|
|
|
|
|
|
|
if (!$scores[$new_score]) $scores[$new_score] = array();
|
|
|
|
|
|
|
|
array_push($scores[$new_score], $line['ref_id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (array_keys($scores) as $s) {
|
|
|
|
if ($s > 1000) {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
|
|
|
|
marked = true WHERE
|
2008-05-04 06:46:14 +02:00
|
|
|
ref_id IN (" . join(',', $scores[$s]) . ")");
|
2008-05-17 04:34:49 +02:00
|
|
|
} else if ($s < -500) {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
|
|
|
|
unread = false WHERE
|
|
|
|
ref_id IN (" . join(',', $scores[$s]) . ")");
|
2008-05-04 06:46:14 +02:00
|
|
|
} else {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
|
|
|
|
ref_id IN (" . join(',', $scores[$s]) . ")");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print __("All done.");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "rescoreAll") {
|
|
|
|
|
|
|
|
$result = db_query($link,
|
|
|
|
"SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION['uid']);
|
|
|
|
|
|
|
|
while ($feed_line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$id = $feed_line["id"];
|
|
|
|
|
|
|
|
$filters = load_filters($link, $id, $_SESSION["uid"], 6);
|
|
|
|
|
|
|
|
$tmp_result = db_query($link, "SELECT title, content, link, ref_id FROM
|
|
|
|
ttrss_user_entries, ttrss_entries
|
|
|
|
WHERE ref_id = id AND feed_id = '$id' AND
|
|
|
|
owner_uid = " .$_SESSION['uid']."
|
|
|
|
");
|
|
|
|
|
|
|
|
$scores = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($tmp_result)) {
|
|
|
|
|
|
|
|
$article_filters = get_article_filters($filters, $line['title'],
|
|
|
|
$line['content'], $line['link']);
|
|
|
|
|
|
|
|
$new_score = calculate_article_score($article_filters);
|
|
|
|
|
|
|
|
if (!$scores[$new_score]) $scores[$new_score] = array();
|
|
|
|
|
|
|
|
array_push($scores[$new_score], $line['ref_id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (array_keys($scores) as $s) {
|
|
|
|
if ($s > 1000) {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
|
|
|
|
marked = true WHERE
|
2008-04-30 12:12:41 +02:00
|
|
|
ref_id IN (" . join(',', $scores[$s]) . ")");
|
|
|
|
} else {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
|
|
|
|
ref_id IN (" . join(',', $scores[$s]) . ")");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print __("All done.");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
if ($subop == "add") {
|
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
|
|
|
|
2007-04-25 17:00:08 +02:00
|
|
|
$feed_url = db_escape_string(trim($_REQUEST["feed_url"]));
|
|
|
|
$cat_id = db_escape_string($_REQUEST["cat_id"]);
|
|
|
|
$p_from = db_escape_string($_REQUEST["from"]);
|
|
|
|
|
|
|
|
/* only read authentication information from POST */
|
|
|
|
|
|
|
|
$auth_login = db_escape_string(trim($_POST["auth_login"]));
|
|
|
|
$auth_pass = db_escape_string(trim($_POST["auth_pass"]));
|
2006-10-31 09:37:40 +01:00
|
|
|
|
2006-12-18 06:56:55 +01:00
|
|
|
if ($p_from != 'tt-rss') {
|
2006-10-31 09:37:40 +01:00
|
|
|
print "<html>
|
|
|
|
<head>
|
|
|
|
<title>Tiny Tiny RSS - Subscribe to feed...</title>
|
|
|
|
<link rel=\"stylesheet\" type=\"text/css\" href=\"quicksub.css\">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<img class=\"logo\" src=\"images/ttrss_logo.png\"
|
|
|
|
alt=\"Tiny Tiny RSS\"/>
|
2006-12-18 06:56:55 +01:00
|
|
|
<h1>Subscribe to feed...</h1>
|
|
|
|
<div class=\"content\">";
|
2006-10-31 09:37:40 +01:00
|
|
|
}
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2007-04-25 17:00:08 +02:00
|
|
|
if (subscribe_to_feed($link, $feed_url, $cat_id, $auth_login, $auth_pass)) {
|
2007-03-05 13:50:46 +01:00
|
|
|
print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
|
2006-10-01 12:05:20 +02:00
|
|
|
} else {
|
2007-03-05 13:50:46 +01:00
|
|
|
print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
2006-10-31 09:37:40 +01:00
|
|
|
|
2006-12-18 06:56:55 +01:00
|
|
|
if ($p_from != 'tt-rss') {
|
2008-02-24 13:18:08 +01:00
|
|
|
$tt_uri = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . preg_replace('/backend\.php.*$/', 'tt-rss.php', $_SERVER["REQUEST_URI"]);
|
2006-10-31 09:37:40 +01:00
|
|
|
|
2008-02-24 13:18:08 +01:00
|
|
|
|
|
|
|
$tp_uri = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . preg_replace('/backend\.php.*$/', 'prefs.php', $_SERVER["REQUEST_URI"]);
|
2006-12-18 06:56:55 +01:00
|
|
|
|
|
|
|
print "<p><a href='$tt_uri'>Return to Tiny Tiny RSS</a> |";
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
|
|
|
|
feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
$feed_id = db_fetch_result($result, 0, "id");
|
|
|
|
|
|
|
|
if ($feed_id) {
|
|
|
|
print "<a href='$tp_uri?tab=feedConfig&subop=editFeed:$feed_id'>
|
|
|
|
Edit subscription options</a> | ";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<a href='javascript:window.close()'>Close this window</a>.</p>";
|
2006-10-31 09:37:40 +01:00
|
|
|
|
2006-12-18 06:56:55 +01:00
|
|
|
print "</div></body></html>";
|
2006-10-31 09:37:40 +01:00
|
|
|
return;
|
|
|
|
}
|
2007-05-14 07:41:04 +02:00
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "categorize") {
|
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
|
|
|
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
|
|
|
|
$cat_id = db_escape_string($_GET["cat_id"]);
|
|
|
|
|
|
|
|
if ($cat_id == 0) {
|
|
|
|
$cat_id_qpart = 'NULL';
|
|
|
|
} else {
|
|
|
|
$cat_id_qpart = "'$cat_id'";
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($link, "BEGIN");
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
|
|
|
db_query($link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
|
|
|
|
WHERE id = '$id' AND parent_feed IS NULL
|
|
|
|
AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
# update linked feed categories
|
|
|
|
db_query($link, "UPDATE ttrss_feeds SET
|
|
|
|
cat_id = $cat_id_qpart WHERE parent_feed = '$id' AND
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($link, "COMMIT");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-10-04 07:40:00 +02:00
|
|
|
if ($subop == "editCats") {
|
|
|
|
|
|
|
|
$action = $_REQUEST["action"];
|
|
|
|
|
|
|
|
if ($action == "save") {
|
|
|
|
|
2007-08-20 09:29:39 +02:00
|
|
|
$cat_title = db_escape_string(trim($_REQUEST["value"]));
|
|
|
|
$cat_id = db_escape_string($_GET["cid"]);
|
2006-10-04 07:40:00 +02:00
|
|
|
|
|
|
|
$result = db_query($link, "UPDATE ttrss_feed_categories SET
|
|
|
|
title = '$cat_title' WHERE id = '$cat_id' AND owner_uid = ".$_SESSION["uid"]);
|
2007-08-20 09:29:39 +02:00
|
|
|
|
|
|
|
print $_REQUEST["value"];
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
2006-10-04 07:40:00 +02:00
|
|
|
}
|
|
|
|
|
2007-08-20 09:29:39 +02:00
|
|
|
print "<div id=\"infoBoxTitle\">".__('Category editor')."</div>";
|
|
|
|
|
|
|
|
print "<div class=\"infoBoxContents\">";
|
|
|
|
|
|
|
|
|
2006-10-04 07:40:00 +02:00
|
|
|
if ($action == "add") {
|
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
|
|
|
|
|
|
|
$feed_cat = db_escape_string(trim($_GET["cat"]));
|
|
|
|
|
|
|
|
$result = db_query($link,
|
|
|
|
"SELECT id FROM ttrss_feed_categories
|
|
|
|
WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
|
|
|
|
$result = db_query($link,
|
|
|
|
"INSERT INTO ttrss_feed_categories (owner_uid,title)
|
|
|
|
VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2007-03-05 13:50:46 +01:00
|
|
|
print_warning(T_sprintf("Category <b>$%s</b> already exists in the database.",
|
|
|
|
$feed_cat));
|
2006-10-04 07:40:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($action == "remove") {
|
|
|
|
|
|
|
|
if (!WEB_DEMO_MODE) {
|
|
|
|
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
|
|
|
db_query($link, "BEGIN");
|
|
|
|
|
|
|
|
$result = db_query($link,
|
|
|
|
"SELECT count(id) as num_feeds FROM ttrss_feeds
|
|
|
|
WHERE cat_id = '$id'");
|
|
|
|
|
|
|
|
$num_feeds = db_fetch_result($result, 0, "num_feeds");
|
|
|
|
|
|
|
|
if ($num_feeds == 0) {
|
|
|
|
db_query($link, "DELETE FROM ttrss_feed_categories
|
|
|
|
WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
} else {
|
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print format_warning(__("Unable to delete non empty feed categories."));
|
2006-10-04 07:40:00 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($link, "COMMIT");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<div class=\"prefGenericAddBox\">
|
|
|
|
<input id=\"fadd_cat\"
|
2006-10-04 08:40:45 +02:00
|
|
|
onkeypress=\"return filterCR(event, addFeedCat)\"
|
2006-10-04 07:40:00 +02:00
|
|
|
onkeyup=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
|
2007-02-14 14:52:18 +01:00
|
|
|
onchange=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
|
2006-10-04 07:40:00 +02:00
|
|
|
size=\"40\">
|
|
|
|
<input
|
|
|
|
type=\"submit\" class=\"button\" disabled=\"true\" id=\"catadd_submit_btn\"
|
2007-03-05 10:37:40 +01:00
|
|
|
onclick=\"javascript:addFeedCat()\" value=\"".__('Create category')."\"></div>";
|
2006-10-04 07:40:00 +02:00
|
|
|
|
|
|
|
$result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
|
|
|
|
WHERE owner_uid = ".$_SESSION["uid"]."
|
|
|
|
ORDER BY title");
|
|
|
|
|
|
|
|
print "<p>";
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
|
|
|
|
print "<table width=\"100%\" class=\"prefFeedCatList\"
|
|
|
|
cellspacing=\"0\">";
|
|
|
|
|
|
|
|
print "<tr><td class=\"selectPrompt\" colspan=\"8\">
|
2007-05-14 09:56:49 +02:00
|
|
|
".__('Select:')."
|
|
|
|
<a href=\"javascript:selectPrefRows('fcat', true)\">".__('All')."</a>,
|
|
|
|
<a href=\"javascript:selectPrefRows('fcat', false)\">".__('None')."</a>
|
2006-10-04 07:40:00 +02:00
|
|
|
</td></tr>";
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
print "<div class=\"prefFeedCatHolder\">";
|
|
|
|
|
2007-03-02 21:58:29 +01:00
|
|
|
print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
|
2006-10-04 07:40:00 +02:00
|
|
|
|
|
|
|
print "<table width=\"100%\" class=\"prefFeedCatList\"
|
|
|
|
cellspacing=\"0\" id=\"prefFeedCatList\">";
|
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$class = ($lnum % 2) ? "even" : "odd";
|
|
|
|
|
|
|
|
$cat_id = $line["id"];
|
2007-08-20 09:29:39 +02:00
|
|
|
$this_row_id = "id=\"FCATR-$cat_id\"";
|
2006-10-04 07:40:00 +02:00
|
|
|
|
|
|
|
print "<tr class=\"$class\" $this_row_id>";
|
|
|
|
|
2007-05-19 16:09:16 +02:00
|
|
|
$edit_title = htmlspecialchars($line["title"]);
|
2006-10-04 07:40:00 +02:00
|
|
|
|
2007-08-20 09:29:39 +02:00
|
|
|
print "<td width='5%' align='center'><input
|
|
|
|
onclick='toggleSelectPrefRow(this, \"fcat\");'
|
|
|
|
type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";
|
|
|
|
|
|
|
|
print "<td><span id=\"FCATT-$cat_id\">" .
|
|
|
|
$edit_title . "</span></td>";
|
2006-10-04 07:40:00 +02:00
|
|
|
|
|
|
|
print "</tr>";
|
|
|
|
|
|
|
|
++$lnum;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
print "</form>";
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
2006-10-04 08:14:16 +02:00
|
|
|
} else {
|
2007-03-05 10:37:40 +01:00
|
|
|
print "<p>".__('No feed categories defined.')."</p>";
|
2006-10-04 08:14:16 +02:00
|
|
|
}
|
2006-10-04 07:40:00 +02:00
|
|
|
|
2006-10-04 08:14:16 +02:00
|
|
|
print "<div style='float : right'>
|
|
|
|
<input type='submit' class='button'
|
2007-03-05 10:37:40 +01:00
|
|
|
onclick=\"selectTab('feedConfig')\" value=\"".__('Close this window')."\"></div>";
|
2006-10-04 07:40:00 +02:00
|
|
|
|
2006-10-04 08:14:16 +02:00
|
|
|
print "<div id=\"catOpToolbar\">";
|
2006-10-04 07:40:00 +02:00
|
|
|
|
2007-08-20 09:29:39 +02:00
|
|
|
print "
|
2006-10-04 08:14:16 +02:00
|
|
|
<input type=\"submit\" class=\"button\" disabled=\"true\"
|
2007-03-05 10:37:40 +01:00
|
|
|
onclick=\"return removeSelectedFeedCats()\" value=\"".__('Remove')."\">";
|
2007-08-20 09:29:39 +02:00
|
|
|
|
2006-10-04 07:40:00 +02:00
|
|
|
print "</div>";
|
|
|
|
|
2006-10-04 08:14:16 +02:00
|
|
|
print "</div>";
|
|
|
|
|
2006-10-04 07:40:00 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
if ($quiet) return;
|
|
|
|
|
2007-05-14 07:41:04 +02:00
|
|
|
set_pref($link, "_PREFS_ACTIVE_TAB", "feedConfig");
|
|
|
|
|
2006-12-01 07:26:05 +01:00
|
|
|
$result = db_query($link, "SELECT COUNT(id) AS num_errors
|
2006-10-01 12:05:20 +02:00
|
|
|
FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
2006-12-01 07:26:05 +01:00
|
|
|
$num_errors = db_fetch_result($result, 0, "num_errors");
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2006-12-01 07:26:05 +01:00
|
|
|
if ($num_errors > 0) {
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2007-03-05 10:37:40 +01:00
|
|
|
print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
|
|
|
|
__('Some feeds have update errors (click for details)')."</a>");
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$feed_search = db_escape_string($_GET["search"]);
|
|
|
|
|
|
|
|
if (array_key_exists("search", $_GET)) {
|
|
|
|
$_SESSION["prefs_feed_search"] = $feed_search;
|
|
|
|
} else {
|
|
|
|
$feed_search = $_SESSION["prefs_feed_search"];
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<div class=\"feedEditSearch\">
|
2007-11-30 09:06:17 +01:00
|
|
|
<input id=\"feed_search\" size=\"20\" type=\"search\"
|
2008-05-17 05:11:51 +02:00
|
|
|
onfocus=\"javascript:disableHotkeys();\"
|
|
|
|
onblur=\"javascript:enableHotkeys();\"
|
2006-10-01 12:05:20 +02:00
|
|
|
onchange=\"javascript:updateFeedList()\" value=\"$feed_search\">
|
|
|
|
<input type=\"submit\" class=\"button\"
|
2007-03-05 12:02:18 +01:00
|
|
|
onclick=\"javascript:updateFeedList()\" value=\"".__('Search')."\">
|
2006-10-01 12:05:20 +02:00
|
|
|
</div>";
|
2007-03-05 14:45:34 +01:00
|
|
|
|
2007-05-14 07:41:04 +02:00
|
|
|
print "<input onclick=\"javascript:displayDlg('quickAddFeed')\"
|
2007-05-14 08:04:55 +02:00
|
|
|
type=\"submit\" id=\"subscribe_to_feed_btn\"
|
2007-05-14 07:41:04 +02:00
|
|
|
class=\"button\" value=\"".__('Subscribe to feed')."\">";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) {
|
|
|
|
print " <input type=\"submit\" class=\"button\"
|
2007-05-14 08:04:55 +02:00
|
|
|
id=\"top25_feeds_btn\"
|
2007-03-05 12:02:18 +01:00
|
|
|
onclick=\"javascript:browseFeeds()\" value=\"".__('Top 25')."\">";
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$feeds_sort = db_escape_string($_GET["sort"]);
|
|
|
|
|
|
|
|
if (!$feeds_sort || $feeds_sort == "undefined") {
|
|
|
|
$feeds_sort = $_SESSION["pref_sort_feeds"];
|
|
|
|
if (!$feeds_sort) $feeds_sort = "title";
|
|
|
|
}
|
|
|
|
|
|
|
|
$_SESSION["pref_sort_feeds"] = $feeds_sort;
|
|
|
|
|
|
|
|
if ($feed_search) {
|
|
|
|
$search_qpart = "(UPPER(F1.title) LIKE UPPER('%$feed_search%') OR
|
|
|
|
UPPER(F1.feed_url) LIKE UPPER('%$feed_search%')) AND";
|
|
|
|
} else {
|
|
|
|
$search_qpart = "";
|
|
|
|
}
|
|
|
|
|
2007-05-18 08:12:17 +02:00
|
|
|
$show_last_article_info = false;
|
|
|
|
$show_last_article_checked = "";
|
|
|
|
$show_last_article_qpart = "";
|
|
|
|
|
|
|
|
if ($_GET["slat"] == "true") {
|
|
|
|
$show_last_article_info = true;
|
|
|
|
$show_last_article_checked = "checked";
|
2008-04-21 06:53:19 +02:00
|
|
|
$show_last_article_qpart = ", (SELECT ".SUBSTRING_FOR_DATE."(MAX(updated),1,16) FROM ttrss_user_entries,
|
2007-05-18 08:12:17 +02:00
|
|
|
ttrss_entries WHERE ref_id = ttrss_entries.id
|
|
|
|
AND feed_id = F1.id) AS last_article";
|
2007-05-18 08:14:32 +02:00
|
|
|
} else if ($feeds_sort == "last_article") {
|
|
|
|
$feeds_sort = "title";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
$order_by_qpart = "category,$feeds_sort,title";
|
|
|
|
} else {
|
|
|
|
$order_by_qpart = "$feeds_sort,title";
|
2007-05-18 08:12:17 +02:00
|
|
|
}
|
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
F1.id,
|
|
|
|
F1.title,
|
|
|
|
F1.feed_url,
|
2008-04-28 12:08:44 +02:00
|
|
|
".SUBSTRING_FOR_DATE."(F1.last_updated,1,16) AS last_updated,
|
2006-10-01 12:05:20 +02:00
|
|
|
F1.parent_feed,
|
|
|
|
F1.update_interval,
|
2007-05-14 07:51:18 +02:00
|
|
|
F1.last_error,
|
2006-10-01 12:05:20 +02:00
|
|
|
F1.purge_interval,
|
|
|
|
F1.cat_id,
|
|
|
|
F2.title AS parent_title,
|
|
|
|
C1.title AS category,
|
|
|
|
F1.hidden,
|
2007-05-18 08:12:17 +02:00
|
|
|
F1.include_in_digest
|
|
|
|
$show_last_article_qpart
|
2006-10-01 12:05:20 +02:00
|
|
|
FROM
|
|
|
|
ttrss_feeds AS F1
|
|
|
|
LEFT JOIN ttrss_feeds AS F2
|
|
|
|
ON (F1.parent_feed = F2.id)
|
|
|
|
LEFT JOIN ttrss_feed_categories AS C1
|
|
|
|
ON (F1.cat_id = C1.id)
|
|
|
|
WHERE
|
|
|
|
$search_qpart F1.owner_uid = '".$_SESSION["uid"]."'
|
|
|
|
ORDER by $order_by_qpart");
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
|
|
|
|
// print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
|
|
|
|
|
|
|
|
print "<p><table width=\"100%\" cellspacing=\"0\"
|
|
|
|
class=\"prefFeedList\" id=\"prefFeedList\">";
|
2007-05-18 08:12:17 +02:00
|
|
|
print "<tr><td class=\"selectPrompt\" colspan=\"8\">".
|
|
|
|
"<div style='float : right'>".
|
|
|
|
"<input id='show_last_article_times' type='checkbox' onchange='feedlistToggleSLAT()'
|
|
|
|
$show_last_article_checked><label
|
|
|
|
for='show_last_article_times'>".__('Show last article times')."</label></div>".
|
|
|
|
__('Select:')."
|
2007-05-14 09:56:49 +02:00
|
|
|
<a href=\"javascript:selectPrefRows('feed', true)\">".__('All')."</a>,
|
|
|
|
<a href=\"javascript:selectPrefRows('feed', false)\">".__('None')."</a>
|
2006-10-01 12:05:20 +02:00
|
|
|
</td</tr>";
|
|
|
|
|
|
|
|
if (!get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
print "<tr class=\"title\">
|
|
|
|
<td width='5%' align='center'> </td>";
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_ICONS')) {
|
|
|
|
print "<td width='3%'> </td>";
|
|
|
|
}
|
|
|
|
|
2007-05-19 06:41:50 +02:00
|
|
|
print "<td width='60%'><a href=\"javascript:updateFeedList('title')\">".__('Title')."</a></td>";
|
|
|
|
|
|
|
|
if ($show_last_article_info) {
|
|
|
|
print "<td width='20%' align='right'><a href=\"javascript:updateFeedList('last_article')\">".__('Last Article')."</a></td>";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<td width='20%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">".__('Updated')."</a></td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
$cur_cat_id = -1;
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
|
|
|
|
$feed_id = $line["id"];
|
|
|
|
$cat_id = $line["cat_id"];
|
|
|
|
|
2007-05-19 16:09:16 +02:00
|
|
|
$edit_title = htmlspecialchars($line["title"]);
|
2008-07-25 09:48:15 +02:00
|
|
|
$feed_title = $edit_title;
|
2007-05-19 16:09:16 +02:00
|
|
|
$edit_cat = htmlspecialchars($line["category"]);
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
$hidden = sql_bool_to_bool($line["hidden"]);
|
|
|
|
|
2007-05-14 07:51:18 +02:00
|
|
|
$last_error = $line["last_error"];
|
|
|
|
|
2007-03-09 19:12:31 +01:00
|
|
|
if (!$edit_cat) $edit_cat = __("Uncategorized");
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
$last_updated = $line["last_updated"];
|
|
|
|
|
2007-04-26 08:30:05 +02:00
|
|
|
if (!$last_updated) {
|
|
|
|
$last_updated = "—";
|
|
|
|
} else if (get_pref($link, 'HEADLINES_SMART_DATE')) {
|
2006-10-01 12:05:20 +02:00
|
|
|
$last_updated = smart_date_time(strtotime($last_updated));
|
|
|
|
} else {
|
|
|
|
$short_date = get_pref($link, 'SHORT_DATE_FORMAT');
|
|
|
|
$last_updated = date($short_date, strtotime($last_updated));
|
|
|
|
}
|
|
|
|
|
|
|
|
$last_article = $line["last_article"];
|
|
|
|
|
2007-04-26 08:30:05 +02:00
|
|
|
if (!$last_article) {
|
|
|
|
$last_article = "—";
|
|
|
|
} else if (get_pref($link, 'HEADLINES_SMART_DATE')) {
|
2006-10-01 12:05:20 +02:00
|
|
|
$last_article = smart_date_time(strtotime($last_article));
|
|
|
|
} else {
|
|
|
|
$short_date = get_pref($link, 'SHORT_DATE_FORMAT');
|
|
|
|
$last_article = date($short_date, strtotime($last_article));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS') && $cur_cat_id != $cat_id) {
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
print "<tr><td colspan=\"6\" class=\"feedEditCat\">$edit_cat</td></tr>";
|
|
|
|
|
|
|
|
print "<tr class=\"title\">
|
|
|
|
<td width='5%'> </td>";
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_ICONS')) {
|
|
|
|
print "<td width='3%'> </td>";
|
|
|
|
}
|
|
|
|
|
2007-05-18 08:12:17 +02:00
|
|
|
print "<td width='60%'><a href=\"javascript:updateFeedList('title')\">".__('Title')."</a></td>";
|
|
|
|
|
|
|
|
if ($show_last_article_info) {
|
|
|
|
print "<td width='20%' align='right'>
|
|
|
|
<a href=\"javascript:updateFeedList('last_article')\">".__('Last Article')."</a></td>";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<td width='20%' align='right'>
|
|
|
|
<a href=\"javascript:updateFeedList('last_updated')\">".__('Updated')."</a></td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
$cur_cat_id = $cat_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$class = ($lnum % 2) ? "even" : "odd";
|
|
|
|
$this_row_id = "id=\"FEEDR-$feed_id\"";
|
|
|
|
|
|
|
|
print "<tr class=\"$class\" $this_row_id>";
|
|
|
|
|
|
|
|
$icon_file = ICONS_DIR . "/$feed_id.ico";
|
|
|
|
|
|
|
|
if (file_exists($icon_file) && filesize($icon_file) > 0) {
|
|
|
|
$feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL . "/$feed_id.ico\">";
|
|
|
|
} else {
|
|
|
|
$feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<td class='feedSelect'><input onclick='toggleSelectPrefRow(this, \"feed\");'
|
|
|
|
type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
|
|
|
|
|
2008-05-17 17:36:35 +02:00
|
|
|
$onclick = "onclick='editFeed($feed_id)' title='".__('Click to edit')."'";
|
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
if (get_pref($link, 'ENABLE_FEED_ICONS')) {
|
2008-05-17 17:36:35 +02:00
|
|
|
print "<td $onclick class='feedIcon'>$feed_icon</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($hidden) {
|
|
|
|
$edit_title = "<span class=\"insensitive\">$edit_title (Hidden)</span>";
|
|
|
|
$last_updated = "<span class=\"insensitive\">$last_updated</span>";
|
|
|
|
$last_article = "<span class=\"insensitive\">$last_article</span>";
|
2007-05-14 07:51:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($last_error) {
|
2007-08-20 17:41:02 +02:00
|
|
|
$edit_title = "<span class=\"feed_error\">$edit_title</span>";
|
2007-05-14 07:51:18 +02:00
|
|
|
$last_updated = "<span class=\"feed_error\">$last_updated</span>";
|
|
|
|
$last_article = "<span class=\"feed_error\">$last_article</span>";
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$parent_title = $line["parent_title"];
|
|
|
|
if ($parent_title) {
|
|
|
|
$parent_title = "<span class='groupPrompt'>(linked to
|
|
|
|
$parent_title)</span>";
|
|
|
|
}
|
|
|
|
|
2008-07-25 09:48:15 +02:00
|
|
|
$ops = "<span class=\"feedOps\">
|
|
|
|
(<a title=\"".__('Unsubscribe')."\"
|
|
|
|
href='javascript:removeFeed($feed_id, \"$feed_title\")'>x</a>)
|
|
|
|
</span>";
|
|
|
|
|
2008-05-17 17:36:35 +02:00
|
|
|
print "<td $onclick>" . "$edit_title $parent_title" . "</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2007-05-18 08:12:17 +02:00
|
|
|
if ($show_last_article_info) {
|
2008-05-17 17:36:35 +02:00
|
|
|
print "<td align='right' $onclick>" .
|
|
|
|
"$last_article</td>";
|
2007-05-18 08:12:17 +02:00
|
|
|
}
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2008-07-25 09:48:15 +02:00
|
|
|
print "<td align='right'>$ops $last_updated</td>";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
|
|
|
print "</tr>";
|
|
|
|
|
|
|
|
++$lnum;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
|
2007-10-18 07:06:20 +02:00
|
|
|
print "<p>";
|
2007-10-18 06:51:29 +02:00
|
|
|
|
2007-10-18 13:02:15 +02:00
|
|
|
print "<div id=\"feedOpToolbar\">";
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
|
|
|
|
print __('Selection:') . " ";
|
|
|
|
|
|
|
|
print_feed_cat_select($link, "sfeed_set_fcat", "", "disabled");
|
|
|
|
|
|
|
|
print " <input type=\"submit\" class=\"button\" disabled=\"true\"
|
|
|
|
onclick=\"javascript:categorizeSelectedFeeds()\" value=\"".
|
|
|
|
__('Recategorize')."\">";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "</div>";
|
|
|
|
|
2007-10-18 06:51:29 +02:00
|
|
|
print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
|
|
|
|
<option value=\"facDefault\" selected>".__('Actions...')."</option>
|
|
|
|
<option disabled>--------</option>
|
|
|
|
<option style=\"color : #5050aa\" disabled>".__('Selection:')."</option>
|
|
|
|
<option value=\"facEdit\"> ".__('Edit')."</option>
|
2007-10-18 07:06:20 +02:00
|
|
|
<option value=\"facPurge\"> ".__('Manual purge')."</option>
|
2007-10-18 06:51:29 +02:00
|
|
|
<option value=\"facClear\"> ".__('Clear feed data')."</option>
|
2008-04-30 12:12:41 +02:00
|
|
|
<option value=\"facRescore\"> ".__('Rescore articles')."</option>
|
2007-10-18 06:51:29 +02:00
|
|
|
<option value=\"facUnsubscribe\"> ".__('Unsubscribe')."</option>";
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
|
|
|
|
print "<option disabled>--------</option>
|
|
|
|
<option style=\"color : #5050aa\" disabled>".__('Other:')."</option>
|
|
|
|
<option value=\"facEditCats\"> ".__('Edit categories')."
|
|
|
|
</option>";
|
|
|
|
}
|
|
|
|
|
2007-10-18 13:02:15 +02:00
|
|
|
print "</select>";
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
|
2007-03-05 12:02:18 +01:00
|
|
|
print "<h3>".__('OPML')."</h3>
|
2006-10-04 08:16:13 +02:00
|
|
|
|
|
|
|
<div style='float : left'>
|
2006-10-01 12:05:20 +02:00
|
|
|
<form enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
|
2007-08-21 13:28:13 +02:00
|
|
|
".__('File:')." <input id=\"opml_file\" name=\"opml_file\" type=\"file\">
|
|
|
|
<input type=\"hidden\" name=\"op\" value=\"Import\">
|
|
|
|
<input class=\"button\" onclick=\"return validateOpmlImport();\"
|
2007-03-05 12:02:18 +01:00
|
|
|
type=\"submit\" value=\"".__('Import')."\">
|
2006-10-04 08:16:13 +02:00
|
|
|
</form></div>";
|
|
|
|
|
2007-03-09 19:12:31 +01:00
|
|
|
print " ";
|
2006-10-04 08:16:13 +02:00
|
|
|
|
|
|
|
print "<input type=\"submit\"
|
|
|
|
class=\"button\" onclick=\"gotoExportOpml()\"
|
2007-03-05 12:02:18 +01:00
|
|
|
value=\"".__('Export OPML')."\">";
|
2006-10-04 08:16:13 +02:00
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2007-08-31 02:55:33 +02:00
|
|
|
print "<h3>" . __("Firefox Integration") . "</h3>";
|
|
|
|
|
|
|
|
print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.');
|
2008-03-20 06:34:43 +01:00
|
|
|
print "</p><p> <a class='visibleLink' href='javascript:window.navigator.registerContentHandler(" .
|
2007-08-31 02:55:33 +02:00
|
|
|
"\"application/vnd.mozilla.maybe.feed\", " .
|
|
|
|
"\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
|
|
|
|
__('Click here to register this site as a feed reader.') . "</a></p>";
|
|
|
|
|
|
|
|
|
2007-08-21 03:22:29 +02:00
|
|
|
print "<h3>".__("Published articles")."</h3>";
|
2007-08-09 14:45:30 +02:00
|
|
|
|
|
|
|
if (!get_pref($link, "_PREFS_PUBLISH_KEY")) {
|
|
|
|
set_pref($link, "_PREFS_PUBLISH_KEY", generate_publish_key());
|
|
|
|
}
|
|
|
|
|
2008-03-20 06:34:43 +01:00
|
|
|
print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2007-08-10 06:25:06 +02:00
|
|
|
$url_path = article_publish_url($link);
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2008-06-16 07:33:28 +02:00
|
|
|
print "<p><a class=\"visibleLink\" id=\"pubGenAddress\" target=\"_blank\" href=\"$url_path\">Link to published articles feed.</a></p>";
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2008-02-20 10:30:06 +01:00
|
|
|
print "<p><input type=\"submit\" onclick=\"return pubRegenKey()\" class=\"button\"
|
2008-03-20 06:34:43 +01:00
|
|
|
value=\"".__('Generate another link')."\">";
|
|
|
|
/* print " <input type=\"submit\" onclick=\"return pubToClipboard()\" class=\"button\"
|
|
|
|
value=\"".__('Copy link to clipboard')."\">"; */
|
|
|
|
print "</p>";
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2006-10-01 12:05:20 +02:00
|
|
|
}
|
|
|
|
?>
|