]> git.mxchange.org Git - friendica.git/blob - include/auth.php
sql typo in auto-friend with D*
[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
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                         require_once('library/openid.php');
98                         $openid = new LightOpenID;
99                         $openid->identity = $openid_url;
100                         $_SESSION['openid'] = $openid_url;
101                         $a = get_app();
102                         $openid->returnUrl = $a->get_baseurl() . '/openid'; 
103
104                         $r = q("SELECT `uid` FROM `user` WHERE `openid` = '%s' LIMIT 1",
105                                 dbesc($openid_url)
106                         );
107                         if(count($r)) { 
108                                 // existing account
109                                 goaway($openid->authUrl());
110                                 // NOTREACHED   
111                         }
112                         else {
113                                 if($a->config['register_policy'] == REGISTER_CLOSED) {
114                                         $a = get_app();
115                                         notice( t('Login failed.') . EOL);
116                                         goaway(z_root());
117                                         // NOTREACHED
118                                 }
119                                 // new account
120                                 $_SESSION['register'] = 1;
121                                 $openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
122                                 $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
123                                 goaway($openid->authUrl());
124                                 // NOTREACHED   
125                         }
126                 }
127         }
128         if((x($_POST,'auth-params')) && $_POST['auth-params'] === 'login') {
129
130                 $record = null;
131
132                 $addon_auth = array(
133                         'username' => trim($_POST['username']), 
134                         'password' => trim($_POST['password']),
135                         'authenticated' => 0,
136                         'user_record' => null
137                 );
138
139                 /**
140                  *
141                  * A plugin indicates successful login by setting 'authenticated' to non-zero value and returning a user record
142                  * Plugins should never set 'authenticated' except to indicate success - as hooks may be chained
143                  * and later plugins should not interfere with an earlier one that succeeded.
144                  *
145                  */
146
147                 call_hooks('authenticate', $addon_auth);
148
149                 if(($addon_auth['authenticated']) && (count($addon_auth['user_record']))) {
150                         $record = $addon_auth['user_record'];
151                 }
152                 else {
153
154                         // process normal login request
155
156                         $r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`  
157                                 FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' ) 
158                                 AND `password` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
159                                 dbesc(trim($_POST['username'])),
160                                 dbesc(trim($_POST['username'])),
161                                 dbesc($encrypted)
162                         );
163                         if(count($r))
164                                 $record = $r[0];
165                 }
166
167                 if((! $record) || (! count($record))) {
168                         logger('authenticate: failed login attempt: ' . notags(trim($_POST['username']))); 
169                         notice( t('Login failed.') . EOL );
170                         goaway(z_root());
171                 }
172
173                 // if we haven't failed up this point, log them in.
174
175                 authenticate_success($record, true, true);
176         }
177 }
178
179 // Returns an array of group id's this contact is a member of.
180 // This array will only contain group id's related to the uid of this
181 // DFRN contact. They are *not* neccessarily unique across the entire site. 
182
183
184 if(! function_exists('init_groups_visitor')) {
185 function init_groups_visitor($contact_id) {
186         $groups = array();
187         $r = q("SELECT `gid` FROM `group_member` 
188                 WHERE `contact-id` = %d ",
189                 intval($contact_id)
190         );
191         if(count($r)) {
192                 foreach($r as $rr)
193                         $groups[] = $rr['gid'];
194         }
195         return $groups;
196 }}
197
198