]> git.mxchange.org Git - friendica.git/blobdiff - include/auth.php
make it much easier to debug friend acceptance issues
[friendica.git] / include / auth.php
index 973aabe65489f3ebb8a8a7f028a243dfb32a8c47..10d0df64551b7d6212b21f653361b53aa86c3c36 100644 (file)
@@ -2,60 +2,83 @@
 
 // login/logout 
 
-if((x($_SESSION,'authenticated')) && (! ($_POST['auth-params'] == 'login'))) {
-       if($_POST['auth-params'] == 'logout' || $a->module == "logout") {
+if((x($_SESSION,'authenticated')) && (! ($_POST['auth-params'] === 'login'))) {
+
+       if($_POST['auth-params'] === 'logout' || $a->module === 'logout') {
+       
+               // process logout request
+
                unset($_SESSION['authenticated']);
                unset($_SESSION['uid']);
                unset($_SESSION['visitor_id']);
                unset($_SESSION['administrator']);
                unset($_SESSION['cid']);
-               $_SESSION['sysmsg'] = "Logged out." . EOL;
+               unset($_SESSION['theme']);
+               notice( t('Logged out.') . EOL);
                goaway($a->get_baseurl());
        }
+
        if(x($_SESSION,'uid')) {
+
+               // already logged in user returning
+
                $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
-                       intval($_SESSION['uid']));
-               if($r === NULL || (! count($r))) {
+                       intval($_SESSION['uid'])
+               );
+
+               if(! count($r)) {
                        goaway($a->get_baseurl());
                }
+
+               // initialise user environment
+
                $a->user = $r[0];
+               $_SESSION['theme'] = $a->user['theme'];
                if(strlen($a->user['timezone']))
                        date_default_timezone_set($a->user['timezone']);
 
+               $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
+
                $r = q("SELECT * FROM `contact` WHERE `uid` = %s AND `self` = 1 LIMIT 1",
                        intval($_SESSION['uid']));
                if(count($r)) {
+                       $a->contact = $r[0];
                        $a->cid = $r[0]['id'];
                        $_SESSION['cid'] = $a->cid;
+
                }
        }
 }
 else {
+
        unset($_SESSION['authenticated']);
        unset($_SESSION['uid']);
        unset($_SESSION['visitor_id']);
        unset($_SESSION['administrator']);
        unset($_SESSION['cid']);
+       unset($_SESSION['theme']);
+       unset($_SESSION['my_url']);
+
        $encrypted = hash('whirlpool',trim($_POST['password']));
 
-       if((x($_POST,'auth-params')) && $_POST['auth-params'] == 'login') {
+       if((x($_POST,'auth-params')) && $_POST['auth-params'] === 'login') {
+
+               // process login request
+
                $r = q("SELECT * FROM `user` 
-                       WHERE `email` = '%s' AND `password` = '%s' LIMIT 1",
+                       WHERE `email` = '%s' AND `password` = '%s' AND `blocked` = 0 AND `verified` = 1 LIMIT 1",
                        dbesc(trim($_POST['login-name'])),
                        dbesc($encrypted));
                if(($r === false) || (! count($r))) {
-                       $_SESSION['sysmsg'] = 'Login failed.' . EOL ;
+                       notice( t('Login failed.') . EOL );
                        goaway($a->get_baseurl());
                }
                $_SESSION['uid'] = $r[0]['uid'];
-               $_SESSION['admin'] = $r[0]['admin'];
+               $_SESSION['theme'] = $r[0]['theme'];
                $_SESSION['authenticated'] = 1;
-               if(x($r[0],'nickname'))
-                       $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname'];
-               else
-                       $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['uid'];
+               $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname'];
 
-               $_SESSION['sysmsg'] = "Welcome back " . $r[0]['username'] . EOL;
+               notice( t("Welcome back ") . $r[0]['username'] . EOL);
                $a->user = $r[0];
                if(strlen($a->user['timezone']))
                        date_default_timezone_set($a->user['timezone']);
@@ -66,28 +89,26 @@ else {
                        $a->cid = $r[0]['id'];
                        $_SESSION['cid'] = $a->cid;
                }
-
-
+               if(($a->module !== 'home') && isset($_SESSION['return_url']))
+                       goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
        }
 }
 
-// Returns an array of group names this contact is a member of.
-// Since contact-id's are unique and each "belongs" to a given user uid,
-// this array will only contain group names related to the uid of this
+// Returns an array of group id's this contact is a member of.
+// This array will only contain group id's related to the uid of this
 // DFRN contact. They are *not* neccessarily unique across the entire site. 
 
 
 if(! function_exists('init_groups_visitor')) {
 function init_groups_visitor($contact_id) {
        $groups = array();
-       $r = q("SELECT `group_member`.`gid`, `group`.`name` 
-               FROM `group_member` LEFT JOIN `group` ON `group_member`.`gid` = `group`.`id` 
-               WHERE `group_member`.`contact-id` = %d ",
+       $r = q("SELECT `gid` FROM `group_member` 
+               WHERE `contact-id` = %d ",
                intval($contact_id)
        );
        if(count($r)) {
                foreach($r as $rr)
-                       $groups[] = $rr['name'];
+                       $groups[] = $rr['gid'];
        }
        return $groups;
 }}