How to check if an auth token is valid before instantiating a new faunadb.Client?

Hi!

I am using FaunaDB built-in authentication and I want to use the token provided by the Login method to instantiate a new FaunaDB client.

Every time a user access my app, I do this:

const client = new faunadb.Client({
  secret: userAuthToken
});

It works fine while the token is valid. But after I do a Logout(true) (which invalidate all tokens), it returns an error as expected:
Error during invocation: [Unauthorized: unauthorized]

I want to know how can I verify if that auth token is still valid before trying to instantiate a new faunadb.Client.

All solutions seem to require a client to perform (like HasIdentity, or Identity).

Hi, this question has been asked in a related topic (no worries, you couldnā€™t know)

The short answer:

The answer is no at this point you simply get ā€˜unauthorizedā€™ if you try to use it and do something. There is no built-in method to verify the secret.

Question:

I just wanted to ask, what is your use-case? The client itself is lightweight, itā€™s just a wrapper that contains the secret and knows how to send a request to FaunaDB, it does not open a connection. So in essence, sending a request to FaunaDB that does something very simple that results in unauthorised tells you that you are logged out.

Is what you want one of the following?

  • Know if a secret is invalid without sending a request?
  • Differentiate between unauthorised due to a role vs an invalid token.

A possible workaround for the second:

Disclaimer: this only makes sense if you are trying to do something moderately complex, ignore if the question was just for convenience.

If you really need that, you could however if you want something like that take the Session approach where you actually store documents yourself for a ā€˜sessionā€™. For example:

You can easily add a ā€˜valid_untilā€™ or calculate on the fly whether the ts is still valid on such a document. In your roles you could fetch the session via Identity() , verify whether it is still valid and then get the actual account (since we keep a reference in the session) to continue your business logic.

I actually use that approach to implement refresh tokens since refresh tokens are one-use only in my implementation and I donā€™t want to just remove them. Instead I want to make sure they are not usable anymore yet they can still be used to attempt a call. That way I can detect whether someone tries to use the same refresh token twice (that typically means a token got leaked). To do that I have a document in the account_sessions collection, create a token for that document instead of directly on the account. Once the token is used for a refresh, that document is retrieved via Identity() and updated (I set the used to true). If a call happens again I could take actions such as:

  • Logout the user completely
  • Lock the users account.

Hi Brecht, thanks for the answer!

I just wanted to know if a secret is still valid or not. I have the secret stored in a cookie, so every time a user loads the site, I try to get their information using the stored secret and direct them to the logged area of the site.

If the secret is no longer valid (due to a previous Logout), then I direct the user to the Log in page.

I was just hoping something more ā€œelegantā€ maybe, returning a boolean to a IsSecretValid() method, but I can work with the unauthorized error, no problem. Thakns!

update: I wrote a reply with a follow-up question, but realized it was just a mistake in my code, so I deleted it.

You could make a call to KeyFromSecret in advance, using a client with a server-only key.

It returns an error if it fails, so you would still have to catch it.

1 Like