| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-07 14:11:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | require_once('library/openid.php'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-07 14:11:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | function openid_content(&$a) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-29 04:58:23 +00:00
										 |  |  | 	$noid = get_config('system','no_openid'); | 
					
						
							|  |  |  | 	if($noid) | 
					
						
							| 
									
										
										
										
											2011-08-02 04:02:25 +00:00
										 |  |  | 		goaway(z_root()); | 
					
						
							| 
									
										
										
										
											2010-11-29 04:58:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 13:48:11 +00:00
										 |  |  | 	logger('mod_openid ' . print_r($_REQUEST,true), LOGGER_DATA); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | 	if((x($_GET,'openid_mode')) && (x($_SESSION,'openid'))) { | 
					
						
							| 
									
										
										
										
											2012-03-19 22:10:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | 		$openid = new LightOpenID; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if($openid->validate()) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-24 20:36:51 +00:00
										 |  |  | 			#$authid = normalise_openid($_REQUEST['openid_identity']);
 | 
					
						
							|  |  |  | 			$authid = $_REQUEST['openid_identity']; | 
					
						
							| 
									
										
										
										
											2012-03-19 13:48:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 			if(! strlen($authid)) { | 
					
						
							|  |  |  | 				logger( t('OpenID protocol error. No ID returned.') . EOL); | 
					
						
							|  |  |  | 				goaway(z_root()); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-11-18 04:35:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-25 10:43:26 +00:00
										 |  |  | 			// NOTE: we search both for normalised and non-normalised form of $authid
 | 
					
						
							|  |  |  | 			//       because the normalization step was removed from setting
 | 
					
						
							|  |  |  | 			//       mod/settings.php in 8367cad so it might have left mixed
 | 
					
						
							|  |  |  | 			//       records in the user table
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							| 
									
										
										
										
											2016-02-07 14:11:34 +00:00
										 |  |  | 			$r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey` 
 | 
					
						
							| 
									
										
										
										
											2016-05-25 10:43:26 +00:00
										 |  |  | 				FROM `user` WHERE ( openid = '%s' OR openid = '%s' ) AND blocked = 0 | 
					
						
							| 
									
										
										
										
											2012-11-02 20:43:47 +00:00
										 |  |  | 				AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
 | 
					
						
							| 
									
										
										
										
											2016-05-25 10:43:26 +00:00
										 |  |  | 				dbesc($authid), dbesc(normalise_openid($authid)) | 
					
						
							| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | 			); | 
					
						
							| 
									
										
										
										
											2012-03-19 13:48:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 			if($r && count($r)) { | 
					
						
							| 
									
										
										
										
											2012-03-19 22:10:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// successful OpenID login
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 				unset($_SESSION['openid']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				require_once('include/security.php'); | 
					
						
							|  |  |  | 				authenticate_success($r[0],true,true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-07 14:11:34 +00:00
										 |  |  | 				// just in case there was no return url set 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 				// and we fell through
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-02 04:02:25 +00:00
										 |  |  | 				goaway(z_root()); | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:10:14 +00:00
										 |  |  | 			// Successful OpenID login - but we can't match it to an existing account.
 | 
					
						
							|  |  |  | 			// New registration?
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if($a->config['register_policy'] == REGISTER_CLOSED) { | 
					
						
							|  |  |  | 				notice( t('Account not found and OpenID registration is not permitted on this site.') . EOL); | 
					
						
							|  |  |  | 				goaway(z_root()); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			unset($_SESSION['register']); | 
					
						
							|  |  |  | 			$args = ''; | 
					
						
							|  |  |  | 			$attr = $openid->getAttributes(); | 
					
						
							|  |  |  | 			if(is_array($attr) && count($attr)) { | 
					
						
							|  |  |  | 				foreach($attr as $k => $v) { | 
					
						
							|  |  |  | 					if($k === 'namePerson/friendly') | 
					
						
							|  |  |  | 						$nick = notags(trim($v)); | 
					
						
							|  |  |  | 					if($k === 'namePerson/first') | 
					
						
							|  |  |  | 						$first = notags(trim($v)); | 
					
						
							|  |  |  | 					if($k === 'namePerson') | 
					
						
							|  |  |  | 						$args .= '&username=' . notags(trim($v)); | 
					
						
							|  |  |  | 					if($k === 'contact/email') | 
					
						
							|  |  |  | 						$args .= '&email=' . notags(trim($v)); | 
					
						
							|  |  |  | 					if($k === 'media/image/aspect11') | 
					
						
							|  |  |  | 						$photosq = bin2hex(trim($v)); | 
					
						
							|  |  |  | 					if($k === 'media/image/default') | 
					
						
							|  |  |  | 						$photo = bin2hex(trim($v)); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if($nick) | 
					
						
							|  |  |  | 				$args .= '&nickname=' . $nick; | 
					
						
							|  |  |  | 			elseif($first) | 
					
						
							|  |  |  | 				$args .= '&nickname=' . $first; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if($photosq) | 
					
						
							|  |  |  | 				$args .= '&photo=' . $photosq; | 
					
						
							|  |  |  | 			elseif($photo) | 
					
						
							|  |  |  | 				$args .= '&photo=' . $photo; | 
					
						
							| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 			$args .= '&openid_url=' . notags(trim($authid)); | 
					
						
							| 
									
										
										
										
											2011-03-02 04:18:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 			goaway($a->get_baseurl() . '/register' . $args); | 
					
						
							| 
									
										
										
										
											2010-12-17 00:35:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-19 22:03:09 +00:00
										 |  |  | 			// NOTREACHED
 | 
					
						
							| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	notice( t('Login failed.') . EOL); | 
					
						
							| 
									
										
										
										
											2011-08-02 04:02:25 +00:00
										 |  |  | 	goaway(z_root()); | 
					
						
							| 
									
										
										
										
											2010-11-18 01:03:27 +00:00
										 |  |  | 	// NOTREACHED
 | 
					
						
							| 
									
										
										
										
											2011-05-23 09:39:57 +00:00
										 |  |  | } |