2016-08-02 11:55:49 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PubSubHubbub plugin.
|
|
|
|
*
|
|
|
|
* PubSub is a protocol which fasten up RSS fetching:
|
|
|
|
* - Every time a new link is posted, Shaarli notify the hub.
|
|
|
|
* - The hub notify all feed subscribers that a new link has been posted.
|
2018-10-13 00:22:45 +02:00
|
|
|
* - Subscribers retrieve the new link.
|
2016-08-02 11:55:49 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
use pubsubhubbub\publisher\Publisher;
|
2017-05-09 18:12:15 +02:00
|
|
|
use Shaarli\Config\ConfigManager;
|
2018-12-03 00:08:04 +01:00
|
|
|
use Shaarli\Feed\FeedBuilder;
|
2016-08-02 11:55:49 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugin init function - set the hub to the default appspot one.
|
|
|
|
*
|
|
|
|
* @param ConfigManager $conf instance.
|
|
|
|
*/
|
|
|
|
function pubsubhubbub_init($conf)
|
|
|
|
{
|
|
|
|
$hub = $conf->get('plugins.PUBSUBHUB_URL');
|
|
|
|
if (empty($hub)) {
|
|
|
|
// Default hub.
|
|
|
|
$conf->set('plugins.PUBSUBHUB_URL', 'https://pubsubhubbub.appspot.com/');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render feed hook.
|
|
|
|
* Adds the hub URL in ATOM and RSS feed.
|
|
|
|
*
|
|
|
|
* @param array $data Template data.
|
|
|
|
* @param ConfigManager $conf instance.
|
|
|
|
*
|
|
|
|
* @return array updated template data.
|
|
|
|
*/
|
|
|
|
function hook_pubsubhubbub_render_feed($data, $conf)
|
|
|
|
{
|
|
|
|
$feedType = $data['_PAGE_'] == Router::$PAGE_FEED_RSS ? FeedBuilder::$FEED_RSS : FeedBuilder::$FEED_ATOM;
|
|
|
|
$template = file_get_contents(PluginManager::$PLUGINS_PATH . '/pubsubhubbub/hub.'. $feedType .'.xml');
|
|
|
|
$data['feed_plugins_header'][] = sprintf($template, $conf->get('plugins.PUBSUBHUB_URL'));
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save link hook.
|
|
|
|
* Publish to the hub when a link is saved.
|
|
|
|
*
|
|
|
|
* @param array $data Template data.
|
|
|
|
* @param ConfigManager $conf instance.
|
|
|
|
*
|
|
|
|
* @return array unaltered data.
|
|
|
|
*/
|
|
|
|
function hook_pubsubhubbub_save_link($data, $conf)
|
|
|
|
{
|
|
|
|
$feeds = array(
|
|
|
|
index_url($_SERVER) .'?do=atom',
|
|
|
|
index_url($_SERVER) .'?do=rss',
|
|
|
|
);
|
|
|
|
|
|
|
|
$httpPost = function_exists('curl_version') ? false : 'nocurl_http_post';
|
|
|
|
try {
|
|
|
|
$p = new Publisher($conf->get('plugins.PUBSUBHUB_URL'));
|
|
|
|
$p->publish_update($feeds, $httpPost);
|
|
|
|
} catch (Exception $e) {
|
2017-05-09 18:12:15 +02:00
|
|
|
error_log(sprintf(t('Could not publish to PubSubHubbub: %s'), $e->getMessage()));
|
2016-08-02 11:55:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Http function used to post to the hub endpoint without cURL extension.
|
|
|
|
*
|
|
|
|
* @param string $url Hub endpoint.
|
|
|
|
* @param string $postString String to POST.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*
|
|
|
|
* @throws Exception An error occurred.
|
|
|
|
*/
|
2018-10-13 00:22:45 +02:00
|
|
|
function nocurl_http_post($url, $postString)
|
|
|
|
{
|
2016-08-02 11:55:49 +02:00
|
|
|
$params = array('http' => array(
|
|
|
|
'method' => 'POST',
|
|
|
|
'content' => $postString,
|
|
|
|
'user_agent' => 'PubSubHubbub-Publisher-PHP/1.0',
|
|
|
|
));
|
|
|
|
|
|
|
|
$context = stream_context_create($params);
|
|
|
|
$fp = @fopen($url, 'rb', false, $context);
|
|
|
|
if (!$fp) {
|
2017-05-09 18:12:15 +02:00
|
|
|
throw new Exception(sprintf(t('Could not post to %s'), $url));
|
2016-08-02 11:55:49 +02:00
|
|
|
}
|
|
|
|
$response = @stream_get_contents($fp);
|
|
|
|
if ($response === false) {
|
2017-05-09 18:12:15 +02:00
|
|
|
throw new Exception(sprintf(t('Bad response from the hub %s'), $url));
|
2016-08-02 11:55:49 +02:00
|
|
|
}
|
|
|
|
return $response;
|
|
|
|
}
|
2017-05-09 18:12:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is never called, but contains translation calls for GNU gettext extraction.
|
|
|
|
*/
|
|
|
|
function pubsubhubbub_dummy_translation()
|
|
|
|
{
|
|
|
|
// meta
|
|
|
|
t('Enable PubSubHubbub feed publishing.');
|
|
|
|
}
|