]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/ping.php
Fixes to bugs where non-local messages were being wrong put in the public timeline...
[quix0rs-gnu-social.git] / lib / ping.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 function ping_broadcast_notice($notice) {
23
24         if ($notice->is_local != Notice::LOCAL_PUBLIC && $notice->is_local != Notice::LOCAL_NONPUBLIC) {
25                 return true;
26         }
27
28         # Array of servers, URL => type
29         $notify = common_config('ping', 'notify');
30         $profile = $notice->getProfile();
31         $tags = ping_notice_tags($notice);
32
33         foreach ($notify as $notify_url => $type) {
34                 switch ($type) {
35                  case 'xmlrpc':
36                  case 'extended':
37                         $req = xmlrpc_encode_request('weblogUpdates.ping',
38                                                                                  array($profile->nickname, # site name
39                                                                                            common_local_url('showstream',
40                                                                                                                                 array('nickname' => $profile->nickname)),
41                                                                                            common_local_url('shownotice',
42                                                                                                                                 array('notice' => $notice->id)),
43                                                                                            common_local_url('userrss',
44                                                                                                                                 array('nickname' => $profile->nickname)),
45                                                                                            $tags));
46
47             $request = HTTPClient::start();
48             $httpResponse = $request->post($notify_url, array('Content-Type: text/xml'), $req);
49
50             if (!$httpResponse || mb_strlen($httpResponse->getBody()) == 0) {
51                 common_log(LOG_WARNING,
52                            "XML-RPC empty results for ping ($notify_url, $notice->id) ");
53                 continue;
54             }
55
56             $response = xmlrpc_decode($httpResponse->getBody());
57
58             if (is_array($response) && xmlrpc_is_fault($response)) {
59                 common_log(LOG_WARNING,
60                            "XML-RPC error for ping ($notify_url, $notice->id) ".
61                            "$response[faultString] ($response[faultCode])");
62             } else {
63                 common_log(LOG_INFO,
64                            "Ping success for $notify_url $notice->id");
65             }
66             break;
67
68                  case 'get':
69                  case 'post':
70             $args = array('name' => $profile->nickname,
71                           'url' => common_local_url('showstream',
72                                                     array('nickname' => $profile->nickname)),
73                           'changesURL' => common_local_url('userrss',
74                                                            array('nickname' => $profile->nickname)));
75
76             $fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
77
78             if ($type === 'get') {
79                 $result = $fetcher->get($notify_url . '?' . http_build_query($args),
80                                         array('User-Agent: StatusNet/'.STATUSNET_VERSION));
81             } else {
82                 $result = $fetcher->post($notify_url,
83                                          http_build_query($args),
84                                          array('User-Agent: StatusNet/'.STATUSNET_VERSION));
85             }
86             if ($result->status != '200') {
87                 common_log(LOG_WARNING,
88                            "Ping error for '$notify_url' ($notice->id): ".
89                            "$result->body");
90             } else {
91                 common_log(LOG_INFO,
92                            "Ping success for '$notify_url' ($notice->id): ".
93                            "'$result->body'");
94             }
95             break;
96
97                  default:
98                         common_log(LOG_WARNING, 'Unknown notify type for ' . $notify_url . ': ' . $type);
99         }
100         }
101
102     return true;
103 }
104
105 function ping_notice_tags($notice) {
106         $tag = new Notice_tag();
107         $tag->notice_id = $notice->id;
108         $tags = array();
109         if ($tag->find()) {
110                 while ($tag->fetch()) {
111                         $tags[] = $tag->tag;
112                 }
113                 $tag->free();
114                 unset($tag);
115                 return implode('|', $tags);
116         }
117         return NULL;
118 }