]> git.mxchange.org Git - friendica.git/blob - include/auth.php
4f3d0d31bb023562ca076bd5d4e8d0a6883d791c
[friendica.git] / include / auth.php
1 <?php
2 require_once('include/security.php');
3 require_once('include/datetime.php');
4
5 function nuke_session() {
6
7         new_cookie(0); // make sure cookie is deleted on browser close, as a security measure
8         session_unset();
9 }
10
11 // When the "Friendica" cookie is set, take the value to authenticate and renew the cookie.
12 if(isset($_COOKIE["Friendica"])) {
13         $data = json_decode($_COOKIE["Friendica"]);
14         if (isset($data->uid)) {
15                 $r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
16                 FROM `user` WHERE `uid` = %d AND `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
17                         intval($data->uid)
18                 );
19
20                 if ($r) {
21                         // Renew the cookie
22                         new_cookie(604800, json_encode(array("uid" => $r[0]["uid"], "ip" => $_SERVER['REMOTE_ADDR'])));
23
24                         // Do the authentification if not done by now
25                         if(!isset($_SESSION) OR !isset($_SESSION['authenticated'])) {
26                                 authenticate_success($r[0]);
27
28                                 if (get_config('system','paranoia'))
29                                         $_SESSION['addr'] = $data->ip;
30                         }
31                 }
32         }
33 }
34
35
36 // login/logout
37
38 if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-params'))) || ($_POST['auth-params'] !== 'login'))) {
39
40         if(((x($_POST,'auth-params')) && ($_POST['auth-params'] === 'logout')) || ($a->module === 'logout')) {
41
42                 // process logout request
43                 call_hooks("logging_out");
44                 nuke_session();
45                 info(t('Logged out.').EOL);
46                 goaway(z_root());
47         }
48
49         if(x($_SESSION,'visitor_id') && (! x($_SESSION,'uid'))) {
50                 $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
51                         intval($_SESSION['visitor_id'])
52                 );
53                 if(count($r)) {
54                         $a->contact = $r[0];
55                 }
56         }
57
58         if(x($_SESSION,'uid')) {
59
60                 // already logged in user returning
61
62                 $check = get_config('system','paranoia');
63                 // extra paranoia - if the IP changed, log them out
64                 if($check && ($_SESSION['addr'] != $_SERVER['REMOTE_ADDR'])) {
65                         logger('Session address changed. Paranoid setting in effect, blocking session. '
66                                 . $_SESSION['addr'].' != '.$_SERVER['REMOTE_ADDR']);
67                         nuke_session();
68                         goaway(z_root());
69                 }
70
71                 $r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
72                 FROM `user` WHERE `uid` = %d AND `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
73                         intval($_SESSION['uid'])
74                 );
75
76                 if(! count($r)) {
77                         nuke_session();
78                         goaway(z_root());
79                 }
80
81                 // Make sure to refresh the last login time for the user if the user
82                 // stays logged in for a long time, e.g. with "Remember Me"
83                 $login_refresh = false;
84                 if(! x($_SESSION['last_login_date'])) {
85                         $_SESSION['last_login_date'] = datetime_convert('UTC','UTC');
86                 }
87                 if(strcmp(datetime_convert('UTC','UTC','now - 12 hours'), $_SESSION['last_login_date']) > 0) {
88
89                         $_SESSION['last_login_date'] = datetime_convert('UTC','UTC');
90                         $login_refresh = true;
91                 }
92                 authenticate_success($r[0], false, false, $login_refresh);
93         }
94 } else {
95
96         session_unset();
97
98         if((x($_POST,'password')) && strlen($_POST['password']))
99                 $encrypted = hash('whirlpool',trim($_POST['password']));
100         else {
101                 if((x($_POST,'openid_url')) && strlen($_POST['openid_url']) ||
102                    (x($_POST,'username')) && strlen($_POST['username'])) {
103
104                         $noid = get_config('system','no_openid');
105
106                         $openid_url = trim((strlen($_POST['openid_url'])?$_POST['openid_url']:$_POST['username']));
107
108                         // validate_url alters the calling parameter
109
110                         $temp_string = $openid_url;
111
112                         // if it's an email address or doesn't resolve to a URL, fail.
113
114                         if(($noid) || (strpos($temp_string,'@')) || (! validate_url($temp_string))) {
115                                 $a = get_app();
116                                 notice(t('Login failed.').EOL);
117                                 goaway(z_root());
118                                 // NOTREACHED
119                         }
120
121                         // Otherwise it's probably an openid.
122
123                         try {
124                                 require_once('library/openid.php');
125                                 $openid = new LightOpenID;
126                                 $openid->identity = $openid_url;
127                                 $_SESSION['openid'] = $openid_url;
128                                 $a = get_app();
129                                 $openid->returnUrl = $a->get_baseurl(true).'/openid';
130                                 goaway($openid->authUrl());
131                         } catch (Exception $e) {
132                                 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());
133                         }
134                         // NOTREACHED
135                 }
136         }
137
138         if((x($_POST,'auth-params')) && $_POST['auth-params'] === 'login') {
139
140                 $record = null;
141
142                 $addon_auth = array(
143                         'username' => trim($_POST['username']),
144                         'password' => trim($_POST['password']),
145                         'authenticated' => 0,
146                         'user_record' => null
147                 );
148
149                 /**
150                  *
151                  * A plugin indicates successful login by setting 'authenticated' to non-zero value and returning a user record
152                  * Plugins should never set 'authenticated' except to indicate success - as hooks may be chained
153                  * and later plugins should not interfere with an earlier one that succeeded.
154                  *
155                  */
156
157                 call_hooks('authenticate', $addon_auth);
158
159                 if(($addon_auth['authenticated']) && (count($addon_auth['user_record']))) {
160                         $record = $addon_auth['user_record'];
161                 } else {
162
163                         // process normal login request
164
165                         $r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
166                                 FROM `user` WHERE (`email` = '%s' OR `nickname` = '%s')
167                                 AND `password` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
168                                 dbesc(trim($_POST['username'])),
169                                 dbesc(trim($_POST['username'])),
170                                 dbesc($encrypted)
171                         );
172                         if(count($r))
173                                 $record = $r[0];
174                 }
175
176                 if (!$record || !count($record)) {
177                         logger('authenticate: failed login attempt: '.notags(trim($_POST['username'])).' from IP '.$_SERVER['REMOTE_ADDR']);
178                         notice(t('Login failed.').EOL);
179                         goaway(z_root());
180                 }
181
182                 // If the user specified to remember the authentication, then set a cookie
183                 // that expires after one week (the default is when the browser is closed).
184                 // The cookie will be renewed automatically.
185                 // The week ensures that sessions will expire after some inactivity.
186                 if($_POST['remember'])
187                         new_cookie(604800, json_encode(array("uid" => $r[0]["uid"], "ip" => $_SERVER['REMOTE_ADDR'])));
188                 else
189                         new_cookie(0); // 0 means delete on browser exit
190
191                 // if we haven't failed up this point, log them in.
192
193                 $_SESSION['last_login_date'] = datetime_convert('UTC','UTC');
194                 authenticate_success($record, true, true);
195         }
196 }
197
198 function new_cookie($time, $value = "") {
199
200         if ($time != 0)
201                 $time = $time + time();
202
203         setcookie("Friendica", $value, $time, "/", "",
204                 (get_config('system', 'ssl_policy') == SSL_POLICY_FULL), true);
205
206         return;
207 }