3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, 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('LACONICA')) { exit(1); }
22 require_once(INSTALLDIR.'/lib/openid.php');
24 class FinishaddopenidAction extends Action
27 function handle($args)
29 parent::handle($args);
30 if (!common_logged_in()) {
31 common_user_error(_('Not logged in.'));
40 $consumer =& oid_consumer();
42 $response = $consumer->complete(common_local_url('finishaddopenid'));
44 if ($response->status == Auth_OpenID_CANCEL) {
45 $this->message(_('OpenID authentication cancelled.'));
47 } else if ($response->status == Auth_OpenID_FAILURE) {
48 // Authentication failed; display the error message.
49 $this->message(sprintf(_('OpenID authentication failed: %s'), $response->message));
50 } else if ($response->status == Auth_OpenID_SUCCESS) {
52 $display = $response->getDisplayIdentifier();
53 $canonical = ($response->endpoint && $response->endpoint->canonicalID) ?
54 $response->endpoint->canonicalID : $display;
56 $sreg_resp = Auth_OpenID_SRegResponse::fromSuccessResponse($response);
59 $sreg = $sreg_resp->contents();
62 $cur =& common_current_user();
63 $other = oid_get_user($canonical);
66 if ($other->id == $cur->id) {
67 $this->message(_('You already have this OpenID!'));
69 $this->message(_('Someone else already has this OpenID.'));
78 $result = oid_link_user($cur->id, $canonical, $display);
81 $this->message(_('Error connecting user.'));
85 if (!oid_update_user($cur, $sreg)) {
86 $this->message(_('Error updating profile'));
93 $cur->query('COMMIT');
95 oid_set_last($display);
97 common_redirect(common_local_url('openidsettings'));
101 function message($msg)
103 common_show_header(_('OpenID Login'));
104 common_element('p', null, $msg);
105 common_show_footer();