3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2009, StatusNet, Inc.
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.
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.
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/>.
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
22 function ping_broadcast_notice($notice) {
24 if ($notice->is_local != Notice::LOCAL_PUBLIC && $notice->is_local != Notice::LOCAL_NONPUBLIC) {
28 # Array of servers, URL => type
29 $notify = common_config('ping', 'notify');
31 $profile = $notice->getProfile();
32 } catch (Exception $e) {
33 // @todo: distinguish the 'broken notice/profile' case from more general
35 common_log(LOG_ERR, "Exception getting notice profile: " . $e->getMessage());
38 $tags = ping_notice_tags($notice);
40 foreach ($notify as $notify_url => $type) {
44 $req = xmlrpc_encode_request('weblogUpdates.ping',
45 array($profile->nickname, # site name
46 common_local_url('showstream',
47 array('nickname' => $profile->nickname)),
48 common_local_url('shownotice',
49 array('notice' => $notice->id)),
50 common_local_url('userrss',
51 array('nickname' => $profile->nickname)),
54 $request = HTTPClient::start();
55 $request->setConfig('connect_timeout', common_config('ping', 'timeout'));
56 $request->setConfig('timeout', common_config('ping', 'timeout'));
58 $httpResponse = $request->post($notify_url, array('Content-Type: text/xml'), $req);
59 } catch (Exception $e) {
61 "Exception pinging $notify_url: " . $e->getMessage());
65 if (!$httpResponse || mb_strlen($httpResponse->getBody()) == 0) {
66 common_log(LOG_WARNING,
67 "XML-RPC empty results for ping ($notify_url, $notice->id) ");
71 $response = xmlrpc_decode($httpResponse->getBody());
73 if (is_array($response) && xmlrpc_is_fault($response)) {
74 common_log(LOG_WARNING,
75 "XML-RPC error for ping ($notify_url, $notice->id) ".
76 "$response[faultString] ($response[faultCode])");
79 "Ping success for $notify_url $notice->id");
85 $args = array('name' => $profile->nickname,
86 'url' => common_local_url('showstream',
87 array('nickname' => $profile->nickname)),
88 'changesURL' => common_local_url('userrss',
89 array('nickname' => $profile->nickname)));
91 $fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
93 if ($type === 'get') {
94 $result = $fetcher->get($notify_url . '?' . http_build_query($args),
95 array('User-Agent: StatusNet/'.STATUSNET_VERSION));
97 $result = $fetcher->post($notify_url,
98 http_build_query($args),
99 array('User-Agent: StatusNet/'.STATUSNET_VERSION));
101 if ($result->status != '200') {
102 common_log(LOG_WARNING,
103 "Ping error for '$notify_url' ($notice->id): ".
107 "Ping success for '$notify_url' ($notice->id): ".
113 common_log(LOG_WARNING, 'Unknown notify type for ' . $notify_url . ': ' . $type);
120 function ping_notice_tags($notice) {
121 $tag = new Notice_tag();
122 $tag->notice_id = $notice->id;
125 while ($tag->fetch()) {
130 return implode('|', $tags);