DEV Community

Cover image for Firebase Google Sign-up vs Sign-In
Vinit Gupta
Vinit Gupta

Posted on

2 1

Firebase Google Sign-up vs Sign-In

Recently while making a Blog Website, I faced an issue.
I only wanted to allow existing users to Sign In using Firebase Google Authentication.

But there are no separate functions available to do SignUp and SignIn. After lots of errors and talking with the community, I came up with a work around.

Google Authentication Function

Firebase is really kind to provide us with a lot of different Authentication functions. I have not used all of them, as Google Authentication is all we need right?
Below is a short demo of the authentication functions :

var provider = new firebase.auth.GoogleAuthProvider();
firebase.auth()
      .signInWithPopup(provider)
      .then((result) => { 
  var loggedInUser = result.user;
  console.log(loggedInUser);
  }
 }).catch((error) => {
  var errorMessage = error.message;
  console.error(errorMessage)
 });
}
Enter fullscreen mode Exit fullscreen mode

This is simple right? But wait.
Even new users can Sign In.

So how do we get past it?

Check if the user is new

Firebase provides us the result object on successful Google Sign In that has properties including :

  • credentials
  • user
  • additionalUserInfo

Among these, for identifying new users, the 3rd one is of importance to us.

If we go ahead and log the result.additionalUserInfo we get the following data :

 {
   isNewUser: false,
   profile:{
     email: "vinitman35@gmail.com",
     family_name: "Gupta",
     given_name: "Vinit",
     granted_scopes:      
      "https://www.googleapis.com/auth/userinfo.email, 
      https://www.googleapis.com/auth/userinfo.profile",
     id: "some__id",
     locale: "en",
     name: "Vinit Gupta",
     picture: "https://lh3.googleusercontent.com/a-/AOh14GjmIVT8JkOa- 6uOlTrBMayyqyZktgj3Hh0wDYiEHtU=s96-c",
    verified_email: true
   }
  [[Prototype]]: Object
providerId: "google.com"
 }
Enter fullscreen mode Exit fullscreen mode

As you can see, the isNewUser is set to false for a user that has already been signed-up.

We can use this property to check if the user is Signing In for the first time

Prevent New User from Signing In

Now that we have a way to differentiate the old and new users, we can move ahead.

To prevent a new user, we will take the following steps:

  1. Let the user Sign In ( I know we have to prevent this, just bear with me ๐Ÿ™‡โ€โ™‚๏ธ๐Ÿ™‡โ€โ™‚๏ธ
  2. Check if the result.additionalUserInfo.isNewUser returns true or false.
  3. If its false, then we can proceed, no issues.
  4. If its true, we have to do 2 things :
    • Delete the user
    • Sign Out the user from the browser

Implementation of the above process :

var provider = new firebase.auth.GoogleAuthProvider(); 

    function handleGoogleSignIn(){

      firebase.auth()
      .signInWithPopup(provider)
      .then((result) => {
  var loggedInUser = result.user;
  const isNewUser = result.additionalUserInfo.isNewUser;

  if(isNewUser){
    //delete user if the user is new
     loggedInUser.delete().then(()=>{
      firebase.auth().signOut().then(() => {
        console.log("Signed Out!")
        alert("Please Sign Up as an Admin First!!")
      })
     });
  }
  console.log("is new user :", result.additionalUserInfo.isNewUser)
//redirect to home page
else {
    console.log("is new user :", result.additionalUserInfo.isNewUser)
    window.location = "/";
  }
}).catch((error) => {
  var errorMessage = error.message;
  console.error(errorMessage)
});
  }
Enter fullscreen mode Exit fullscreen mode

Hope you enjoyed this simple hack!! Follow for more such weekly tricks๐Ÿ‘จโ€๐Ÿ’ป๐Ÿ‘ฉโ€๐Ÿ’ป

Top comments (3)

Collapse
 
srishjais profile image

A slight correction,
const isNewUser = result._tokenResponse.isNewUser;
//currently isNewUser is within _tokenResponse obj

Thanks ,I am trying to solve this issue from tomorrow .After searching since 1 day ,I am able to solve it now

Collapse
 
amanzx4 profile image
AmanZrx4 โ€ข

Very helpful, thanks for this bro.

Collapse
 
thevinitgupta profile image
Vinit Gupta โ€ข

Thanks for you comment.

Playwright CLI Flags Tutorial

5 Playwright CLI Flags That Will Transform Your Testing Workflow

  • 0:56 --last-failed: Zero in on just the tests that failed in your previous run
  • 2:34 --only-changed: Test only the spec files you've modified in git
  • 4:27 --repeat-each: Run tests multiple times to catch flaky behavior before it reaches production
  • 5:15 --forbid-only: Prevent accidental test.only commits from breaking your CI pipeline
  • 5:51 --ui --headed --workers 1: Debug visually with browser windows and sequential test execution

Learn how these powerful command-line options can save you time, strengthen your test suite, and streamline your Playwright testing experience. Click on any timestamp above to jump directly to that section in the tutorial!

Watch Full Video ๐Ÿ“น๏ธ

๐Ÿ‘‹ Kindness is contagious

Please leave a โค๏ธ or a friendly comment on this post if you found it helpful!

Okay