2011-12-12 20:32:29 +01:00
|
|
|
<?php
|
2012-08-17 12:20:55 +02:00
|
|
|
class RPC extends Handler_Protected {
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2011-12-26 09:02:52 +01:00
|
|
|
function csrf_ignore($method) {
|
2012-12-24 12:03:19 +01:00
|
|
|
$csrf_ignored = array("sanitycheck", "completelabels");
|
2011-12-26 09:02:52 +01:00
|
|
|
|
|
|
|
return array_search($method, $csrf_ignored) !== false;
|
|
|
|
}
|
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
function setprofile() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$id = db_escape_string($this->link, $_REQUEST["id"]);
|
2011-12-13 11:15:42 +01:00
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
$_SESSION["profile"] = $id;
|
|
|
|
$_SESSION["prefs_cache"] = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
function remprofiles() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, trim($_REQUEST["ids"])));
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
if ($_SESSION["profile"] != $id) {
|
|
|
|
db_query($this->link, "DELETE FROM ttrss_settings_profiles WHERE id = '$id' AND
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silent
|
|
|
|
function addprofile() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$title = db_escape_string($this->link, trim($_REQUEST["title"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
if ($title) {
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles
|
|
|
|
WHERE title = '$title' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
|
|
|
|
db_query($this->link, "INSERT INTO ttrss_settings_profiles (title, owner_uid)
|
|
|
|
VALUES ('$title', ".$_SESSION["uid"] .")");
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles WHERE
|
|
|
|
title = '$title'");
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
$profile_id = db_fetch_result($result, 0, "id");
|
|
|
|
|
|
|
|
if ($profile_id) {
|
|
|
|
initialize_user_prefs($this->link, $_SESSION["uid"], $profile_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silent
|
|
|
|
function saveprofile() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$id = db_escape_string($this->link, $_REQUEST["id"]);
|
|
|
|
$title = db_escape_string($this->link, trim($_REQUEST["value"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
if ($id == 0) {
|
|
|
|
print __("Default profile");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($title) {
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles
|
|
|
|
WHERE title = '$title' AND owner_uid =" . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
db_query($this->link, "UPDATE ttrss_settings_profiles
|
|
|
|
SET title = '$title' WHERE id = '$id' AND
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
print $title;
|
|
|
|
} else {
|
|
|
|
$result = db_query($this->link, "SELECT title FROM ttrss_settings_profiles
|
|
|
|
WHERE id = '$id' AND owner_uid =" . $_SESSION["uid"]);
|
|
|
|
print db_fetch_result($result, 0, "title");
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silent
|
|
|
|
function remarchive() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
$result = db_query($this->link, "DELETE FROM ttrss_archived_feeds WHERE
|
|
|
|
(SELECT COUNT(*) FROM ttrss_user_entries
|
|
|
|
WHERE orig_feed_id = '$id') = 0 AND
|
|
|
|
id = '$id' AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
|
|
|
$rc = db_affected_rows($this->link, $result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function addfeed() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$feed = db_escape_string($this->link, $_REQUEST['feed']);
|
|
|
|
$cat = db_escape_string($this->link, $_REQUEST['cat']);
|
|
|
|
$login = db_escape_string($this->link, $_REQUEST['login']);
|
|
|
|
$pass = db_escape_string($this->link, $_REQUEST['pass']);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-03-24 11:28:43 +01:00
|
|
|
$rc = subscribe_to_feed($this->link, $feed, $cat, $login, $pass);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("result" => $rc));
|
|
|
|
}
|
|
|
|
|
|
|
|
function togglepref() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$key = db_escape_string($this->link, $_REQUEST["key"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
set_pref($this->link, $key, !get_pref($this->link, $key));
|
|
|
|
$value = get_pref($this->link, $key);
|
|
|
|
|
|
|
|
print json_encode(array("param" =>$key, "value" => $value));
|
|
|
|
}
|
|
|
|
|
|
|
|
function setpref() {
|
2012-02-13 09:46:20 +01:00
|
|
|
// set_pref escapes input, so no need to double escape it here
|
2012-02-13 12:09:39 +01:00
|
|
|
$key = $_REQUEST['key'];
|
|
|
|
$value = str_replace("\n", "<br/>", $_REQUEST['value']);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2012-02-13 09:54:06 +01:00
|
|
|
set_pref($this->link, $key, $value, $_SESSION['uid'], $key != 'USER_STYLESHEET');
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("param" =>$key, "value" => $value));
|
|
|
|
}
|
|
|
|
|
|
|
|
function mark() {
|
|
|
|
$mark = $_REQUEST["mark"];
|
2013-03-22 06:14:55 +01:00
|
|
|
$id = db_escape_string($this->link, $_REQUEST["id"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
if ($mark == "1") {
|
|
|
|
$mark = "true";
|
|
|
|
} else {
|
|
|
|
$mark = "false";
|
|
|
|
}
|
|
|
|
|
2013-03-17 12:32:44 +01:00
|
|
|
$result = db_query($this->link, "UPDATE ttrss_user_entries SET marked = $mark,
|
|
|
|
last_marked = NOW()
|
2011-12-12 20:32:29 +01:00
|
|
|
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
function delete() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = db_escape_string($this->link, $_REQUEST["ids"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
$result = db_query($this->link, "DELETE FROM ttrss_user_entries
|
|
|
|
WHERE ref_id IN ($ids) AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
2013-03-29 12:20:26 +01:00
|
|
|
purge_orphans($this->link);
|
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
function unarchive() {
|
2013-03-30 18:59:52 +01:00
|
|
|
$ids = explode(",", $_REQUEST["ids"]);
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
$id = db_escape_string($this->link, trim($id));
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT feed_url,site_url,title FROM ttrss_archived_feeds
|
|
|
|
WHERE id = (SELECT orig_feed_id FROM ttrss_user_entries WHERE ref_id = $id
|
|
|
|
AND owner_uid = ".$_SESSION["uid"].")");
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
$feed_url = db_escape_string($this->link, db_fetch_result($result, 0, "feed_url"));
|
|
|
|
$site_url = db_escape_string($this->link, db_fetch_result($result, 0, "site_url"));
|
|
|
|
$title = db_escape_string($this->link, db_fetch_result($result, 0, "title"));
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_url'
|
|
|
|
AND owner_uid = " .$_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
|
|
|
|
if (!$title) $title = '[Unknown]';
|
|
|
|
|
|
|
|
$result = db_query($this->link,
|
|
|
|
"INSERT INTO ttrss_feeds
|
|
|
|
(owner_uid,feed_url,site_url,title,cat_id,auth_login,auth_pass,update_method)
|
|
|
|
VALUES (".$_SESSION["uid"].",
|
|
|
|
'$feed_url',
|
|
|
|
'$site_url',
|
|
|
|
'$title',
|
|
|
|
NULL, '', '', 0)");
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-03-30 18:59:52 +01:00
|
|
|
$result = db_query($this->link,
|
|
|
|
"SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_url'
|
|
|
|
AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
$feed_id = db_fetch_result($result, 0, "id");
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$feed_id = db_fetch_result($result, 0, "id");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($feed_id) {
|
|
|
|
$result = db_query($this->link, "UPDATE ttrss_user_entries
|
|
|
|
SET feed_id = '$feed_id', orig_feed_id = NULL
|
|
|
|
WHERE ref_id = $id AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
|
|
|
}
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
function archive() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
2013-01-22 19:32:17 +01:00
|
|
|
$this->archive_article($this->link, $id, $_SESSION["uid"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
2013-01-22 19:32:17 +01:00
|
|
|
private function archive_article($link, $id, $owner_uid) {
|
|
|
|
db_query($link, "BEGIN");
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
|
|
|
|
WHERE ref_id = '$id' AND owner_uid = $owner_uid");
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
|
|
|
|
/* prepare the archived table */
|
|
|
|
|
|
|
|
$feed_id = (int) db_fetch_result($result, 0, "feed_id");
|
|
|
|
|
|
|
|
if ($feed_id) {
|
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_archived_feeds
|
|
|
|
WHERE id = '$feed_id'");
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
db_query($link, "INSERT INTO ttrss_archived_feeds
|
|
|
|
(id, owner_uid, title, feed_url, site_url)
|
|
|
|
SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
|
|
|
|
WHERE id = '$feed_id'");
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries
|
|
|
|
SET orig_feed_id = feed_id, feed_id = NULL
|
|
|
|
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($link, "COMMIT");
|
|
|
|
}
|
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
function publ() {
|
|
|
|
$pub = $_REQUEST["pub"];
|
2013-03-22 06:14:55 +01:00
|
|
|
$id = db_escape_string($this->link, $_REQUEST["id"]);
|
|
|
|
$note = trim(strip_tags(db_escape_string($this->link, $_REQUEST["note"])));
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
if ($pub == "1") {
|
|
|
|
$pub = "true";
|
|
|
|
} else {
|
|
|
|
$pub = "false";
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = db_query($this->link, "UPDATE ttrss_user_entries SET
|
2013-03-17 12:32:44 +01:00
|
|
|
published = $pub, last_published = NOW()
|
2011-12-12 20:32:29 +01:00
|
|
|
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
$pubsub_result = false;
|
|
|
|
|
|
|
|
if (PUBSUBHUBBUB_HUB) {
|
|
|
|
$rss_link = get_self_url_prefix() .
|
|
|
|
"/public.php?op=rss&id=-2&key=" .
|
|
|
|
get_feed_access_key($this->link, -2, false);
|
|
|
|
|
|
|
|
$p = new Publisher(PUBSUBHUBBUB_HUB);
|
|
|
|
|
|
|
|
$pubsub_result = $p->publish_update($rss_link);
|
|
|
|
}
|
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS",
|
|
|
|
"pubsub_result" => $pubsub_result));
|
|
|
|
}
|
|
|
|
|
|
|
|
function getAllCounters() {
|
|
|
|
$last_article_id = (int) $_REQUEST["last_article_id"];
|
|
|
|
|
|
|
|
$reply = array();
|
|
|
|
|
2013-02-01 10:09:43 +01:00
|
|
|
if ($seq) $reply['seq'] = $seq;
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-02-01 10:09:43 +01:00
|
|
|
if ($last_article_id != getLastArticleId($this->link)) {
|
|
|
|
$reply['counters'] = getAllCounters($this->link);
|
|
|
|
}
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-02-01 10:09:43 +01:00
|
|
|
$reply['runtime-info'] = make_runtime_info($this->link);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-02-01 10:09:43 +01:00
|
|
|
print json_encode($reply);
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* GET["cmode"] = 0 - mark as read, 1 - as unread, 2 - toggle */
|
|
|
|
function catchupSelected() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
$cmode = sprintf("%d", $_REQUEST["cmode"]);
|
|
|
|
|
|
|
|
catchupArticlesById($this->link, $ids, $cmode);
|
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
function markSelected() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
$cmode = sprintf("%d", $_REQUEST["cmode"]);
|
|
|
|
|
2013-01-22 19:32:17 +01:00
|
|
|
$this->markArticlesById($this->link, $ids, $cmode);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
function publishSelected() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
$cmode = sprintf("%d", $_REQUEST["cmode"]);
|
|
|
|
|
2013-01-22 19:32:17 +01:00
|
|
|
$this->publishArticlesById($this->link, $ids, $cmode);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
function sanityCheck() {
|
|
|
|
$_SESSION["hasAudio"] = $_REQUEST["hasAudio"] === "true";
|
2013-03-19 09:49:55 +01:00
|
|
|
$_SESSION["hasSandbox"] = $_REQUEST["hasSandbox"] === "true";
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
$reply = array();
|
|
|
|
|
|
|
|
$reply['error'] = sanity_check($this->link);
|
|
|
|
|
|
|
|
if ($reply['error']['code'] == 0) {
|
|
|
|
$reply['init-params'] = make_init_params($this->link);
|
|
|
|
$reply['runtime-info'] = make_runtime_info($this->link);
|
|
|
|
}
|
|
|
|
|
|
|
|
print json_encode($reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setArticleTags() {
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$id = db_escape_string($this->link, $_REQUEST["id"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$tags_str = db_escape_string($this->link, $_REQUEST["tags_str"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
$tags = array_unique(trim_array(explode(",", $tags_str)));
|
|
|
|
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
|
|
|
|
$result = db_query($this->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) {
|
|
|
|
|
|
|
|
$tags_to_cache = array();
|
|
|
|
|
|
|
|
$int_id = db_fetch_result($result, 0, "int_id");
|
|
|
|
|
|
|
|
db_query($this->link, "DELETE FROM ttrss_tags WHERE
|
|
|
|
post_int_id = $int_id AND owner_uid = '".$_SESSION["uid"]."'");
|
|
|
|
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
$tag = sanitize_tag($tag);
|
|
|
|
|
|
|
|
if (!tag_is_valid($tag)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match("/^[0-9]*$/", $tag)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// print "<!-- $id : $int_id : $tag -->";
|
|
|
|
|
|
|
|
if ($tag != '') {
|
|
|
|
db_query($this->link, "INSERT INTO ttrss_tags
|
|
|
|
(post_int_id, owner_uid, tag_name) VALUES ('$int_id', '".$_SESSION["uid"]."', '$tag')");
|
|
|
|
}
|
|
|
|
|
|
|
|
array_push($tags_to_cache, $tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* update tag cache */
|
|
|
|
|
|
|
|
sort($tags_to_cache);
|
|
|
|
$tags_str = join(",", $tags_to_cache);
|
|
|
|
|
|
|
|
db_query($this->link, "UPDATE ttrss_user_entries
|
|
|
|
SET tag_cache = '$tags_str' WHERE ref_id = '$id'
|
|
|
|
AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
|
|
|
|
|
|
|
$tags = get_article_tags($this->link, $id);
|
|
|
|
$tags_str = format_tags_string($tags, $id);
|
|
|
|
$tags_str_full = join(", ", $tags);
|
|
|
|
|
|
|
|
if (!$tags_str_full) $tags_str_full = __("no tags");
|
|
|
|
|
2013-04-01 09:14:27 +02:00
|
|
|
print json_encode(array("id" => (int)$id,
|
|
|
|
"content" => $tags_str, "content_full" => $tags_str_full));
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function regenOPMLKey() {
|
2013-01-22 19:32:17 +01:00
|
|
|
$this->update_feed_access_key($this->link, 'OPML:Publish',
|
2011-12-12 20:32:29 +01:00
|
|
|
false, $_SESSION["uid"]);
|
|
|
|
|
2013-01-22 19:36:16 +01:00
|
|
|
$new_link = Opml::opml_publish_url($this->link);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("link" => $new_link));
|
|
|
|
}
|
|
|
|
|
2012-10-31 09:55:24 +01:00
|
|
|
function completeLabels() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$search = db_escape_string($this->link, $_REQUEST["search"]);
|
2012-10-31 09:55:24 +01:00
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT DISTINCT caption FROM
|
|
|
|
ttrss_labels2
|
|
|
|
WHERE owner_uid = '".$_SESSION["uid"]."' AND
|
|
|
|
LOWER(caption) LIKE LOWER('$search%') ORDER BY caption
|
|
|
|
LIMIT 5");
|
|
|
|
|
|
|
|
print "<ul>";
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
print "<li>" . $line["caption"] . "</li>";
|
|
|
|
}
|
|
|
|
print "</ul>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
function completeTags() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$search = db_escape_string($this->link, $_REQUEST["search"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
$result = db_query($this->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>";
|
|
|
|
}
|
|
|
|
|
|
|
|
function purge() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
$days = sprintf("%d", $_REQUEST["days"]);
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
|
|
|
|
id = '$id' AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
purge_feed($this->link, $id, $days);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getArticles() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
2011-12-12 20:32:29 +01:00
|
|
|
$articles = array();
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
if ($id) {
|
|
|
|
array_push($articles, format_article($this->link, $id, 0, false));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print json_encode($articles);
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkDate() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$date = db_escape_string($this->link, $_REQUEST["date"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
$date_parsed = strtotime($date);
|
|
|
|
|
|
|
|
print json_encode(array("result" => (bool)$date_parsed,
|
|
|
|
"date" => date("c", $date_parsed)));
|
|
|
|
}
|
|
|
|
|
|
|
|
function assigntolabel() {
|
2011-12-14 09:05:45 +01:00
|
|
|
return $this->labelops(true);
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
2011-12-13 11:15:42 +01:00
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
function removefromlabel() {
|
2011-12-14 09:05:45 +01:00
|
|
|
return $this->labelops(false);
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
2011-12-13 11:15:42 +01:00
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
function labelops($assign) {
|
|
|
|
$reply = array();
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
|
|
|
|
$label_id = db_escape_string($this->link, $_REQUEST["lid"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$label = db_escape_string($this->link, label_find_caption($this->link, $label_id,
|
2011-12-12 20:32:29 +01:00
|
|
|
$_SESSION["uid"]));
|
|
|
|
|
|
|
|
$reply["info-for-headlines"] = array();
|
|
|
|
|
|
|
|
if ($label) {
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
|
|
|
|
if ($assign)
|
|
|
|
label_add_article($this->link, $id, $label, $_SESSION["uid"]);
|
|
|
|
else
|
|
|
|
label_remove_article($this->link, $id, $label, $_SESSION["uid"]);
|
|
|
|
|
|
|
|
$labels = get_article_labels($this->link, $id, $_SESSION["uid"]);
|
|
|
|
|
|
|
|
array_push($reply["info-for-headlines"],
|
|
|
|
array("id" => $id, "labels" => format_article_labels($labels, $id)));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$reply["message"] = "UPDATE_COUNTERS";
|
|
|
|
|
|
|
|
print json_encode($reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateFeedBrowser() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$search = db_escape_string($this->link, $_REQUEST["search"]);
|
|
|
|
$limit = db_escape_string($this->link, $_REQUEST["limit"]);
|
|
|
|
$mode = (int) db_escape_string($this->link, $_REQUEST["mode"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2012-12-24 12:58:29 +01:00
|
|
|
require_once "feedbrowser.php";
|
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
print json_encode(array("content" =>
|
|
|
|
make_feed_browser($this->link, $search, $limit, $mode),
|
|
|
|
"mode" => $mode));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silent
|
|
|
|
function massSubscribe() {
|
|
|
|
|
|
|
|
$payload = json_decode($_REQUEST["payload"], false);
|
|
|
|
$mode = $_REQUEST["mode"];
|
|
|
|
|
|
|
|
if (!$payload || !is_array($payload)) return;
|
|
|
|
|
|
|
|
if ($mode == 1) {
|
|
|
|
foreach ($payload as $feed) {
|
|
|
|
|
2013-03-22 06:14:55 +01:00
|
|
|
$title = db_escape_string($this->link, $feed[0]);
|
|
|
|
$feed_url = db_escape_string($this->link, $feed[1]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
$result = db_query($this->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($this->link, "INSERT INTO ttrss_feeds
|
|
|
|
(owner_uid,feed_url,title,cat_id,site_url)
|
|
|
|
VALUES ('".$_SESSION["uid"]."',
|
|
|
|
'$feed_url', '$title', NULL, '')");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ($mode == 2) {
|
|
|
|
// feed archive
|
|
|
|
foreach ($payload as $id) {
|
|
|
|
$result = db_query($this->link, "SELECT * FROM ttrss_archived_feeds
|
|
|
|
WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
2013-03-22 06:14:55 +01:00
|
|
|
$site_url = db_escape_string($this->link, db_fetch_result($result, 0, "site_url"));
|
|
|
|
$feed_url = db_escape_string($this->link, db_fetch_result($result, 0, "feed_url"));
|
|
|
|
$title = db_escape_string($this->link, db_fetch_result($result, 0, "title"));
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
$result = db_query($this->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($this->link, "INSERT INTO ttrss_feeds
|
|
|
|
(owner_uid,feed_url,title,cat_id,site_url)
|
|
|
|
VALUES ('$id','".$_SESSION["uid"]."',
|
|
|
|
'$feed_url', '$title', NULL, '$site_url')");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function catchupFeed() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$feed_id = db_escape_string($this->link, $_REQUEST['feed_id']);
|
|
|
|
$is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
|
2013-03-31 10:37:42 +02:00
|
|
|
$mode = db_escape_string($this->link, $_REQUEST['mode']);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-03-31 10:37:42 +02:00
|
|
|
catchup_feed($this->link, $feed_id, $is_cat, false, false, $mode);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS"));
|
|
|
|
}
|
|
|
|
|
|
|
|
function quickAddCat() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$cat = db_escape_string($this->link, $_REQUEST["cat"]);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
add_feed_category($this->link, $cat);
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT id FROM ttrss_feed_categories WHERE
|
|
|
|
title = '$cat' AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
$id = db_fetch_result($result, 0, "id");
|
|
|
|
} else {
|
|
|
|
$id = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
print_feed_cat_select($this->link, "cat_id", $id);
|
|
|
|
}
|
|
|
|
|
|
|
|
function regenFeedKey() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$feed_id = db_escape_string($this->link, $_REQUEST['id']);
|
|
|
|
$is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
|
2011-12-12 20:32:29 +01:00
|
|
|
|
2013-01-22 19:32:17 +01:00
|
|
|
$new_key = $this->update_feed_access_key($this->link, $feed_id, $is_cat);
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
print json_encode(array("link" => $new_key));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silent
|
|
|
|
function clearKeys() {
|
|
|
|
db_query($this->link, "DELETE FROM ttrss_access_keys WHERE
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Silent
|
|
|
|
function clearArticleKeys() {
|
|
|
|
db_query($this->link, "UPDATE ttrss_user_entries SET uuid = '' WHERE
|
|
|
|
owner_uid = " . $_SESSION["uid"]);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
function verifyRegexp() {
|
|
|
|
$reg_exp = $_REQUEST["reg_exp"];
|
|
|
|
|
|
|
|
$status = @preg_match("/$reg_exp/i", "TEST") !== false;
|
|
|
|
|
|
|
|
print json_encode(array("status" => $status));
|
|
|
|
}
|
|
|
|
|
2012-12-23 11:52:18 +01:00
|
|
|
/* function buttonPlugin() {
|
2012-08-17 12:20:55 +02:00
|
|
|
$pclass = "button_" . basename($_REQUEST['plugin']);
|
2011-12-20 20:57:27 +01:00
|
|
|
$method = $_REQUEST['plugin_method'];
|
|
|
|
|
|
|
|
if (class_exists($pclass)) {
|
|
|
|
$plugin = new $pclass($this->link);
|
|
|
|
if (method_exists($plugin, $method)) {
|
|
|
|
return $plugin->$method();
|
|
|
|
}
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
2012-12-23 11:52:18 +01:00
|
|
|
} */
|
2011-12-12 20:32:29 +01:00
|
|
|
|
|
|
|
function genHash() {
|
|
|
|
$hash = sha1(uniqid(rand(), true));
|
|
|
|
|
|
|
|
print json_encode(array("hash" => $hash));
|
|
|
|
}
|
2012-01-29 14:51:00 +01:00
|
|
|
|
|
|
|
function batchAddFeeds() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$cat_id = db_escape_string($this->link, $_REQUEST['cat']);
|
|
|
|
$feeds = explode("\n", db_escape_string($this->link, $_REQUEST['feeds']));
|
|
|
|
$login = db_escape_string($this->link, $_REQUEST['login']);
|
|
|
|
$pass = db_escape_string($this->link, $_REQUEST['pass']);
|
2012-01-29 14:51:00 +01:00
|
|
|
|
|
|
|
foreach ($feeds as $feed) {
|
|
|
|
$feed = trim($feed);
|
|
|
|
|
|
|
|
if (validate_feed_url($feed)) {
|
|
|
|
|
|
|
|
db_query($this->link, "BEGIN");
|
|
|
|
|
|
|
|
if ($cat_id == "0" || !$cat_id) {
|
|
|
|
$cat_qpart = "NULL";
|
|
|
|
} else {
|
|
|
|
$cat_qpart = "'$cat_id'";
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = db_query($this->link,
|
|
|
|
"SELECT id FROM ttrss_feeds
|
|
|
|
WHERE feed_url = '$feed' AND owner_uid = ".$_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
$result = db_query($this->link,
|
|
|
|
"INSERT INTO ttrss_feeds
|
|
|
|
(owner_uid,feed_url,title,cat_id,auth_login,auth_pass,update_method)
|
|
|
|
VALUES ('".$_SESSION["uid"]."', '$feed',
|
2012-12-24 10:45:34 +01:00
|
|
|
'[Unknown]', $cat_qpart, '$login', '$pass', 0)");
|
2012-01-29 14:51:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
db_query($this->link, "COMMIT");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-31 11:39:26 +01:00
|
|
|
function setScore() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$ids = db_escape_string($this->link, $_REQUEST['id']);
|
|
|
|
$score = (int)db_escape_string($this->link, $_REQUEST['score']);
|
2012-10-31 11:39:26 +01:00
|
|
|
|
|
|
|
db_query($this->link, "UPDATE ttrss_user_entries SET
|
2012-10-31 12:17:49 +01:00
|
|
|
score = '$score' WHERE ref_id IN ($ids) AND owner_uid = " . $_SESSION["uid"]);
|
2012-10-31 11:39:26 +01:00
|
|
|
|
|
|
|
print json_encode(array("id" => $id,
|
2013-03-20 22:59:08 +01:00
|
|
|
"score_pic" => get_score_pic($score)));
|
2012-10-31 11:39:26 +01:00
|
|
|
}
|
|
|
|
|
2013-01-19 07:55:51 +01:00
|
|
|
function setpanelmode() {
|
|
|
|
$wide = (int) $_REQUEST["wide"];
|
|
|
|
|
2013-02-20 11:40:13 +01:00
|
|
|
setcookie("ttrss_widescreen", $wide,
|
|
|
|
time() + SESSION_COOKIE_LIFETIME);
|
2013-01-19 07:55:51 +01:00
|
|
|
|
|
|
|
print json_encode(array("wide" => $wide));
|
|
|
|
}
|
|
|
|
|
2013-01-22 16:49:47 +01:00
|
|
|
function updaterandomfeed() {
|
|
|
|
// Test if the feed need a update (update interval exceded).
|
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
$update_limit_qpart = "AND ((
|
|
|
|
ttrss_feeds.update_interval = 0
|
|
|
|
AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
|
|
|
|
) OR (
|
|
|
|
ttrss_feeds.update_interval > 0
|
|
|
|
AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
|
|
|
|
) OR ttrss_feeds.last_updated IS NULL
|
|
|
|
OR last_updated = '1970-01-01 00:00:00')";
|
|
|
|
} else {
|
|
|
|
$update_limit_qpart = "AND ((
|
|
|
|
ttrss_feeds.update_interval = 0
|
|
|
|
AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
|
|
|
|
) OR (
|
|
|
|
ttrss_feeds.update_interval > 0
|
|
|
|
AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
|
|
|
|
) OR ttrss_feeds.last_updated IS NULL
|
|
|
|
OR last_updated = '1970-01-01 00:00:00')";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test if feed is currently being updated by another process.
|
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
$updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '5 minutes')";
|
|
|
|
} else {
|
|
|
|
$updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
|
|
|
|
}
|
|
|
|
|
|
|
|
$random_qpart = sql_random_function();
|
|
|
|
|
|
|
|
// We search for feed needing update.
|
|
|
|
$result = db_query($this->link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id
|
|
|
|
FROM
|
|
|
|
ttrss_feeds, ttrss_users, ttrss_user_prefs
|
|
|
|
WHERE
|
|
|
|
ttrss_feeds.owner_uid = ttrss_users.id
|
|
|
|
AND ttrss_users.id = ttrss_user_prefs.owner_uid
|
|
|
|
AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
|
|
|
|
AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
|
|
|
|
$update_limit_qpart $updstart_thresh_qpart
|
|
|
|
ORDER BY $random_qpart LIMIT 30");
|
|
|
|
|
|
|
|
$feed_id = -1;
|
|
|
|
|
|
|
|
require_once "rssfuncs.php";
|
|
|
|
|
|
|
|
$num_updated = 0;
|
|
|
|
|
|
|
|
$tstart = time();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
$feed_id = $line["id"];
|
|
|
|
|
2013-01-22 17:07:34 +01:00
|
|
|
if (time() - $tstart < ini_get("max_execution_time") * 0.7) {
|
2013-01-22 16:49:47 +01:00
|
|
|
update_rss_feed($this->link, $feed_id, true);
|
|
|
|
++$num_updated;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-28 05:19:28 +01:00
|
|
|
// Purge orphans and cleanup tags
|
|
|
|
purge_orphans($this->link);
|
|
|
|
cleanup_tags($this->link, 14, 50000);
|
|
|
|
|
2013-01-22 16:49:47 +01:00
|
|
|
if ($num_updated > 0) {
|
|
|
|
print json_encode(array("message" => "UPDATE_COUNTERS",
|
|
|
|
"num_updated" => $num_updated));
|
|
|
|
} else {
|
|
|
|
print json_encode(array("message" => "NOTHING_TO_UPDATE"));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-22 19:32:17 +01:00
|
|
|
function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
|
|
|
|
if (!$owner_uid) $owner_uid = $_SESSION["uid"];
|
|
|
|
|
|
|
|
$sql_is_cat = bool_to_sql_bool($is_cat);
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT access_key FROM ttrss_access_keys
|
|
|
|
WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
|
|
|
|
AND owner_uid = " . $owner_uid);
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 1) {
|
2013-03-22 06:14:55 +01:00
|
|
|
$key = db_escape_string($this->link, sha1(uniqid(rand(), true)));
|
2013-01-22 19:32:17 +01:00
|
|
|
|
|
|
|
db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
|
|
|
|
WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
|
|
|
|
AND owner_uid = " . $owner_uid);
|
|
|
|
|
|
|
|
return $key;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function markArticlesById($link, $ids, $cmode) {
|
|
|
|
|
|
|
|
$tmp_ids = array();
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
array_push($tmp_ids, "ref_id = '$id'");
|
|
|
|
}
|
|
|
|
|
|
|
|
$ids_qpart = join(" OR ", $tmp_ids);
|
|
|
|
|
|
|
|
if ($cmode == 0) {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
2013-03-17 12:32:44 +01:00
|
|
|
marked = false, last_marked = NOW()
|
2013-01-22 19:32:17 +01:00
|
|
|
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
} else if ($cmode == 1) {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
2013-03-17 12:32:44 +01:00
|
|
|
marked = true, last_marked = NOW()
|
2013-01-22 19:32:17 +01:00
|
|
|
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
} else {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
2013-03-17 12:32:44 +01:00
|
|
|
marked = NOT marked,last_marked = NOW()
|
2013-01-22 19:32:17 +01:00
|
|
|
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function publishArticlesById($link, $ids, $cmode) {
|
|
|
|
|
|
|
|
$tmp_ids = array();
|
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
array_push($tmp_ids, "ref_id = '$id'");
|
|
|
|
}
|
|
|
|
|
|
|
|
$ids_qpart = join(" OR ", $tmp_ids);
|
|
|
|
|
|
|
|
if ($cmode == 0) {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
2013-03-17 12:32:44 +01:00
|
|
|
published = false,last_published = NOW()
|
2013-01-22 19:32:17 +01:00
|
|
|
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
} else if ($cmode == 1) {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
2013-03-17 12:32:44 +01:00
|
|
|
published = true,last_published = NOW()
|
2013-01-22 19:32:17 +01:00
|
|
|
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
} else {
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
2013-03-17 12:32:44 +01:00
|
|
|
published = NOT published,last_published = NOW()
|
2013-01-22 19:32:17 +01:00
|
|
|
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PUBSUBHUBBUB_HUB) {
|
|
|
|
$rss_link = get_self_url_prefix() .
|
|
|
|
"/public.php?op=rss&id=-2&key=" .
|
|
|
|
get_feed_access_key($link, -2, false);
|
|
|
|
|
|
|
|
$p = new Publisher(PUBSUBHUBBUB_HUB);
|
|
|
|
|
|
|
|
$pubsub_result = $p->publish_update($rss_link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 06:49:45 +01:00
|
|
|
function getlinktitlebyid() {
|
2013-03-22 06:14:55 +01:00
|
|
|
$id = db_escape_string($this->link, $_REQUEST['id']);
|
2013-03-21 20:29:06 +01:00
|
|
|
|
2013-03-22 06:49:45 +01:00
|
|
|
$result = db_query($this->link, "SELECT link, title FROM ttrss_entries, ttrss_user_entries
|
2013-03-21 20:29:06 +01:00
|
|
|
WHERE ref_id = '$id' AND ref_id = id AND owner_uid = ". $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
$link = db_fetch_result($result, 0, "link");
|
2013-03-22 06:49:45 +01:00
|
|
|
$title = db_fetch_result($result, 0, "title");
|
2013-03-21 20:29:06 +01:00
|
|
|
|
2013-03-22 06:49:45 +01:00
|
|
|
echo json_encode(array("link" => $link, "title" => $title));
|
2013-03-21 20:29:06 +01:00
|
|
|
} else {
|
|
|
|
echo json_encode(array("error" => "ARTICLE_NOT_FOUND"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-25 13:08:20 +01:00
|
|
|
function cdmArticlePreview() {
|
|
|
|
$id = db_escape_string($this->link, $_REQUEST['id']);
|
|
|
|
|
|
|
|
$result = db_query($this->link, "SELECT link,
|
|
|
|
ttrss_entries.title, content, feed_url
|
|
|
|
FROM
|
|
|
|
ttrss_entries, ttrss_user_entries
|
|
|
|
LEFT JOIN ttrss_feeds ON (ttrss_user_entries.feed_id = ttrss_feeds.id)
|
|
|
|
WHERE ref_id = '$id' AND ref_id = ttrss_entries.id AND
|
|
|
|
ttrss_user_entries.owner_uid = ". $_SESSION["uid"]);
|
|
|
|
|
|
|
|
if (db_num_rows($result) != 0) {
|
|
|
|
$link = db_fetch_result($result, 0, "link");
|
|
|
|
$title = db_fetch_result($result, 0, "title");
|
|
|
|
$feed_url = db_fetch_result($result, 0, "feed_url");
|
|
|
|
|
|
|
|
$content = sanitize($this->link,
|
|
|
|
db_fetch_result($result, 0, "content"), false, false, $feed_url);
|
|
|
|
|
|
|
|
print "<div class='content'>".$content."</content>";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
print "Article not found.";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-12 20:32:29 +01:00
|
|
|
}
|
|
|
|
?>
|