]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/omb.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / lib / omb.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 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 require_once INSTALLDIR.'/lib/oauthstore.php';
23 require_once 'OAuth.php';
24 require_once 'libomb/constants.php';
25 require_once 'libomb/service_consumer.php';
26 require_once 'libomb/notice.php';
27 require_once 'libomb/profile.php';
28 require_once 'Auth/Yadis/Yadis.php';
29
30 function omb_oauth_consumer()
31 {
32     // Don't try to make this static. Leads to issues in
33     // multi-site setups - Z
34     return new OAuthConsumer(common_root_url(), '');
35 }
36
37 function omb_oauth_server()
38 {
39     static $server = null;
40     if (is_null($server)) {
41         $server = new OAuthServer(omb_oauth_datastore());
42         $server->add_signature_method(omb_hmac_sha1());
43     }
44     return $server;
45 }
46
47 function omb_oauth_datastore()
48 {
49     static $store = null;
50     if (is_null($store)) {
51         $store = new StatusNetOAuthDataStore();
52     }
53     return $store;
54 }
55
56 function omb_hmac_sha1()
57 {
58     static $hmac_method = null;
59     if (is_null($hmac_method)) {
60         $hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
61     }
62     return $hmac_method;
63 }
64
65 function omb_broadcast_notice($notice)
66 {
67
68     try {
69         $omb_notice = notice_to_omb_notice($notice);
70     } catch (Exception $e) {
71         // @fixme we should clean up or highlight the problem item
72         common_log(LOG_ERR, 'Invalid OMB outgoing notice for notice ' . $notice->id);
73         common_log(LOG_ERR, 'Error status '.$e);
74         return true;
75     }
76
77     /* Get remote users subscribed to this profile. */
78     $rp = new Remote_profile();
79
80     $rp->query('SELECT postnoticeurl, token, secret ' .
81                'FROM subscription JOIN remote_profile ' .
82                'ON subscription.subscriber = remote_profile.id ' .
83                'WHERE subscription.subscribed = ' . $notice->profile_id . ' ');
84
85     $posted = array();
86
87     while ($rp->fetch()) {
88         if (isset($posted[$rp->postnoticeurl])) {
89             /* We already posted to this url. */
90             continue;
91         }
92         common_debug('Posting to ' . $rp->postnoticeurl, __FILE__);
93
94         /* Post notice. */
95         $service = new StatusNet_OMB_Service_Consumer(
96                      array(OMB_ENDPOINT_POSTNOTICE => $rp->postnoticeurl));
97         try {
98             $service->setToken($rp->token, $rp->secret);
99             $service->postNotice($omb_notice);
100         } catch (Exception $e) {
101             common_log(LOG_ERR, 'Failed posting to ' . $rp->postnoticeurl);
102             common_log(LOG_ERR, 'Error status '.$e);
103             continue;
104         }
105         $posted[$rp->postnoticeurl] = true;
106
107         common_debug('Finished to ' . $rp->postnoticeurl, __FILE__);
108     }
109
110     return true;
111 }
112
113 function omb_broadcast_profile($profile)
114 {
115     $user = User::staticGet('id', $profile->id);
116
117     if (!$user) {
118         return false;
119     }
120
121     $profile = $user->getProfile();
122
123     $omb_profile = profile_to_omb_profile($user->uri, $profile, true);
124
125     /* Get remote users subscribed to this profile. */
126     $rp = new Remote_profile();
127
128     $rp->query('SELECT updateprofileurl, token, secret ' .
129                'FROM subscription JOIN remote_profile ' .
130                'ON subscription.subscriber = remote_profile.id ' .
131                'WHERE subscription.subscribed = ' . $profile->id . ' ');
132
133     $posted = array();
134
135     while ($rp->fetch()) {
136         if (isset($posted[$rp->updateprofileurl])) {
137             /* We already posted to this url. */
138             continue;
139         }
140         common_debug('Posting to ' . $rp->updateprofileurl, __FILE__);
141
142         /* Update profile. */
143         $service = new StatusNet_OMB_Service_Consumer(
144                      array(OMB_ENDPOINT_UPDATEPROFILE => $rp->updateprofileurl));
145         try {
146             $service->setToken($rp->token, $rp->secret);
147             $service->updateProfile($omb_profile);
148         } catch (Exception $e) {
149             common_log(LOG_ERR, 'Failed posting to ' . $rp->updateprofileurl);
150             common_log(LOG_ERR, 'Error status '.$e);
151             continue;
152         }
153         $posted[$rp->updateprofileurl] = true;
154
155         common_debug('Finished to ' . $rp->updateprofileurl, __FILE__);
156     }
157
158     return;
159 }
160
161 class StatusNet_OMB_Service_Consumer extends OMB_Service_Consumer {
162     public function __construct($urls)
163     {
164         $this->services       = $urls;
165         $this->datastore      = omb_oauth_datastore();
166         $this->oauth_consumer = omb_oauth_consumer();
167         $this->fetcher        = Auth_Yadis_Yadis::getHTTPFetcher();
168         $this->fetcher->timeout = intval(common_config('omb', 'timeout'));
169     }
170
171 }
172
173 function profile_to_omb_profile($uri, $profile, $force = false)
174 {
175     $omb_profile = new OMB_Profile($uri);
176     $omb_profile->setNickname($profile->nickname);
177     $omb_profile->setLicenseURL(common_config('license', 'url'));
178     if (!is_null($profile->fullname)) {
179         $omb_profile->setFullname($profile->fullname);
180     } elseif ($force) {
181         $omb_profile->setFullname('');
182     }
183     if (!is_null($profile->homepage)) {
184         $omb_profile->setHomepage($profile->homepage);
185     } elseif ($force) {
186         $omb_profile->setHomepage('');
187     }
188     if (!is_null($profile->bio)) {
189         $omb_profile->setBio($profile->bio);
190     } elseif ($force) {
191         $omb_profile->setBio('');
192     }
193     if (!is_null($profile->location)) {
194         $omb_profile->setLocation($profile->location);
195     } elseif ($force) {
196         $omb_profile->setLocation('');
197     }
198     if (!is_null($profile->profileurl)) {
199         $omb_profile->setProfileURL($profile->profileurl);
200     } elseif ($force) {
201         $omb_profile->setProfileURL('');
202     }
203
204     $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
205     if ($avatar) {
206         $omb_profile->setAvatarURL($avatar->url);
207     } elseif ($force) {
208         $omb_profile->setAvatarURL('');
209     }
210     return $omb_profile;
211 }
212
213 function notice_to_omb_notice($notice)
214 {
215     /* Create an OMB_Notice for $notice. */
216     $user = User::staticGet('id', $notice->profile_id);
217
218     if (!$user) {
219         return null;
220     }
221
222     $profile = $user->getProfile();
223
224     $omb_notice = new OMB_Notice(profile_to_omb_profile($user->uri, $profile),
225                                  $notice->uri,
226                                  $notice->content);
227     $omb_notice->setURL(common_local_url('shownotice', array('notice' =>
228                                                                  $notice->id)));
229     $omb_notice->setLicenseURL(common_config('license', 'url'));
230
231     return $omb_notice;
232 }
233 ?>