From 2fcec4c4297fca5dbbea2f312886b5c2d24a7a43 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 1 Apr 2011 16:58:34 +0400 Subject: add missing pubsub pings to operations changing the article published status --- functions.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 5adf46cdf..46502cd1a 100644 --- a/functions.php +++ b/functions.php @@ -1235,6 +1235,16 @@ VALUES ('$ref_id', '$owner_uid', '$feed', $unread, $last_read_qpart, $marked, $published, '$score', '', '')"); + if (PUBSUBHUBBUB_HUB && $published == 'true') { + $rss_link = get_self_url_prefix() . + "/backend.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); + } + $result = db_query($link, "SELECT int_id FROM ttrss_user_entries WHERE ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND @@ -4036,6 +4046,16 @@ published = NOT published,last_read = NOW() WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]); } + + if (PUBSUBHUBBUB_HUB) { + $rss_link = get_self_url_prefix() . + "/backend.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); + } } function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) { -- cgit v1.2.3