]> git.mxchange.org Git - friendica.git/blobdiff - mod/openid.php
redirect to profile photo upload on very first login
[friendica.git] / mod / openid.php
index 91efbbbc421313e405e6eb2f3acdecf665f2e111..c3c6c11e9e8f9a02a34ca84b240d5e4bb5a05ba1 100644 (file)
@@ -70,13 +70,33 @@ function openid_content(&$a) {
                        $_SESSION['page_flags'] = $r[0]['page-flags'];
                        $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname'];
 
-                       notice( t("Welcome back ") . $r[0]['username'] . EOL);
                        $a->user = $r[0];
-                       if(strlen($a->user['timezone']))
+
+                       if($a->user['login_date'] === '0000-00-00 00:00:00') {
+                               $_SESSION['return_url'] = 'profile_photo/new';
+                               $a->module = 'profile_photo';
+                               notice( t("Welcome ") . $a->user['username'] . EOL);
+                               notice( t('Please upload a profile photo.') . EOL);
+                       }
+                       else
+                               notice( t("Welcome back ") . $a->user['username'] . EOL);
+
+
+                       if(strlen($a->user['timezone'])) {
                                date_default_timezone_set($a->user['timezone']);
+                               $a->timezone = $a->user['timezone'];
+                       }
+
+                       $r = q("SELECT `uid`,`username` FROM `user` WHERE `password` = '%s' AND `email` = '%s'",
+                               dbesc($a->user['password']),
+                               dbesc($a->user['email'])
+                       );
+                       if(count($r))
+                               $a->identities = $r;
 
-                       $r = q("SELECT * FROM `contact` WHERE `uid` = %s AND `self` = 1 LIMIT 1",
-                               intval($_SESSION['uid']));
+                       $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
+                               intval($_SESSION['uid'])
+                       );
                        if(count($r)) {
                                $a->contact = $r[0];
                                $a->cid = $r[0]['id'];