]> git.mxchange.org Git - friendica.git/blob - include/auth.php
Merge remote branch 'upstream/master'
[friendica.git] / include / auth.php
1 <?php
2
3
4 require_once('include/security.php');
5
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']);
14 }
15
16
17 // login/logout 
18
19
20
21
22 if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-params'))) || ($_POST['auth-params'] !== 'login'))) {
23
24         if(((x($_POST,'auth-params')) && ($_POST['auth-params'] === 'logout')) || ($a->module === 'logout')) {
25         
26                 // process logout request
27                 call_hooks("logging_out");
28                 nuke_session();
29                 info( t('Logged out.') . EOL);
30                 goaway(z_root());
31         }
32
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'])
36                 );
37                 if(count($r)) {
38                         $a->contact = $r[0];
39                 }
40         }
41
42         if(x($_SESSION,'uid')) {
43
44                 // already logged in user returning
45
46                 $check = get_config('system','paranoia');
47                 // extra paranoia - if the IP changed, log them out
48                 if($check && ($_SESSION['addr'] != $_SERVER['REMOTE_ADDR'])) {
49                         nuke_session();
50                         goaway(z_root());
51                 }
52
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'])
56                 );
57
58                 if(! count($r)) {
59                         nuke_session();
60                         goaway(z_root());
61                 }
62
63                 authenticate_success($r[0]);
64         }
65 }
66 else {
67
68         if(isset($_SESSION)) {
69                 nuke_session();
70         }
71
72         if((x($_POST,'password')) && strlen($_POST['password']))
73                 $encrypted = hash('whirlpool',trim($_POST['password']));
74         else {
75                 if((x($_POST,'openid_url')) && strlen($_POST['openid_url']) ||
76                    (x($_POST,'username')) && strlen($_POST['username'])) {
77
78                         $noid = get_config('system','no_openid');
79
80                         $openid_url = trim((strlen($_POST['openid_url'])?$_POST['openid_url']:$_POST['username']) );
81
82                         // validate_url alters the calling parameter
83
84                         $temp_string = $openid_url;
85
86                         // if it's an email address or doesn't resolve to a URL, fail.
87
88                         if(($noid) || (strpos($temp_string,'@')) || (! validate_url($temp_string))) {
89                                 $a = get_app();
90                                 notice( t('Login failed.') . EOL);
91                                 goaway(z_root());
92                                 // NOTREACHED
93                         }
94
95                         // Otherwise it's probably an openid.
96
97                         try {
98                         require_once('library/openid.php');
99                         $openid = new LightOpenID;
100                         $openid->identity = $openid_url;
101                         $_SESSION['openid'] = $openid_url;
102                         $a = get_app();
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());
107                         }
108                         // NOTREACHED
109                 }
110         }
111
112         if((x($_POST,'auth-params')) && $_POST['auth-params'] === 'login') {
113
114                 $record = null;
115
116                 $addon_auth = array(
117                         'username' => trim($_POST['username']), 
118                         'password' => trim($_POST['password']),
119                         'authenticated' => 0,
120                         'user_record' => null
121                 );
122
123                 /**
124                  *
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.
128                  *
129                  */
130
131                 call_hooks('authenticate', $addon_auth);
132
133                 if(($addon_auth['authenticated']) && (count($addon_auth['user_record']))) {
134                         $record = $addon_auth['user_record'];
135                 }
136                 else {
137
138                         // process normal login request
139
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'])),
145                                 dbesc($encrypted)
146                         );
147                         if(count($r))
148                                 $record = $r[0];
149                 }
150
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 );
154                         goaway(z_root());
155                 }
156
157                 // if we haven't failed up this point, log them in.
158
159                 authenticate_success($record, true, true);
160         }
161 }
162
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. 
166
167
168 if(! function_exists('init_groups_visitor')) {
169 function init_groups_visitor($contact_id) {
170         $groups = array();
171         $r = q("SELECT `gid` FROM `group_member` 
172                 WHERE `contact-id` = %d ",
173                 intval($contact_id)
174         );
175         if(count($r)) {
176                 foreach($r as $rr)
177                         $groups[] = $rr['gid'];
178         }
179         return $groups;
180 }}
181
182