]> git.mxchange.org Git - friendica.git/blobdiff - include/auth.php
basic file upload/attach
[friendica.git] / include / auth.php
index e8cee3918c5d368938c2fd94d2014e1f63dec4b4..fd80a63e221a553e6b484ec19c84e99e61297af3 100644 (file)
@@ -24,10 +24,19 @@ if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-p
                // process logout request
 
                nuke_session();
-               notice( t('Logged out.') . EOL);
+               info( t('Logged out.') . EOL);
                goaway($a->get_baseurl());
        }
 
+       if(x($_SESSION,'visitor_id') && (! x($_SESSION,'uid'))) {
+               $r = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
+                       intval($_SESSION['visitor_id'])
+               );
+               if(count($r)) {
+                       $a->contact = $r[0];
+               }
+       }
+
        if(x($_SESSION,'uid')) {
 
                // already logged in user returning
@@ -191,9 +200,17 @@ else {
                $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $record['nickname'];
                $_SESSION['addr'] = $_SERVER['REMOTE_ADDR'];
 
-               notice( t("Welcome back ") . $record['username'] . EOL);
                $a->user = $record;
 
+               if($a->user['login_date'] === '0000-00-00 00:00:00') {
+                       $_SESSION['return_url'] = 'profile_photo/new';
+                       $a->module = 'profile_photo';
+                       info( t("Welcome ") . $a->user['username'] . EOL);
+                       info( t('Please upload a profile photo.') . EOL);
+               }
+               else
+                       info( t("Welcome back ") . $a->user['username'] . EOL);
+
                if(strlen($a->user['timezone'])) {
                        date_default_timezone_set($a->user['timezone']);
                        $a->timezone = $a->user['timezone'];
@@ -214,8 +231,12 @@ else {
                        $a->cid = $r[0]['id'];
                        $_SESSION['cid'] = $a->cid;
                }
-               q("UPDATE `user` SET `login_date` = '%s' WHERE `uid` = %d LIMIT 1",
+
+               $l = get_language();
+
+               q("UPDATE `user` SET `login_date` = '%s', `language` = '%s' WHERE `uid` = %d LIMIT 1",
                        dbesc(datetime_convert()),
+                       dbesc($l),
                        intval($_SESSION['uid'])
                );