leonmak / firebase-auth-hasura-jwt

Firebase Auth + Hasura JWT

Home Page:https://blog.hasura.io/authentication-and-authorization-using-hasura-and-firebase/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Firebase Auth + Hasura JWT

Barebones example to show how to have Firebase Auth integrated with Hasura JWT mode.

Firebase Auth

Firebase has few ways of implementing custom JWT claims in Firebase Auth:

  1. Have firebase generate the JWTs, then customize them from your backend using Firebase Admin SDK [docs]
  2. Use Firebase cloud functions, and listen to user creation events to add custom claims to generated JWT [docs]
  3. Have your own backend server, which generates custom tokens [docs]
  4. Have your own backend scripts (not initiated by the client) to update user custom claims [docs]

Add custom claims in Firebase

In this example, we are choosing the option 2 from above. But this can be done via any of the above methods. Firebase docs have extensive documentation on how to achieve this via different methods.

This example is adapted from this guide.

Pre-requisites

This example assumes that you already have Firebase Auth setup for your app.

Add the cloud function

Deploy the cloud function inside functions/ folder:

Add .firebaserc

{
  "projects": {
    "default": "YOUR_PROJECT"
  }
}

Add firebase.json

{
  "hosting": {
    "public": "public"
  }
}
firebase deploy --only functions

// notifications is key name of exports object in functions/index.js
gcloud beta functions deploy notifications \
       --runtime nodejs8 --trigger-http \
       --set-env-vars="FCM_SERVER_KEY=598193652385"

Customize the code to add your logic of assigning roles in the custom claims.

This cloud function is using the onCreate trigger. So whenever a user is created, this function is run.

Configure Hasura to start in JWT mode

Change to your project id

HASURA_GRAPHQL_JWT_SECRET: {"type":"RS256", "jwk_url": "https://www.googleapis.com/service_accounts/v1/jwk/securetoken@system.gserviceaccount.com", "audience": "YOUR_PROJECT", "issuer": "https://securetoken.google.com/YOUR_PROJECT"}

Sending JWT to Hasura

Generate uuid from the firebase uid (using uuid_v5: SHA-1 hashing algorithm)

Now, whenever you make a request to Hasura GraphQL engine (as an authenticated user), send the id_token in Authorization header:

Authorization: Bearer <user-uuid>

About

Firebase Auth + Hasura JWT

https://blog.hasura.io/authentication-and-authorization-using-hasura-and-firebase/


Languages

Language:JavaScript 100.0%