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) {
23 if ($notice->is_local != Notice::LOCAL_PUBLIC && $notice->is_local != Notice::LOCAL_NONPUBLIC) {
27 // Array of servers, URL => type
28 $notify = common_config('ping', 'notify');
30 $profile = $notice->getProfile();
31 } catch (Exception $e) {
32 // @todo: distinguish the 'broken notice/profile' case from more general
34 common_log(LOG_ERR, "Exception getting notice profile: " . $e->getMessage());
37 $tags = ping_notice_tags($notice);
39 foreach ($notify as $notify_url => $type) {
43 $req = xmlrpc_encode_request('weblogUpdates.ping',
44 array($profile->nickname, # site name
45 common_local_url('showstream',
46 array('nickname' => $profile->nickname)),
47 common_local_url('shownotice',
48 array('notice' => $notice->id)),
49 common_local_url('userrss',
50 array('nickname' => $profile->nickname)),
53 $request = HTTPClient::start();
54 $request->setConfig('connect_timeout', common_config('ping', 'timeout'));
55 $request->setConfig('timeout', common_config('ping', 'timeout'));
57 $httpResponse = $request->post($notify_url, array('Content-Type: text/xml'), $req);
58 } catch (Exception $e) {
60 "Exception pinging $notify_url: " . $e->getMessage());
64 if (!$httpResponse || mb_strlen($httpResponse->getBody()) == 0) {
65 common_log(LOG_WARNING,
66 "XML-RPC empty results for ping ($notify_url, $notice->id) ");
70 $response = xmlrpc_decode($httpResponse->getBody());
72 if (is_array($response) && xmlrpc_is_fault($response)) {
73 common_log(LOG_WARNING,
74 "XML-RPC error for ping ($notify_url, $notice->id) ".
75 "$response[faultString] ($response[faultCode])");
78 "Ping success for $notify_url $notice->id");
83 $args = array('name' => $profile->nickname,
84 'url' => common_local_url('showstream',
85 array('nickname' => $profile->nickname)),
86 'changesURL' => common_local_url('userrss',
87 array('nickname' => $profile->nickname)));
89 $fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
91 if ($type === 'get') {
92 $result = $fetcher->get($notify_url . '?' . http_build_query($args),
93 array('User-Agent: ' . HTTPClient::userAgent()));
95 $result = $fetcher->post($notify_url,
96 http_build_query($args),
97 array('User-Agent: ' . HTTPClient::userAgent()));
99 if ($result->status != '200') {
100 common_log(LOG_WARNING,
101 "Ping error for '$notify_url' ($notice->id): ".
105 "Ping success for '$notify_url' ($notice->id): ".
110 common_log(LOG_WARNING, 'Unknown notify type for ' . $notify_url . ': ' . $type);
117 function ping_notice_tags($notice) {
118 $tag = new Notice_tag();
119 $tag->notice_id = $notice->id;
122 while ($tag->fetch()) {
127 return implode('|', $tags);