2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2006-03-29 05:11:48 +02:00
|
|
|
function handle_rpc_request($link) {
|
|
|
|
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
|
|
|
if ($subop == "setpref") {
|
|
|
|
if (WEB_DEMO_MODE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<rpc-reply>";
|
|
|
|
|
|
|
|
$key = db_escape_string($_GET["key"]);
|
|
|
|
$value = db_escape_string($_GET["value"]);
|
|
|
|
|
|
|
|
set_pref($link, $key, $value);
|
|
|
|
|
|
|
|
print "<param-set key=\"$key\" value=\"$value\"/>";
|
|
|
|
|
|
|
|
print "</rpc-reply>";
|
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "getLabelCounters") {
|
|
|
|
$aid = $_GET["aid"];
|
|
|
|
print "<rpc-reply>";
|
2006-05-23 10:59:00 +02:00
|
|
|
print "<counters>";
|
2006-03-29 05:11:48 +02:00
|
|
|
getLabelCounters($link);
|
|
|
|
if ($aid) {
|
|
|
|
getFeedCounter($link, $aid);
|
|
|
|
}
|
2006-05-23 10:59:00 +02:00
|
|
|
print "</counters>";
|
2006-03-29 05:11:48 +02:00
|
|
|
print "</rpc-reply>";
|
2007-08-20 16:07:17 +02:00
|
|
|
|
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "getFeedCounters") {
|
|
|
|
print "<rpc-reply>";
|
2006-05-23 10:59:00 +02:00
|
|
|
print "<counters>";
|
2006-03-29 05:11:48 +02:00
|
|
|
getFeedCounters($link);
|
2006-05-23 10:59:00 +02:00
|
|
|
print "</counters>";
|
2006-03-29 05:11:48 +02:00
|
|
|
print "</rpc-reply>";
|
2007-08-20 16:07:17 +02:00
|
|
|
|
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "getAllCounters") {
|
2006-12-07 09:06:38 +01:00
|
|
|
print "<rpc-reply>";
|
2006-05-23 10:59:00 +02:00
|
|
|
print "<counters>";
|
2006-12-07 09:06:38 +01:00
|
|
|
|
|
|
|
$omode = $_GET["omode"];
|
|
|
|
|
|
|
|
getAllCounters($link, $omode);
|
2006-05-23 10:59:00 +02:00
|
|
|
print "</counters>";
|
|
|
|
print_runtime_info($link);
|
2006-03-29 05:11:48 +02:00
|
|
|
print "</rpc-reply>";
|
2007-08-20 16:07:17 +02:00
|
|
|
|
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "mark") {
|
|
|
|
$mark = $_GET["mark"];
|
|
|
|
$id = db_escape_string($_GET["id"]);
|
|
|
|
|
|
|
|
if ($mark == "1") {
|
|
|
|
$mark = "true";
|
|
|
|
} else {
|
|
|
|
$mark = "false";
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME this needs collision testing
|
|
|
|
|
|
|
|
$result = db_query($link, "UPDATE ttrss_user_entries SET marked = $mark
|
|
|
|
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
|
2007-08-09 17:24:35 +02:00
|
|
|
|
2007-08-20 14:58:11 +02:00
|
|
|
print "<rpc-reply><counters>";
|
|
|
|
getGlobalCounters($link);
|
|
|
|
getLabelCounters($link);
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
getCategoryCounters($link);
|
|
|
|
}
|
|
|
|
print "</counters></rpc-reply>";
|
2007-08-09 17:24:35 +02:00
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
if ($subop == "publ") {
|
|
|
|
$pub = $_GET["pub"];
|
|
|
|
$id = db_escape_string($_GET["id"]);
|
|
|
|
|
|
|
|
if ($pub == "1") {
|
2007-08-09 17:23:24 +02:00
|
|
|
$pub = "true";
|
2007-08-09 14:45:30 +02:00
|
|
|
} 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"]);
|
2007-08-09 17:24:35 +02:00
|
|
|
|
2007-08-20 14:58:11 +02:00
|
|
|
print "<rpc-reply><counters>";
|
|
|
|
getGlobalCounters($link);
|
|
|
|
getLabelCounters($link);
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
getCategoryCounters($link);
|
|
|
|
}
|
|
|
|
print "</counters></rpc-reply>";
|
2007-08-09 17:24:35 +02:00
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
2006-03-29 05:11:48 +02:00
|
|
|
if ($subop == "updateFeed") {
|
|
|
|
$feed_id = db_escape_string($_GET["feed"]);
|
|
|
|
|
|
|
|
$result = db_query($link,
|
|
|
|
"SELECT feed_url FROM ttrss_feeds WHERE id = '$feed_id'
|
|
|
|
AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) > 0) {
|
|
|
|
$feed_url = db_fetch_result($result, 0, "feed_url");
|
|
|
|
update_rss_feed($link, $feed_url, $feed_id);
|
|
|
|
}
|
|
|
|
|
2006-05-23 10:59:00 +02:00
|
|
|
print "<rpc-reply>";
|
|
|
|
print "<counters>";
|
2006-03-29 05:11:48 +02:00
|
|
|
getFeedCounter($link, $feed_id);
|
2006-05-23 10:59:00 +02:00
|
|
|
print "</counters>";
|
2006-03-29 05:11:48 +02:00
|
|
|
print "</rpc-reply>";
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
|
|
|
|
|
|
|
|
if (ENABLE_UPDATE_DAEMON) {
|
|
|
|
|
|
|
|
if ($subop == "forceUpdateAllFeeds") {
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT count(id) AS cid FROM
|
|
|
|
ttrss_scheduled_updates WHERE feed_id IS NULL AND
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
$cid = db_fetch_result($result, 0, "cid");
|
|
|
|
|
|
|
|
if ($cid == 0) {
|
|
|
|
|
|
|
|
db_query($link, "INSERT INTO ttrss_scheduled_updates
|
|
|
|
(owner_uid, feed_id, entered) VALUES
|
|
|
|
(".$_SESSION["uid"].", NULL, NOW())");
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
update_all_feeds($link, $subop == "forceUpdateAllFeeds");
|
|
|
|
}
|
|
|
|
|
|
|
|
$global_unread_caller = sprintf("%d", $_GET["uctr"]);
|
|
|
|
$global_unread = getGlobalUnread($link);
|
|
|
|
|
|
|
|
print "<rpc-reply>";
|
|
|
|
|
2006-05-23 10:59:00 +02:00
|
|
|
print "<counters>";
|
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
$omode = $_GET["omode"];
|
|
|
|
|
|
|
|
if (!$omode) $omode = "tflc";
|
|
|
|
|
|
|
|
if (strchr($omode, "l")) getLabelCounters($link);
|
|
|
|
|
|
|
|
if (strchr($omode, "c")) {
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
getCategoryCounters($link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-29 05:11:48 +02:00
|
|
|
if ($global_unread_caller != $global_unread) {
|
|
|
|
|
|
|
|
if (strchr($omode, "f")) getFeedCounters($link);
|
|
|
|
if (strchr($omode, "t")) getTagCounters($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
getGlobalCounters($link, $global_unread);
|
|
|
|
|
2006-05-23 10:59:00 +02:00
|
|
|
print "</counters>";
|
|
|
|
|
|
|
|
print_runtime_info($link);
|
|
|
|
|
2006-03-29 05:11:48 +02:00
|
|
|
print "</rpc-reply>";
|
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
2006-09-19 06:14:27 +02:00
|
|
|
|
2006-03-29 05:11:48 +02:00
|
|
|
/* GET["cmode"] = 0 - mark as read, 1 - as unread, 2 - toggle */
|
|
|
|
if ($subop == "catchupSelected") {
|
|
|
|
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
$cmode = sprintf("%d", $_GET["cmode"]);
|
|
|
|
|
2006-09-19 06:14:27 +02:00
|
|
|
catchupArticlesById($link, $ids, $cmode);
|
2006-03-29 05:11:48 +02:00
|
|
|
|
|
|
|
print "<rpc-reply>";
|
2006-05-23 10:59:00 +02:00
|
|
|
print "<counters>";
|
2007-08-10 06:03:56 +02:00
|
|
|
getAllCounters($link, $_GET["omode"]);
|
2006-05-23 10:59:00 +02:00
|
|
|
print "</counters>";
|
|
|
|
print_runtime_info($link);
|
2006-03-29 05:11:48 +02:00
|
|
|
print "</rpc-reply>";
|
2007-08-20 16:07:17 +02:00
|
|
|
|
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($subop == "markSelected") {
|
|
|
|
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
$cmode = sprintf("%d", $_GET["cmode"]);
|
|
|
|
|
2006-09-19 06:16:42 +02:00
|
|
|
markArticlesById($link, $ids, $cmode);
|
|
|
|
|
2006-03-29 05:11:48 +02:00
|
|
|
print "<rpc-reply>";
|
2006-05-23 10:59:00 +02:00
|
|
|
print "<counters>";
|
2007-08-10 06:03:56 +02:00
|
|
|
getAllCounters($link, $_GET["omode"]);
|
2006-05-23 10:59:00 +02:00
|
|
|
print "</counters>";
|
|
|
|
print_runtime_info($link);
|
2006-03-29 05:11:48 +02:00
|
|
|
print "</rpc-reply>";
|
2007-08-20 16:07:17 +02:00
|
|
|
|
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
if ($subop == "publishSelected") {
|
|
|
|
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
$cmode = sprintf("%d", $_GET["cmode"]);
|
|
|
|
|
|
|
|
publishArticlesById($link, $ids, $cmode);
|
|
|
|
|
|
|
|
print "<rpc-reply>";
|
|
|
|
print "<counters>";
|
2007-08-10 06:03:56 +02:00
|
|
|
getAllCounters($link, $_GET["omode"]);
|
2007-08-09 14:45:30 +02:00
|
|
|
print "</counters>";
|
|
|
|
print_runtime_info($link);
|
|
|
|
print "</rpc-reply>";
|
2007-08-20 16:07:17 +02:00
|
|
|
|
|
|
|
return;
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
2006-03-29 05:11:48 +02:00
|
|
|
if ($subop == "sanityCheck") {
|
2006-05-23 07:34:50 +02:00
|
|
|
print "<rpc-reply>";
|
2006-03-29 05:11:48 +02:00
|
|
|
if (sanity_check($link)) {
|
|
|
|
print "<error error-code=\"0\"/>";
|
2006-05-23 07:34:50 +02:00
|
|
|
print_init_params($link);
|
2006-05-23 10:59:00 +02:00
|
|
|
print_runtime_info($link);
|
2007-01-24 09:43:30 +01:00
|
|
|
|
|
|
|
# assign client-passed params to session
|
|
|
|
$_SESSION["client.userAgent"] = $_GET["ua"];
|
|
|
|
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
2006-05-23 07:34:50 +02:00
|
|
|
print "</rpc-reply>";
|
2007-08-20 16:07:17 +02:00
|
|
|
|
|
|
|
return;
|
2006-05-23 07:34:50 +02:00
|
|
|
}
|
2006-03-29 05:11:48 +02:00
|
|
|
|
|
|
|
if ($subop == "globalPurge") {
|
|
|
|
|
|
|
|
print "<rpc-reply>";
|
|
|
|
global_purge_old_posts($link, true);
|
|
|
|
print "</rpc-reply>";
|
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
2006-05-23 07:34:50 +02:00
|
|
|
|
2007-07-20 08:01:18 +02:00
|
|
|
if ($subop == "getArticleLink") {
|
|
|
|
|
|
|
|
$id = db_escape_string($_GET["id"]);
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT link FROM ttrss_entries, ttrss_user_entries
|
|
|
|
WHERE id = '$id' AND id = ref_id AND owner_uid = '".$_SESSION['uid']."'");
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 1) {
|
2008-04-18 07:13:00 +02:00
|
|
|
$link = htmlspecialchars(strip_tags(db_fetch_result($result, 0, "link")));
|
2007-08-09 10:23:48 +02:00
|
|
|
print "<rpc-reply><link>$link</link><id>$id</id></rpc-reply>";
|
2007-07-20 08:01:18 +02:00
|
|
|
} else {
|
|
|
|
print "<rpc-reply><error>Article not found</error></rpc-reply>";
|
|
|
|
}
|
2007-08-20 16:07:17 +02:00
|
|
|
|
|
|
|
return;
|
2007-07-20 08:01:18 +02:00
|
|
|
}
|
|
|
|
|
2006-12-07 08:48:00 +01:00
|
|
|
if ($subop == "setArticleTags") {
|
2007-05-19 15:47:51 +02:00
|
|
|
|
2006-12-07 08:48:00 +01:00
|
|
|
$id = db_escape_string($_GET["id"]);
|
2007-05-19 15:47:51 +02:00
|
|
|
|
2006-12-07 08:48:00 +01:00
|
|
|
$tags_str = db_escape_string($_GET["tags_str"]);
|
|
|
|
|
2006-12-07 10:27:34 +01:00
|
|
|
$tags = array_unique(trim_array(split(",", $tags_str)));
|
2006-12-07 08:48:00 +01:00
|
|
|
|
|
|
|
db_query($link, "BEGIN");
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT int_id FROM ttrss_user_entries WHERE
|
|
|
|
ref_id = '$id' AND owner_uid = '".$_SESSION["uid"]."' LIMIT 1");
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
|
|
|
|
$int_id = db_fetch_result($result, 0, "int_id");
|
|
|
|
|
|
|
|
db_query($link, "DELETE FROM ttrss_tags WHERE
|
|
|
|
post_int_id = $int_id AND owner_uid = '".$_SESSION["uid"]."'");
|
|
|
|
|
|
|
|
foreach ($tags as $tag) {
|
2007-05-19 15:47:51 +02:00
|
|
|
$tag = sanitize_tag($tag);
|
2006-12-07 08:48:00 +01:00
|
|
|
|
2007-02-20 09:33:17 +01:00
|
|
|
if (!tag_is_valid($tag)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-12-07 08:48:00 +01:00
|
|
|
if (preg_match("/^[0-9]*$/", $tag)) {
|
|
|
|
continue;
|
|
|
|
}
|
2007-05-19 15:47:51 +02:00
|
|
|
|
2007-08-09 18:32:43 +02:00
|
|
|
print "<!-- $id : $int_id : $tag -->";
|
2006-12-07 08:48:00 +01:00
|
|
|
|
|
|
|
if ($tag != '') {
|
|
|
|
db_query($link, "INSERT INTO ttrss_tags
|
|
|
|
(post_int_id, owner_uid, tag_name) VALUES ('$int_id', '".$_SESSION["uid"]."', '$tag')");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($link, "COMMIT");
|
|
|
|
|
|
|
|
print "<rpc-reply>
|
|
|
|
<message>$id</message>
|
|
|
|
</rpc-reply>";
|
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2006-12-07 08:48:00 +01:00
|
|
|
}
|
2007-03-01 10:43:54 +01:00
|
|
|
|
2007-08-09 15:09:34 +02:00
|
|
|
if ($subop == "regenPubKey") {
|
|
|
|
|
|
|
|
print "<rpc-reply>";
|
|
|
|
|
|
|
|
set_pref($link, "_PREFS_PUBLISH_KEY", generate_publish_key());
|
|
|
|
|
2007-08-10 06:25:06 +02:00
|
|
|
$new_link = article_publish_url($link);
|
2007-08-09 15:09:34 +02:00
|
|
|
|
|
|
|
print "<link><![CDATA[$new_link]]></link>";
|
|
|
|
|
|
|
|
print "</rpc-reply>";
|
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2007-08-09 15:09:34 +02:00
|
|
|
}
|
|
|
|
|
2007-03-01 10:43:54 +01:00
|
|
|
if ($subop == "logout") {
|
|
|
|
logout_user();
|
|
|
|
print_error_xml(6);
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2007-03-01 10:43:54 +01:00
|
|
|
}
|
|
|
|
|
2007-08-10 09:35:55 +02:00
|
|
|
if ($subop == "completeTags") {
|
|
|
|
|
|
|
|
$search = db_escape_string($_REQUEST["search"]);
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT DISTINCT tag_name FROM ttrss_tags
|
|
|
|
WHERE owner_uid = '".$_SESSION["uid"]."' AND
|
|
|
|
tag_name LIKE '$search%' ORDER BY tag_name
|
|
|
|
LIMIT 10");
|
|
|
|
|
|
|
|
print "<ul>";
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
print "<li>" . $line["tag_name"] . "</li>";
|
|
|
|
}
|
|
|
|
print "</ul>";
|
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
return;
|
2007-08-10 09:35:55 +02:00
|
|
|
}
|
|
|
|
|
2007-10-18 12:58:44 +02:00
|
|
|
if ($subop == "purge") {
|
|
|
|
$ids = split(",", db_escape_string($_GET["ids"]));
|
|
|
|
$days = sprintf("%d", $_GET["days"]);
|
|
|
|
|
|
|
|
print "<rpc-reply>";
|
|
|
|
|
|
|
|
print "<message><![CDATA[";
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
|
|
|
|
id = '$id' AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
purge_feed($link, $id, $days, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print "]]></message>";
|
|
|
|
|
|
|
|
print "</rpc-reply>";
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-04-30 10:10:59 +02:00
|
|
|
if ($subop == "setScore") {
|
|
|
|
$id = db_escape_string($_REQUEST["id"]);
|
|
|
|
$score = sprintf("%d", $_REQUEST["score"]);
|
|
|
|
|
|
|
|
$result = db_query($link, "UPDATE ttrss_user_entries SET score = '$score'
|
|
|
|
WHERE ref_id = '$id' AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
|
|
|
print "<rpc-reply><message>Acknowledged.</message></rpc-reply>";
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-05-18 10:51:07 +02:00
|
|
|
if ($subop == "getArticles") {
|
|
|
|
$ids = split(",", db_escape_string($_REQUEST["ids"]));
|
|
|
|
|
|
|
|
print "<rpc-reply>";
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
if ($id) {
|
|
|
|
outputArticleXML($link, $id, 0, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print "</rpc-reply>";
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-08-20 16:07:17 +02:00
|
|
|
print "<rpc-reply><error>Unknown method: $subop</error></rpc-reply>";
|
2006-03-29 05:11:48 +02:00
|
|
|
}
|
|
|
|
?>
|