]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OpenID/openid.php
Merge branch 'openid-fix' into 0.9.x
[quix0rs-gnu-social.git] / plugins / OpenID / openid.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.'/plugins/OpenID/User_openid.php');
23
24 require_once('Auth/OpenID.php');
25 require_once('Auth/OpenID/Consumer.php');
26 require_once('Auth/OpenID/Server.php');
27 require_once('Auth/OpenID/SReg.php');
28 require_once('Auth/OpenID/MySQLStore.php');
29
30 # About one year cookie expiry
31
32 define('OPENID_COOKIE_EXPIRY', round(365.25 * 24 * 60 * 60));
33 define('OPENID_COOKIE_KEY', 'lastusedopenid');
34
35 function oid_store()
36 {
37     static $store = null;
38     if (!$store) {
39         # Can't be called statically
40         $user = new User();
41         $conn = $user->getDatabaseConnection();
42         $store = new Auth_OpenID_MySQLStore($conn);
43     }
44     return $store;
45 }
46
47 function oid_consumer()
48 {
49     $store = oid_store();
50     $consumer = new Auth_OpenID_Consumer($store);
51     return $consumer;
52 }
53
54 function oid_server()
55 {
56     $store = oid_store();
57     $server = new Auth_OpenID_Server($store, common_local_url('openidserver'));
58     return $server;
59 }
60
61 function oid_clear_last()
62 {
63     oid_set_last('');
64 }
65
66 function oid_set_last($openid_url)
67 {
68     common_set_cookie(OPENID_COOKIE_KEY,
69                      $openid_url,
70                      time() + OPENID_COOKIE_EXPIRY);
71 }
72
73 function oid_get_last()
74 {
75     if (empty($_COOKIE[OPENID_COOKIE_KEY])) {
76         return null;
77     }
78     $openid_url = $_COOKIE[OPENID_COOKIE_KEY];
79     if ($openid_url && strlen($openid_url) > 0) {
80         return $openid_url;
81     } else {
82         return null;
83     }
84 }
85
86 function oid_link_user($id, $canonical, $display)
87 {
88
89     $oid = new User_openid();
90     $oid->user_id = $id;
91     $oid->canonical = $canonical;
92     $oid->display = $display;
93     $oid->created = DB_DataObject_Cast::dateTime();
94
95     if (!$oid->insert()) {
96         $err = PEAR::getStaticProperty('DB_DataObject','lastError');
97         return false;
98     }
99
100     return true;
101 }
102
103 function oid_get_user($openid_url)
104 {
105     $user = null;
106     $oid = User_openid::staticGet('canonical', $openid_url);
107     if ($oid) {
108         $user = User::staticGet('id', $oid->user_id);
109     }
110     return $user;
111 }
112
113 function oid_check_immediate($openid_url, $backto=null)
114 {
115     if (!$backto) {
116         $action = $_REQUEST['action'];
117         $args = common_copy_args($_GET);
118         unset($args['action']);
119         $backto = common_local_url($action, $args);
120     }
121
122     common_ensure_session();
123
124     $_SESSION['openid_immediate_backto'] = $backto;
125
126     oid_authenticate($openid_url,
127                      'finishimmediate',
128                      true);
129 }
130
131 function oid_authenticate($openid_url, $returnto, $immediate=false)
132 {
133
134     $consumer = oid_consumer();
135
136     if (!$consumer) {
137         // TRANS: OpenID plugin server error.
138         common_server_error(_m('Cannot instantiate OpenID consumer object.'));
139         return false;
140     }
141
142     common_ensure_session();
143
144     $auth_request = $consumer->begin($openid_url);
145
146     // Handle failure status return values.
147     if (!$auth_request) {
148         common_log(LOG_ERR, __METHOD__ . ": mystery fail contacting $openid_url");
149         // TRANS: OpenID plugin message. Given when an OpenID is not valid.
150         return _m('Not a valid OpenID.');
151     } else if (Auth_OpenID::isFailure($auth_request)) {
152         common_log(LOG_ERR, __METHOD__ . ": OpenID fail to $openid_url: $auth_request->message");
153         // TRANS: OpenID plugin server error. Given when the OpenID authentication request fails.
154         // TRANS: %s is the failure message.
155         return sprintf(_m('OpenID failure: %s'), $auth_request->message);
156     }
157
158     $sreg_request = Auth_OpenID_SRegRequest::build(// Required
159                                                    array(),
160                                                    // Optional
161                                                    array('nickname',
162                                                          'email',
163                                                          'fullname',
164                                                          'language',
165                                                          'timezone',
166                                                          'postcode',
167                                                          'country'));
168
169     if ($sreg_request) {
170         $auth_request->addExtension($sreg_request);
171     }
172
173     $requiredTeam = common_config('openid', 'required_team');
174     if ($requiredTeam) {
175         // LaunchPad OpenID extension
176         $team_request = new Auth_OpenID_TeamsRequest(array($requiredTeam));
177         if ($team_request) {
178             $auth_request->addExtension($team_request);
179         }
180     }
181
182     $trust_root = common_root_url(true);
183     $process_url = common_local_url($returnto);
184
185     // Net::OpenID::Server as used on LiveJournal appears to incorrectly
186     // reject POST requests for data submissions that OpenID 1.1 specs
187     // as GET, although 2.0 allows them:
188     // https://rt.cpan.org/Public/Bug/Display.html?id=42202
189     //
190     // Our OpenID libraries would have switched in the redirect automatically
191     // if it were detecting 1.1 compatibility mode, however the server is
192     // advertising itself as 2.0-compatible, so we got switched to the POST.
193     //
194     // Since the GET should always work anyway, we'll just take out the
195     // autosubmitter for now.
196     // 
197     //if ($auth_request->shouldSendRedirect()) {
198         $redirect_url = $auth_request->redirectURL($trust_root,
199                                                    $process_url,
200                                                    $immediate);
201         if (!$redirect_url) {
202         } else if (Auth_OpenID::isFailure($redirect_url)) {
203             // TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected.
204             // TRANS: %s is the failure message.
205             return sprintf(_m('Could not redirect to server: %s'), $redirect_url->message);
206         } else {
207             common_redirect($redirect_url, 303);
208         }
209     /*
210     } else {
211         // Generate form markup and render it.
212         $form_id = 'openid_message';
213         $form_html = $auth_request->formMarkup($trust_root, $process_url,
214                                                $immediate, array('id' => $form_id));
215
216         # XXX: This is cheap, but things choke if we don't escape ampersands
217         # in the HTML attributes
218
219         $form_html = preg_replace('/&/', '&amp;', $form_html);
220
221         // Display an error if the form markup couldn't be generated;
222         // otherwise, render the HTML.
223         if (Auth_OpenID::isFailure($form_html)) {
224             // TRANS: OpenID plugin server error if the form markup could not be generated.
225             // TRANS: %s is the failure message.
226             common_server_error(sprintf(_m('Could not create OpenID form: %s'), $form_html->message));
227         } else {
228             $action = new AutosubmitAction(); // see below
229             $action->form_html = $form_html;
230             $action->form_id = $form_id;
231             $action->prepare(array('action' => 'autosubmit'));
232             $action->handle(array('action' => 'autosubmit'));
233         }
234     }
235     */
236 }
237
238 # Half-assed attempt at a module-private function
239
240 function _oid_print_instructions()
241 {
242     common_element('div', 'instructions',
243                    // TRANS: OpenID plugin user instructions.
244                    _m('This form should automatically submit itself. '.
245                       'If not, click the submit button to go to your '.
246                       'OpenID provider.'));
247 }
248
249 /**
250  * Update a user from sreg parameters
251  * @param User $user
252  * @param array $sreg fields from OpenID sreg response
253  * @access private
254  */
255 function oid_update_user($user, $sreg)
256 {
257     $profile = $user->getProfile();
258
259     $orig_profile = clone($profile);
260
261     if (!empty($sreg['fullname']) && strlen($sreg['fullname']) <= 255) {
262         $profile->fullname = $sreg['fullname'];
263     }
264
265     if (!empty($sreg['country'])) {
266         if ($sreg['postcode']) {
267             # XXX: use postcode to get city and region
268             # XXX: also, store postcode somewhere -- it's valuable!
269             $profile->location = $sreg['postcode'] . ', ' . $sreg['country'];
270         } else {
271             $profile->location = $sreg['country'];
272         }
273     }
274
275     # XXX save language if it's passed
276     # XXX save timezone if it's passed
277
278     if (!$profile->update($orig_profile)) {
279         // TRANS: OpenID plugin server error.
280         common_server_error(_m('Error saving the profile.'));
281         return false;
282     }
283
284     $orig_user = clone($user);
285
286     if (!empty($sreg['email']) && Validate::email($sreg['email'], common_config('email', 'check_domain'))) {
287         $user->email = $sreg['email'];
288     }
289
290     if (!$user->update($orig_user)) {
291         // TRANS: OpenID plugin server error.
292         common_server_error(_m('Error saving the user.'));
293         return false;
294     }
295
296     return true;
297 }
298
299 function oid_assert_allowed($url)
300 {
301     $blacklist = common_config('openid', 'blacklist');
302     $whitelist = common_config('openid', 'whitelist');
303
304     if (empty($blacklist)) {
305         $blacklist = array();
306     }
307
308     if (empty($whitelist)) {
309         $whitelist = array();
310     }
311
312     foreach ($blacklist as $pattern) {
313         if (preg_match("/$pattern/", $url)) {
314             common_log(LOG_INFO, "Matched OpenID blacklist pattern {$pattern} with {$url}");
315             foreach ($whitelist as $exception) {
316                 if (preg_match("/$exception/", $url)) {
317                     common_log(LOG_INFO, "Matched OpenID whitelist pattern {$exception} with {$url}");
318                     return;
319                 }
320             }
321             // TRANS: OpenID plugin client exception (403).
322             throw new ClientException(_m("Unauthorized URL used for OpenID login."), 403);
323         }
324     }
325
326     return;
327 }
328
329 /**
330  * Check the teams available in the given OpenID response
331  * Using Launchpad's OpenID teams extension
332  *
333  * @return boolean whether this user is acceptable
334  */
335 function oid_check_teams($response)
336 {
337     $requiredTeam = common_config('openid', 'required_team');
338     if ($requiredTeam) {
339         $team_resp = new Auth_OpenID_TeamsResponse($response);
340         if ($team_resp) {
341             $teams = $team_resp->getTeams();
342         } else {
343             $teams = array();
344         }
345
346         $match = in_array($requiredTeam, $teams);
347         $is = $match ? 'is' : 'is not';
348         common_log(LOG_DEBUG, "Remote user $is in required team $requiredTeam: [" . implode(', ', $teams) . "]");
349
350         return $match;
351     }
352
353     return true;
354 }
355
356 class AutosubmitAction extends Action
357 {
358     var $form_html = null;
359     var $form_id = null;
360
361     function handle($args)
362     {
363         parent::handle($args);
364         $this->showPage();
365     }
366
367     function title()
368     {
369         // TRANS: Title
370         return _m('OpenID Login Submission');
371     }
372
373     function showContent()
374     {
375         $this->raw('<p style="margin: 20px 80px">');
376         // @fixme this would be better using standard CSS class, but the present theme's a bit scary.
377         $this->element('img', array('src' => Theme::path('images/icons/icon_processing.gif', 'base'),
378                                     // for some reason the base CSS sets <img>s as block display?!
379                                     'style' => 'display: inline'));
380         // TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider.
381         $this->text(_m('Requesting authorization from your login provider...'));
382         $this->raw('</p>');
383         $this->raw('<p style="margin-top: 60px; font-style: italic">');
384         // TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider.
385         $this->text(_m('If you are not redirected to your login provider in a few seconds, try pushing the button below.'));
386         $this->raw('</p>');
387         $this->raw($this->form_html);
388     }
389
390     function showScripts()
391     {
392         parent::showScripts();
393         $this->element('script', null,
394                        'document.getElementById(\'' . $this->form_id . '\').submit();');
395     }
396 }