]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/ping.php
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
[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) {
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 = new HTTPClient($notify_url, HTTP_Request2::METHOD_POST);
48             $request->setHeader('Content-Type', 'text/xml');
49             $request->setBody($req);
50             $httpResponse = $request->send();
51
52             if (!$httpResponse || mb_strlen($httpResponse->getBody()) == 0) {
53                 common_log(LOG_WARNING,
54                            "XML-RPC empty results for ping ($notify_url, $notice->id) ");
55                 continue;
56             }
57
58             $response = xmlrpc_decode($httpResponse->getBody());
59
60             if (is_array($response) && xmlrpc_is_fault($response)) {
61                 common_log(LOG_WARNING,
62                            "XML-RPC error for ping ($notify_url, $notice->id) ".
63                            "$response[faultString] ($response[faultCode])");
64             } else {
65                 common_log(LOG_INFO,
66                            "Ping success for $notify_url $notice->id");
67             }
68             break;
69
70                  case 'get':
71                  case 'post':
72             $args = array('name' => $profile->nickname,
73                           'url' => common_local_url('showstream',
74                                                     array('nickname' => $profile->nickname)),
75                           'changesURL' => common_local_url('userrss',
76                                                            array('nickname' => $profile->nickname)));
77
78             $fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
79
80             if ($type === 'get') {
81                 $result = $fetcher->get($notify_url . '?' . http_build_query($args),
82                                         array('User-Agent: StatusNet/'.STATUSNET_VERSION));
83             } else {
84                 $result = $fetcher->post($notify_url,
85                                          http_build_query($args),
86                                          array('User-Agent: StatusNet/'.STATUSNET_VERSION));
87             }
88             if ($result->status != '200') {
89                 common_log(LOG_WARNING,
90                            "Ping error for '$notify_url' ($notice->id): ".
91                            "$result->body");
92             } else {
93                 common_log(LOG_INFO,
94                            "Ping success for '$notify_url' ($notice->id): ".
95                            "'$result->body'");
96             }
97             break;
98
99                  default:
100                         common_log(LOG_WARNING, 'Unknown notify type for ' . $notify_url . ': ' . $type);
101         }
102         }
103
104     return true;
105 }
106
107 function ping_notice_tags($notice) {
108         $tag = new Notice_tag();
109         $tag->notice_id = $notice->id;
110         $tags = array();
111         if ($tag->find()) {
112                 while ($tag->fetch()) {
113                         $tags[] = $tag->tag;
114                 }
115                 $tag->free();
116                 unset($tag);
117                 return implode('|', $tags);
118         }
119         return NULL;
120 }