4 require_once('include/security.php');
6 function nuke_session() {
7 unset($_SESSION['authenticated']);
8 unset($_SESSION['uid']);
9 unset($_SESSION['visitor_id']);
10 unset($_SESSION['administrator']);
11 unset($_SESSION['cid']);
12 unset($_SESSION['theme']);
13 unset($_SESSION['page_flags']);
22 if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-params'))) || ($_POST['auth-params'] !== 'login'))) {
24 if(((x($_POST,'auth-params')) && ($_POST['auth-params'] === 'logout')) || ($a->module === 'logout')) {
26 // process logout request
27 call_hooks("logging_out");
29 info( t('Logged out.') . EOL);
33 if(x($_SESSION,'visitor_id') && (! x($_SESSION,'uid'))) {
34 $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
35 intval($_SESSION['visitor_id'])
42 if(x($_SESSION,'uid')) {
44 // already logged in user returning
46 $check = get_config('system','paranoia');
47 // extra paranoia - if the IP changed, log them out
48 if($check && ($_SESSION['addr'] != $_SERVER['REMOTE_ADDR'])) {
53 $r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
54 FROM `user` WHERE `uid` = %d AND `blocked` = 0 AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
55 intval($_SESSION['uid'])
63 authenticate_success($r[0]);
68 if(isset($_SESSION)) {
72 if((x($_POST,'password')) && strlen($_POST['password']))
73 $encrypted = hash('whirlpool',trim($_POST['password']));
75 if((x($_POST,'openid_url')) && strlen($_POST['openid_url']) ||
76 (x($_POST,'username')) && strlen($_POST['username'])) {
78 $noid = get_config('system','no_openid');
80 $openid_url = trim((strlen($_POST['openid_url'])?$_POST['openid_url']:$_POST['username']) );
82 // validate_url alters the calling parameter
84 $temp_string = $openid_url;
86 // if it's an email address or doesn't resolve to a URL, fail.
88 if(($noid) || (strpos($temp_string,'@')) || (! validate_url($temp_string))) {
90 notice( t('Login failed.') . EOL);
95 // Otherwise it's probably an openid.
98 require_once('library/openid.php');
99 $openid = new LightOpenID;
100 $openid->identity = $openid_url;
101 $_SESSION['openid'] = $openid_url;
103 $openid->returnUrl = $a->get_baseurl(true) . '/openid';
104 goaway($openid->authUrl());
105 } catch (Exception $e) {
106 notice( t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.').'<br /><br >'. t('The error message was:').' '.$e->getMessage());
112 if((x($_POST,'auth-params')) && $_POST['auth-params'] === 'login') {
117 'username' => trim($_POST['username']),
118 'password' => trim($_POST['password']),
119 'authenticated' => 0,
120 'user_record' => null
125 * A plugin indicates successful login by setting 'authenticated' to non-zero value and returning a user record
126 * Plugins should never set 'authenticated' except to indicate success - as hooks may be chained
127 * and later plugins should not interfere with an earlier one that succeeded.
131 call_hooks('authenticate', $addon_auth);
133 if(($addon_auth['authenticated']) && (count($addon_auth['user_record']))) {
134 $record = $addon_auth['user_record'];
138 // process normal login request
140 $r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
141 FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' )
142 AND `password` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
143 dbesc(trim($_POST['username'])),
144 dbesc(trim($_POST['username'])),
151 if((! $record) || (! count($record))) {
152 logger('authenticate: failed login attempt: ' . notags(trim($_POST['username'])) . ' from IP ' . $_SERVER['REMOTE_ADDR']);
153 notice( t('Login failed.') . EOL );
157 // if we haven't failed up this point, log them in.
159 authenticate_success($record, true, true);
163 // Returns an array of group id's this contact is a member of.
164 // This array will only contain group id's related to the uid of this
165 // DFRN contact. They are *not* neccessarily unique across the entire site.
168 if(! function_exists('init_groups_visitor')) {
169 function init_groups_visitor($contact_id) {
171 $r = q("SELECT `gid` FROM `group_member`
172 WHERE `contact-id` = %d ",
177 $groups[] = $rr['gid'];