3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 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 require_once(INSTALLDIR.'/plugins/OpenID/User_openid.php');
24 require_once('Auth/OpenID.php');
25 require_once('Auth/OpenID/Consumer.php');
26 require_once('Auth/OpenID/SReg.php');
27 require_once('Auth/OpenID/MySQLStore.php');
29 # About one year cookie expiry
31 define('OPENID_COOKIE_EXPIRY', round(365.25 * 24 * 60 * 60));
32 define('OPENID_COOKIE_KEY', 'lastusedopenid');
38 # Can't be called statically
40 $conn = $user->getDatabaseConnection();
41 $store = new Auth_OpenID_MySQLStore($conn);
46 function oid_consumer()
49 $consumer = new Auth_OpenID_Consumer($store);
53 function oid_clear_last()
58 function oid_set_last($openid_url)
60 common_set_cookie(OPENID_COOKIE_KEY,
62 time() + OPENID_COOKIE_EXPIRY);
65 function oid_get_last()
67 if (empty($_COOKIE[OPENID_COOKIE_KEY])) {
70 $openid_url = $_COOKIE[OPENID_COOKIE_KEY];
71 if ($openid_url && strlen($openid_url) > 0) {
78 function oid_link_user($id, $canonical, $display)
81 $oid = new User_openid();
83 $oid->canonical = $canonical;
84 $oid->display = $display;
85 $oid->created = DB_DataObject_Cast::dateTime();
87 if (!$oid->insert()) {
88 $err = PEAR::getStaticProperty('DB_DataObject','lastError');
89 common_debug('DB error ' . $err->code . ': ' . $err->message, __FILE__);
96 function oid_get_user($openid_url)
99 $oid = User_openid::staticGet('canonical', $openid_url);
101 $user = User::staticGet('id', $oid->user_id);
106 function oid_check_immediate($openid_url, $backto=null)
109 $action = $_REQUEST['action'];
110 $args = common_copy_args($_GET);
111 unset($args['action']);
112 $backto = common_local_url($action, $args);
114 common_debug('going back to "' . $backto . '"', __FILE__);
116 common_ensure_session();
118 $_SESSION['openid_immediate_backto'] = $backto;
119 common_debug('passed-in variable is "' . $backto . '"', __FILE__);
120 common_debug('session variable is "' . $_SESSION['openid_immediate_backto'] . '"', __FILE__);
122 oid_authenticate($openid_url,
127 function oid_authenticate($openid_url, $returnto, $immediate=false)
130 $consumer = oid_consumer();
133 common_server_error(_('Cannot instantiate OpenID consumer object.'));
137 common_ensure_session();
139 $auth_request = $consumer->begin($openid_url);
141 // Handle failure status return values.
142 if (!$auth_request) {
143 return _('Not a valid OpenID.');
144 } else if (Auth_OpenID::isFailure($auth_request)) {
145 return sprintf(_('OpenID failure: %s'), $auth_request->message);
148 $sreg_request = Auth_OpenID_SRegRequest::build(// Required
160 $auth_request->addExtension($sreg_request);
163 $trust_root = common_root_url(true);
164 $process_url = common_local_url($returnto);
166 if ($auth_request->shouldSendRedirect()) {
167 $redirect_url = $auth_request->redirectURL($trust_root,
170 if (!$redirect_url) {
171 } else if (Auth_OpenID::isFailure($redirect_url)) {
172 return sprintf(_('Could not redirect to server: %s'), $redirect_url->message);
174 common_redirect($redirect_url, 303);
177 // Generate form markup and render it.
178 $form_id = 'openid_message';
179 $form_html = $auth_request->formMarkup($trust_root, $process_url,
180 $immediate, array('id' => $form_id));
182 # XXX: This is cheap, but things choke if we don't escape ampersands
183 # in the HTML attributes
185 $form_html = preg_replace('/&/', '&', $form_html);
187 // Display an error if the form markup couldn't be generated;
188 // otherwise, render the HTML.
189 if (Auth_OpenID::isFailure($form_html)) {
190 common_server_error(sprintf(_('Could not create OpenID form: %s'), $form_html->message));
192 $action = new AutosubmitAction(); // see below
193 $action->form_html = $form_html;
194 $action->form_id = $form_id;
195 $action->prepare(array('action' => 'autosubmit'));
196 $action->handle(array('action' => 'autosubmit'));
201 # Half-assed attempt at a module-private function
203 function _oid_print_instructions()
205 common_element('div', 'instructions',
206 _('This form should automatically submit itself. '.
207 'If not, click the submit button to go to your '.
208 'OpenID provider.'));
211 # update a user from sreg parameters
213 function oid_update_user(&$user, &$sreg)
216 $profile = $user->getProfile();
218 $orig_profile = clone($profile);
220 if ($sreg['fullname'] && strlen($sreg['fullname']) <= 255) {
221 $profile->fullname = $sreg['fullname'];
224 if ($sreg['country']) {
225 if ($sreg['postcode']) {
226 # XXX: use postcode to get city and region
227 # XXX: also, store postcode somewhere -- it's valuable!
228 $profile->location = $sreg['postcode'] . ', ' . $sreg['country'];
230 $profile->location = $sreg['country'];
234 # XXX save language if it's passed
235 # XXX save timezone if it's passed
237 if (!$profile->update($orig_profile)) {
238 common_server_error(_('Error saving the profile.'));
242 $orig_user = clone($user);
244 if ($sreg['email'] && Validate::email($sreg['email'], true)) {
245 $user->email = $sreg['email'];
248 if (!$user->update($orig_user)) {
249 common_server_error(_('Error saving the user.'));
256 class AutosubmitAction extends Action
258 var $form_html = null;
261 function handle($args)
263 parent::handle($args);
269 return _('OpenID Auto-Submit');
272 function showContent()
274 $this->raw($this->form_html);
275 $this->element('script', null,
276 '$(document).ready(function() { ' .
277 ' $(\'#'. $this->form_id .'\').submit(); '.