3 * StatusNet, the distributed open-source microblogging tool
5 * Complete adding an OpenID
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2008-2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 require_once INSTALLDIR.'/plugins/OpenID/openid.php';
37 * Complete adding an OpenID
39 * Handle the return from an OpenID verification
43 * @author Evan Prodromou <evan@status.net>
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45 * @link http://status.net/
48 class FinishaddopenidAction extends Action
53 * Handle the redirect back from OpenID confirmation
55 * Check to see if the user's logged in, and then try
56 * to use the OpenID login system.
58 * @param array $args $_REQUEST arguments
63 function handle($args)
65 parent::handle($args);
66 if (!common_logged_in()) {
67 $this->clientError(_('Not logged in.'));
74 * Try to log in using OpenID
76 * Check the OpenID for validity; potentially store it.
83 $consumer =& oid_consumer();
85 $response = $consumer->complete(common_local_url('finishaddopenid'));
87 if ($response->status == Auth_OpenID_CANCEL) {
88 $this->message(_('OpenID authentication cancelled.'));
90 } else if ($response->status == Auth_OpenID_FAILURE) {
91 // Authentication failed; display the error message.
92 $this->message(sprintf(_('OpenID authentication failed: %s'),
94 } else if ($response->status == Auth_OpenID_SUCCESS) {
96 $display = $response->getDisplayIdentifier();
97 $canonical = ($response->endpoint && $response->endpoint->canonicalID) ?
98 $response->endpoint->canonicalID : $display;
100 $sreg_resp = Auth_OpenID_SRegResponse::fromSuccessResponse($response);
103 $sreg = $sreg_resp->contents();
106 $cur =& common_current_user();
108 $other = oid_get_user($canonical);
111 if ($other->id == $cur->id) {
112 $this->message(_('You already have this OpenID!'));
114 $this->message(_('Someone else already has this OpenID.'));
119 // start a transaction
121 $cur->query('BEGIN');
123 $result = oid_link_user($cur->id, $canonical, $display);
126 $this->message(_('Error connecting user.'));
130 if (!oid_update_user($cur, $sreg)) {
131 $this->message(_('Error updating profile'));
138 $cur->query('COMMIT');
140 oid_set_last($display);
142 common_redirect(common_local_url('openidsettings'), 303);
147 * Show a failure message
149 * Something went wrong. Save the message, and show the page.
151 * @param string $msg Error message to show
156 function message($msg)
158 $this->message = $msg;
165 * @return string title
170 return _('OpenID Login');
179 function showPageNotice()
181 if ($this->message) {
182 $this->element('p', 'error', $this->message);