diff options
Diffstat (limited to 'plugins/pubsubhubbub')
-rw-r--r-- | plugins/pubsubhubbub/pubsubhubbub.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/pubsubhubbub/pubsubhubbub.php b/plugins/pubsubhubbub/pubsubhubbub.php index 184b588b..2878c050 100644 --- a/plugins/pubsubhubbub/pubsubhubbub.php +++ b/plugins/pubsubhubbub/pubsubhubbub.php | |||
@@ -6,11 +6,14 @@ | |||
6 | * PubSub is a protocol which fasten up RSS fetching: | 6 | * PubSub is a protocol which fasten up RSS fetching: |
7 | * - Every time a new link is posted, Shaarli notify the hub. | 7 | * - Every time a new link is posted, Shaarli notify the hub. |
8 | * - The hub notify all feed subscribers that a new link has been posted. | 8 | * - The hub notify all feed subscribers that a new link has been posted. |
9 | * - Subscribers retrieve the new link. | 9 | * - Subscribers retrieve the new link. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | use pubsubhubbub\publisher\Publisher; | 12 | use pubsubhubbub\publisher\Publisher; |
13 | use Shaarli\Config\ConfigManager; | 13 | use Shaarli\Config\ConfigManager; |
14 | use Shaarli\Feed\FeedBuilder; | ||
15 | use Shaarli\Plugin\PluginManager; | ||
16 | use Shaarli\Router; | ||
14 | 17 | ||
15 | /** | 18 | /** |
16 | * Plugin init function - set the hub to the default appspot one. | 19 | * Plugin init function - set the hub to the default appspot one. |
@@ -82,7 +85,8 @@ function hook_pubsubhubbub_save_link($data, $conf) | |||
82 | * | 85 | * |
83 | * @throws Exception An error occurred. | 86 | * @throws Exception An error occurred. |
84 | */ | 87 | */ |
85 | function nocurl_http_post($url, $postString) { | 88 | function nocurl_http_post($url, $postString) |
89 | { | ||
86 | $params = array('http' => array( | 90 | $params = array('http' => array( |
87 | 'method' => 'POST', | 91 | 'method' => 'POST', |
88 | 'content' => $postString, | 92 | 'content' => $postString, |