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