ttrss/classes/rpc.php

643 lines
18 KiB
PHP
Raw Normal View History

2011-12-12 20:32:29 +01:00
<?php
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) {
$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-04-17 18:12:14 +02:00
$id = $this->dbh->escape_string($_REQUEST["id"]);
2011-12-13 11:15:42 +01:00
2011-12-12 20:32:29 +01:00
$_SESSION["profile"] = $id;
}
function remprofiles() {
2013-04-17 18:12:14 +02:00
$ids = explode(",", $this->dbh->escape_string(trim($_REQUEST["ids"])));
2011-12-12 20:32:29 +01:00
foreach ($ids as $id) {
if ($_SESSION["profile"] != $id) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("DELETE FROM ttrss_settings_profiles WHERE id = '$id' AND
2011-12-12 20:32:29 +01:00
owner_uid = " . $_SESSION["uid"]);
}
}
}
// Silent
function addprofile() {
2013-04-17 18:12:14 +02:00
$title = $this->dbh->escape_string(trim($_REQUEST["title"]));
2011-12-12 20:32:29 +01:00
if ($title) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("BEGIN");
2011-12-12 20:32:29 +01:00
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_settings_profiles
2011-12-12 20:32:29 +01:00
WHERE title = '$title' AND owner_uid = " . $_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) == 0) {
2011-12-12 20:32:29 +01:00
2013-04-17 18:12:14 +02:00
$this->dbh->query("INSERT INTO ttrss_settings_profiles (title, owner_uid)
2011-12-12 20:32:29 +01:00
VALUES ('$title', ".$_SESSION["uid"] .")");
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_settings_profiles WHERE
2011-12-12 20:32:29 +01:00
title = '$title'");
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) != 0) {
$profile_id = $this->dbh->fetch_result($result, 0, "id");
2011-12-12 20:32:29 +01:00
if ($profile_id) {
initialize_user_prefs($_SESSION["uid"], $profile_id);
2011-12-12 20:32:29 +01:00
}
}
}
2013-04-17 18:12:14 +02:00
$this->dbh->query("COMMIT");
2011-12-12 20:32:29 +01:00
}
}
// Silent
function saveprofile() {
2013-04-17 18:12:14 +02:00
$id = $this->dbh->escape_string($_REQUEST["id"]);
$title = $this->dbh->escape_string(trim($_REQUEST["value"]));
2011-12-12 20:32:29 +01:00
if ($id == 0) {
print __("Default profile");
return;
}
if ($title) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("BEGIN");
2011-12-12 20:32:29 +01:00
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_settings_profiles
2011-12-12 20:32:29 +01:00
WHERE title = '$title' AND owner_uid =" . $_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) == 0) {
$this->dbh->query("UPDATE ttrss_settings_profiles
2011-12-12 20:32:29 +01:00
SET title = '$title' WHERE id = '$id' AND
owner_uid = " . $_SESSION["uid"]);
print $title;
} else {
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT title FROM ttrss_settings_profiles
2011-12-12 20:32:29 +01:00
WHERE id = '$id' AND owner_uid =" . $_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
print $this->dbh->fetch_result($result, 0, "title");
2011-12-12 20:32:29 +01:00
}
2013-04-17 18:12:14 +02:00
$this->dbh->query("COMMIT");
2011-12-12 20:32:29 +01:00
}
}
// Silent
function remarchive() {
2013-04-17 18:12:14 +02:00
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
2011-12-12 20:32:29 +01:00
foreach ($ids as $id) {
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("DELETE FROM ttrss_archived_feeds WHERE
2011-12-12 20:32:29 +01:00
(SELECT COUNT(*) FROM ttrss_user_entries
WHERE orig_feed_id = '$id') = 0 AND
id = '$id' AND owner_uid = ".$_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
$rc = $this->dbh->affected_rows($result);
2011-12-12 20:32:29 +01:00
}
}
function addfeed() {
2013-04-17 18:12:14 +02:00
$feed = $this->dbh->escape_string($_REQUEST['feed']);
$cat = $this->dbh->escape_string($_REQUEST['cat']);
$login = $this->dbh->escape_string($_REQUEST['login']);
$pass = trim($_REQUEST['pass']); // escaped later
2011-12-12 20:32:29 +01:00
$rc = subscribe_to_feed($feed, $cat, $login, $pass);
2011-12-12 20:32:29 +01:00
print json_encode(array("result" => $rc));
}
function togglepref() {
2013-04-17 18:12:14 +02:00
$key = $this->dbh->escape_string($_REQUEST["key"]);
set_pref($key, !get_pref($key));
$value = get_pref($key);
2011-12-12 20:32:29 +01:00
print json_encode(array("param" =>$key, "value" => $value));
}
function setpref() {
// 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
set_pref($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-04-17 18:12:14 +02:00
$id = $this->dbh->escape_string($_REQUEST["id"]);
2011-12-12 20:32:29 +01:00
if ($mark == "1") {
$mark = "true";
} else {
$mark = "false";
}
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("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-04-17 18:12:14 +02:00
$ids = $this->dbh->escape_string($_REQUEST["ids"]);
2011-12-12 20:32:29 +01:00
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("DELETE FROM ttrss_user_entries
2011-12-12 20:32:29 +01:00
WHERE ref_id IN ($ids) AND owner_uid = " . $_SESSION["uid"]);
2013-04-17 14:23:15 +02:00
purge_orphans();
2013-03-29 12:20:26 +01:00
2011-12-12 20:32:29 +01:00
print json_encode(array("message" => "UPDATE_COUNTERS"));
}
function unarchive() {
$ids = explode(",", $_REQUEST["ids"]);
foreach ($ids as $id) {
2013-04-17 18:12:14 +02:00
$id = $this->dbh->escape_string(trim($id));
$this->dbh->query("BEGIN");
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("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"].")");
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) != 0) {
$feed_url = $this->dbh->escape_string(db_fetch_result($result, 0, "feed_url"));
$site_url = $this->dbh->escape_string(db_fetch_result($result, 0, "site_url"));
$title = $this->dbh->escape_string(db_fetch_result($result, 0, "title"));
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_url'
AND owner_uid = " .$_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) == 0) {
if (!$title) $title = '[Unknown]';
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query(
"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-04-17 18:12:14 +02:00
$result = $this->dbh->query(
"SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_url'
AND owner_uid = ".$_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) != 0) {
$feed_id = $this->dbh->fetch_result($result, 0, "id");
}
} else {
2013-04-17 18:12:14 +02:00
$feed_id = $this->dbh->fetch_result($result, 0, "id");
}
if ($feed_id) {
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("UPDATE ttrss_user_entries
SET feed_id = '$feed_id', orig_feed_id = NULL
WHERE ref_id = $id AND owner_uid = " . $_SESSION["uid"]);
}
}
2013-04-17 18:12:14 +02:00
$this->dbh->query("COMMIT");
}
2011-12-12 20:32:29 +01:00
print json_encode(array("message" => "UPDATE_COUNTERS"));
}
function archive() {
2013-04-17 18:12:14 +02:00
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
2011-12-12 20:32:29 +01:00
foreach ($ids as $id) {
$this->archive_article($id, $_SESSION["uid"]);
2011-12-12 20:32:29 +01:00
}
print json_encode(array("message" => "UPDATE_COUNTERS"));
}
private function archive_article($id, $owner_uid) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("BEGIN");
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT feed_id FROM ttrss_user_entries
WHERE ref_id = '$id' AND owner_uid = $owner_uid");
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) != 0) {
/* prepare the archived table */
2013-04-17 18:12:14 +02:00
$feed_id = (int) $this->dbh->fetch_result($result, 0, "feed_id");
if ($feed_id) {
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_archived_feeds
WHERE id = '$feed_id'");
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) == 0) {
$this->dbh->query("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'");
}
2013-04-17 18:12:14 +02:00
$this->dbh->query("UPDATE ttrss_user_entries
SET orig_feed_id = feed_id, feed_id = NULL
WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
}
}
2013-04-17 18:12:14 +02:00
$this->dbh->query("COMMIT");
}
2011-12-12 20:32:29 +01:00
function publ() {
$pub = $_REQUEST["pub"];
2013-04-17 18:12:14 +02:00
$id = $this->dbh->escape_string($_REQUEST["id"]);
$note = trim(strip_tags($this->dbh->escape_string($_REQUEST["note"])));
2011-12-12 20:32:29 +01:00
if ($pub == "1") {
$pub = "true";
} else {
$pub = "false";
}
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("UPDATE ttrss_user_entries SET
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(-2, false);
2011-12-12 20:32:29 +01:00
$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-05-07 09:35:10 +02:00
if (!empty($_REQUEST['seq'])) $reply['seq'] = (int) $_REQUEST['seq'];
2011-12-12 20:32:29 +01:00
2013-04-17 14:23:15 +02:00
if ($last_article_id != getLastArticleId()) {
$reply['counters'] = getAllCounters();
}
2011-12-12 20:32:29 +01:00
2013-04-17 14:23:15 +02:00
$reply['runtime-info'] = make_runtime_info();
2011-12-12 20:32:29 +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-04-17 18:12:14 +02:00
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
2011-12-12 20:32:29 +01:00
$cmode = sprintf("%d", $_REQUEST["cmode"]);
catchupArticlesById($ids, $cmode);
2011-12-12 20:32:29 +01:00
print json_encode(array("message" => "UPDATE_COUNTERS", "ids" => $ids));
2011-12-12 20:32:29 +01:00
}
function markSelected() {
2013-04-17 18:12:14 +02:00
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
2011-12-12 20:32:29 +01:00
$cmode = sprintf("%d", $_REQUEST["cmode"]);
$this->markArticlesById($ids, $cmode);
2011-12-12 20:32:29 +01:00
print json_encode(array("message" => "UPDATE_COUNTERS"));
}
function publishSelected() {
2013-04-17 18:12:14 +02:00
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
2011-12-12 20:32:29 +01:00
$cmode = sprintf("%d", $_REQUEST["cmode"]);
$this->publishArticlesById($ids, $cmode);
2011-12-12 20:32:29 +01:00
print json_encode(array("message" => "UPDATE_COUNTERS"));
}
function sanityCheck() {
$_SESSION["hasAudio"] = $_REQUEST["hasAudio"] === "true";
$_SESSION["hasSandbox"] = $_REQUEST["hasSandbox"] === "true";
$_SESSION["hasMp3"] = $_REQUEST["hasMp3"] === "true";
$_SESSION["clientTzOffset"] = $_REQUEST["clientTzOffset"];
2011-12-12 20:32:29 +01:00
$reply = array();
2013-04-17 14:23:15 +02:00
$reply['error'] = sanity_check();
2011-12-12 20:32:29 +01:00
if ($reply['error']['code'] == 0) {
2013-04-17 14:23:15 +02:00
$reply['init-params'] = make_init_params();
$reply['runtime-info'] = make_runtime_info();
2011-12-12 20:32:29 +01:00
}
print json_encode($reply);
}
function completeLabels() {
2013-04-17 18:12:14 +02:00
$search = $this->dbh->escape_string($_REQUEST["search"]);
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT DISTINCT caption FROM
ttrss_labels2
WHERE owner_uid = '".$_SESSION["uid"]."' AND
LOWER(caption) LIKE LOWER('$search%') ORDER BY caption
LIMIT 5");
print "<ul>";
2013-04-17 18:12:14 +02:00
while ($line = $this->dbh->fetch_assoc($result)) {
print "<li>" . $line["caption"] . "</li>";
}
print "</ul>";
}
2011-12-12 20:32:29 +01:00
function purge() {
2013-04-17 18:12:14 +02:00
$ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
2011-12-12 20:32:29 +01:00
$days = sprintf("%d", $_REQUEST["days"]);
foreach ($ids as $id) {
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
2011-12-12 20:32:29 +01:00
id = '$id' AND owner_uid = ".$_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) == 1) {
purge_feed($id, $days);
2011-12-12 20:32:29 +01:00
}
}
}
function updateFeedBrowser() {
2013-04-17 18:12:14 +02:00
$search = $this->dbh->escape_string($_REQUEST["search"]);
$limit = $this->dbh->escape_string($_REQUEST["limit"]);
$mode = (int) $this->dbh->escape_string($_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($search, $limit, $mode),
2011-12-12 20:32:29 +01:00
"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-04-17 18:12:14 +02:00
$title = $this->dbh->escape_string($feed[0]);
$feed_url = $this->dbh->escape_string($feed[1]);
2011-12-12 20:32:29 +01:00
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
2011-12-12 20:32:29 +01:00
feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) == 0) {
$result = $this->dbh->query("INSERT INTO ttrss_feeds
2011-12-12 20:32:29 +01:00
(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) {
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT * FROM ttrss_archived_feeds
2011-12-12 20:32:29 +01:00
WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) != 0) {
$site_url = $this->dbh->escape_string(db_fetch_result($result, 0, "site_url"));
$feed_url = $this->dbh->escape_string(db_fetch_result($result, 0, "feed_url"));
$title = $this->dbh->escape_string(db_fetch_result($result, 0, "title"));
2011-12-12 20:32:29 +01:00
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
2011-12-12 20:32:29 +01:00
feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) == 0) {
$result = $this->dbh->query("INSERT INTO ttrss_feeds
2011-12-12 20:32:29 +01:00
(owner_uid,feed_url,title,cat_id,site_url)
VALUES ('$id','".$_SESSION["uid"]."',
'$feed_url', '$title', NULL, '$site_url')");
}
}
}
}
}
function catchupFeed() {
2013-04-17 18:12:14 +02:00
$feed_id = $this->dbh->escape_string($_REQUEST['feed_id']);
$is_cat = $this->dbh->escape_string($_REQUEST['is_cat']) == "true";
$mode = $this->dbh->escape_string($_REQUEST['mode']);
2011-12-12 20:32:29 +01:00
catchup_feed($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-04-17 18:12:14 +02:00
$cat = $this->dbh->escape_string($_REQUEST["cat"]);
2011-12-12 20:32:29 +01:00
add_feed_category($cat);
2011-12-12 20:32:29 +01:00
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT id FROM ttrss_feed_categories WHERE
2011-12-12 20:32:29 +01:00
title = '$cat' AND owner_uid = " . $_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) == 1) {
$id = $this->dbh->fetch_result($result, 0, "id");
2011-12-12 20:32:29 +01:00
} else {
$id = 0;
}
2013-05-07 09:35:10 +02:00
print_feed_cat_select("cat_id", $id, '');
2011-12-12 20:32:29 +01:00
}
2013-01-19 07:55:51 +01:00
function setpanelmode() {
$wide = (int) $_REQUEST["wide"];
setcookie("ttrss_widescreen", $wide,
time() + COOKIE_LIFETIME_LONG);
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.
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT ttrss_feeds.feed_url,ttrss_feeds.id
2013-01-22 16:49:47 +01:00
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();
2013-04-17 18:12:14 +02:00
while ($line = $this->dbh->fetch_assoc($result)) {
2013-01-22 16:49:47 +01:00
$feed_id = $line["id"];
if (time() - $tstart < ini_get("max_execution_time") * 0.7) {
update_rss_feed($feed_id, true);
2013-01-22 16:49:47 +01:00
++$num_updated;
} else {
break;
}
}
// Purge orphans and cleanup tags
2013-04-17 14:23:15 +02:00
purge_orphans();
cleanup_tags(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"));
}
}
private function markArticlesById($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) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("UPDATE ttrss_user_entries SET
marked = false, last_marked = NOW()
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
} else if ($cmode == 1) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("UPDATE ttrss_user_entries SET
marked = true, last_marked = NOW()
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
} else {
2013-04-17 18:12:14 +02:00
$this->dbh->query("UPDATE ttrss_user_entries SET
marked = NOT marked,last_marked = NOW()
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
}
}
private function publishArticlesById($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) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("UPDATE ttrss_user_entries SET
published = false,last_published = NOW()
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
} else if ($cmode == 1) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("UPDATE ttrss_user_entries SET
published = true,last_published = NOW()
WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
} else {
2013-04-17 18:12:14 +02:00
$this->dbh->query("UPDATE ttrss_user_entries SET
published = NOT published,last_published = NOW()
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(-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-04-17 18:12:14 +02:00
$id = $this->dbh->escape_string($_REQUEST['id']);
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT link, title FROM ttrss_entries, ttrss_user_entries
WHERE ref_id = '$id' AND ref_id = id AND owner_uid = ". $_SESSION["uid"]);
2013-04-17 18:12:14 +02:00
if ($this->dbh->num_rows($result) != 0) {
$link = $this->dbh->fetch_result($result, 0, "link");
$title = $this->dbh->fetch_result($result, 0, "title");
2013-03-22 06:49:45 +01:00
echo json_encode(array("link" => $link, "title" => $title));
} else {
echo json_encode(array("error" => "ARTICLE_NOT_FOUND"));
}
}
function log() {
$logmsg = $this->dbh->escape_string($_REQUEST['logmsg']);
if ($logmsg) {
Logger::get()->log_error(E_USER_WARNING,
$logmsg, '[client-js]', 0, false);
}
echo json_encode(array("message" => "HOST_ERROR_LOGGED"));
}
2011-12-12 20:32:29 +01:00
}
?>