5 if((x($_SESSION,'authenticated')) && (! ($_POST['auth-params'] == 'login'))) {
6 if($_POST['auth-params'] == 'logout' || $a->module == "logout") {
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 notice( t('Logged out.') . EOL);
14 goaway($a->get_baseurl());
16 if(x($_SESSION,'uid')) {
17 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
18 intval($_SESSION['uid']));
19 if($r === NULL || (! count($r))) {
20 goaway($a->get_baseurl());
23 $_SESSION['theme'] = $a->user['theme'];
24 if(strlen($a->user['timezone']))
25 date_default_timezone_set($a->user['timezone']);
27 $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname'];
29 $r = q("SELECT * FROM `contact` WHERE `uid` = %s AND `self` = 1 LIMIT 1",
30 intval($_SESSION['uid']));
33 $a->cid = $r[0]['id'];
34 $_SESSION['cid'] = $a->cid;
40 unset($_SESSION['authenticated']);
41 unset($_SESSION['uid']);
42 unset($_SESSION['visitor_id']);
43 unset($_SESSION['administrator']);
44 unset($_SESSION['cid']);
45 unset($_SESSION['theme']);
47 $encrypted = hash('whirlpool',trim($_POST['password']));
49 if((x($_POST,'auth-params')) && $_POST['auth-params'] == 'login') {
50 $r = q("SELECT * FROM `user`
51 WHERE `email` = '%s' AND `password` = '%s' AND `blocked` = 0 AND `verified` = 1 LIMIT 1",
52 dbesc(trim($_POST['login-name'])),
54 if(($r === false) || (! count($r))) {
55 notice( t('Login failed.') . EOL );
56 goaway($a->get_baseurl());
58 $_SESSION['uid'] = $r[0]['uid'];
59 $_SESSION['theme'] = $r[0]['theme'];
60 $_SESSION['authenticated'] = 1;
61 $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname'];
63 notice( t("Welcome back ") . $r[0]['username'] . EOL);
65 if(strlen($a->user['timezone']))
66 date_default_timezone_set($a->user['timezone']);
68 $r = q("SELECT * FROM `contact` WHERE `uid` = %s AND `self` = 1 LIMIT 1",
69 intval($_SESSION['uid']));
71 $a->cid = $r[0]['id'];
72 $_SESSION['cid'] = $a->cid;
79 // Returns an array of group id's this contact is a member of.
80 // This array will only contain group id's related to the uid of this
81 // DFRN contact. They are *not* neccessarily unique across the entire site.
84 if(! function_exists('init_groups_visitor')) {
85 function init_groups_visitor($contact_id) {
87 $r = q("SELECT `gid` FROM `group_member`
88 WHERE `contact-id` = %d ",
93 $groups[] = $rr['gid'];