1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-19 10:25:27 +00:00

published feeds work

This commit is contained in:
Andrew Dolgov
2007-08-09 13:45:30 +01:00
parent ffba8297ea
commit e4f4b46f9d
10 changed files with 294 additions and 33 deletions

View File

@@ -69,6 +69,22 @@
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
}
if ($subop == "publ") {
$pub = $_GET["pub"];
$id = db_escape_string($_GET["id"]);
if ($pub == "1") {
$mark = "true";
} else {
$pub = "false";
}
// FIXME this needs collision testing
$result = db_query($link, "UPDATE ttrss_user_entries SET published = $pub
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
}
if ($subop == "updateFeed") {
$feed_id = db_escape_string($_GET["feed"]);
@@ -179,6 +195,21 @@
print "</rpc-reply>";
}
if ($subop == "publishSelected") {
$ids = split(",", db_escape_string($_GET["ids"]));
$cmode = sprintf("%d", $_GET["cmode"]);
publishArticlesById($link, $ids, $cmode);
print "<rpc-reply>";
print "<counters>";
getAllCounters($link);
print "</counters>";
print_runtime_info($link);
print "</rpc-reply>";
}
if ($subop == "sanityCheck") {
print "<rpc-reply>";
if (sanity_check($link)) {

View File

@@ -1043,5 +1043,24 @@
class=\"button\" onclick=\"gotoExportOpml()\"
value=\"".__('Export OPML')."\">";
print "<h3>Published articles</h3>";
if (!get_pref($link, "_PREFS_PUBLISH_KEY")) {
set_pref($link, "_PREFS_PUBLISH_KEY", generate_publish_key());
}
print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the address specified below.')."</p>";
$url_path = 'http://' . $_SERVER["HTTP_HOST"] . \
parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$url_path .= "?op=publish&key=" . get_pref($link, "_PREFS_PUBLISH_KEY");
print "<p><a id=\"pubGenAddress\" target=\"_new\" href=\"$url_path\">$url_path</a></p>";
print "<p><input type=\"submit\" onclick=\"return pubRegenKey()\"
value=\"".__('Generate another address')."\"></p>";
}
?>