]> git.mxchange.org Git - friendica.git/blob - include/pubsubpublish.php
Merge pull request #3526 from annando/bugfix-index
[friendica.git] / include / pubsubpublish.php
1 <?php
2
3 use Friendica\App;
4 use Friendica\Core\Config;
5
6 require_once('include/items.php');
7 require_once('include/ostatus.php');
8
9 function pubsubpublish_run(&$argv, &$argc){
10
11         if ($argc > 1) {
12                 $pubsubpublish_id = intval($argv[1]);
13         } else {
14                 // We'll push to each subscriber that has push > 0,
15                 // i.e. there has been an update (set in notifier.php).
16                 $r = q("SELECT `id`, `callback_url` FROM `push_subscriber` WHERE `push` > 0");
17
18                 foreach ($r as $rr) {
19                         logger("Publish feed to ".$rr["callback_url"], LOGGER_DEBUG);
20                         proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), 'include/pubsubpublish.php', $rr["id"]);
21                 }
22         }
23
24         handle_pubsubhubbub($pubsubpublish_id);
25
26         return;
27 }
28
29 function handle_pubsubhubbub($id) {
30         global $a;
31
32         $r = q("SELECT * FROM `push_subscriber` WHERE `id` = %d", intval($id));
33         if (!dbm::is_result($r)) {
34                 return;
35         }
36
37         $rr = $r[0];
38
39         /// @todo Check server status with poco_check_server()
40         // Before this can be done we need a way to safely detect the server url.
41
42         logger("Generate feed of user ".$rr['nickname']." to ".$rr['callback_url']." - last updated ".$rr['last_update'], LOGGER_DEBUG);
43
44         $params = ostatus::feed($a, $rr['nickname'], $rr['last_update']);
45         $hmac_sig = hash_hmac("sha1", $params, $rr['secret']);
46
47         $headers = array("Content-type: application/atom+xml",
48                         sprintf("Link: <%s>;rel=hub,<%s>;rel=self",
49                                 App::get_baseurl().'/pubsubhubbub',
50                                 $rr['topic']),
51                         "X-Hub-Signature: sha1=".$hmac_sig);
52
53         logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG);
54
55         post_url($rr['callback_url'], $params, $headers);
56         $ret = $a->get_curl_code();
57
58         if ($ret >= 200 && $ret <= 299) {
59                 logger('successfully pushed to '.$rr['callback_url']);
60
61                 // set last_update to "now", and reset push=0
62                 $date_now = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
63                 q("UPDATE `push_subscriber` SET `push` = 0, last_update = '%s' WHERE id = %d",
64                         dbesc($date_now),
65                         intval($rr['id']));
66
67         } else {
68                 logger('error when pushing to '.$rr['callback_url'].' HTTP: '.$ret);
69
70                 // we use the push variable also as a counter, if we failed we
71                 // increment this until some upper limit where we give up
72                 $new_push = intval($rr['push']) + 1;
73
74                 if ($new_push > 30) // OK, let's give up
75                         $new_push = 0;
76
77                 q("UPDATE `push_subscriber` SET `push` = %d WHERE id = %d",
78                         $new_push,
79                         intval($rr['id']));
80         }
81 }