Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 3, 2022 12:30 pm GMT

How To Customize Super Tokens APIs.

Last month, I got a chance to explore SUPERTOKENS- an open-source alternative to Auth0, Firebase Auth, and AWS Cognito.

SuperTokens enables easy customizations - all within your codebase.

They built "API overrides" which empowers devs to disable and modify any SuperTokens API.

Auth requirements are quite varied.

Therefore any auth solution must provide the ability to customise their APIs. Each solution uses its own terminology for this feature:

  • Keycloak uses Implementing a SPI
  • Auth0 calls these Auth0 actions
  • Firebase calls these Extend using cloud functions
  • AWS Cognito uses the term Lambda triggers & Custom challenge
  • SuperTokens calls this feature Overrides

These features allow you to change the default behaviour of the auth APIs by:

  • Creating an HTTP webhook in your API layer which is then called by the auth provider

  • Uploading code to the auth provider (for example JS code for Auth0, or Java interface implementation for Keycloak) which run at specific points in the APIs logic.

  • Uploading code to the auth provider which can replace the existing APIs logic entirely (as opposed to just running at specific points in the API)

How powerful these solutions are, depends on:

  • The auth provider providing the right hook points in their API, where your custom code can run.

  • Your familiarity with the programming language you need to use to write the custom code.

  • How easily your custom code can integrate with your existing infrastructure code (for example database connection setup), and how easily it can be maintained (for example, you may need to maintain the custom code snippets in your git repo as well as on the auth providers dashboard).

In this article, we will be talking about how to customise the auth APIs provided by SuperTokens using its Override feature.

In order to understand that, we must first understand how SuperTokens fits within an app.

SuperTokens architecture:

selfhosted2x-p-800.png

Here we can see the architecture diagram for the self-hosted version of SuperTokens. On the left, we have the client (browser, mobile app) which talks to your APIs. Your API layer has your application APIs (shown as /api1/, /api2/, ..) and also APIs automatically exposed by the SuperTokens backend SDKs via our middleware function (shown as /auth/signin, /auth/signout, ...).

The SuperTokens APIs talk to the SuperTokens Core (HTTP microservice) to persist data in the database. Your application APIs can also talk to the core if needed.

Keeping this in mind, the concept of override is that you can change the behaviour of the SuperTokens APIs (exposed to the frontend) as per your requirements (all within your API layer, in the language you already use).

Think of this being similar to overrides in object-oriented programming where you have an original implementation, and you can modify its behaviour by overriding the existing functions.

You can even call the super class implementation of that function in your override function.

Overriding feature in SuperTokens:

Whilst this article is focused on a NodeJS backend, the concepts here are very similar to all the other backend SDKs provided by SuperTokens.

To override the default implementation, we must use the override config value when calling supertokens.init. Each recipe inside the recipeList, accepts an override config that can be used to change the behaviour of that recipe:

carbon-p-800.png

In the above, we have defined the skeleton code for how to override the behaviour of the EmailPassword recipe. A very similar skeleton is applicable for overriding the Session (or any other) recipe.

There are two types of override:

  • APIs: These govern how the APIs exposed by that recipe behave. For EmailPassword, these are the sign in / sign up, reset password and email verification APIs. By overriding these, you can change how these APIs behave when they are called from the frontend.

  • Functions: These are the functions that govern how the recipe itself behaves. They can be called by you manually in your APIs and they are also used in the APIs we expose to the frontend. By default, they query the SuperTokens core and return its response.

The difference between the two are:

  • API functions have access to the request and response objects depending on the web framework being used.

  • API functions can call several recipe functions or even call functions from multiple recipes. For example, the signInPOST API function in the EmailPassword recipe, calls the signIn recipe function from EmailPassword recipe and the createNewSession function from the Session recipe.

You always want to try and use the override.functions config since that will make the minimum change to the default behaviour. If the inputs to those functions dont suffice for your use case, then you should override the APIs.

In both these types of overrides, they accept the originalImplementation variable as an input and the return is an object that has the same type as the originalImplementaion.

For EmailPassword recipe, the originalImplementation object contains:

For function override (see full type def here ):

  • signIn
  • signUp
  • updateEmailOrPassword
  • createResetPasswordToken
  • resetPasswordUsingToken
  • getUserByEmail
  • getUserById

For API override (see full type def here )

  • signInPOST
  • signUpPOST
  • emailExistsGET
  • generatePasswordResetTokenPOST
  • passwordResetPOST

For Session recipe, the originalImplementation object contains:

For function override (See full type def here )

  • createNewSession
  • getAccessTokenLifeTimeMS
  • getAllSessionHandlesForUser
  • getRefreshTokenLifeTimeMS
  • getSession
  • getSessionInformation
  • refreshSession
  • revokeAllSessionsForUser
  • revokeMultipleSessions
  • revokeSession
  • updateAccessTokenPayload
  • updateSessionData

For API override (see full type def here ):

  • refreshPOST
  • signOutPOST

In the code snippet above, we are not modifying the default behaviour of any of these functions since we are simply returning the originalImplementation object. If you want to modify the signIn function, then we can do so like this:

carbon-1-p-800.png

In the above code snippet, we have provided a custom signIn function that uses the original implementations signIn function. As marked above (in TODO comments), we can write custom logic before or after calling the original implementation.

If we wish, we can even avoid calling the original implementation entirely and define our own logic. For example, if we wanted to use a different password hashing algorithm that is not supported by SuperTokens.

Special cases for modifying APIs:

Sometimes, you may want to modify the default API to:

  • Access the request object, for example, to read the origin header.

  • Send a custom reply to your frontend UI that deviates from our predefined output types

  • Disable an API we have provided entirely. For example, you may want to do this if you do not want users to self sign up in your application.

The function signature of all the API interface functions has an options parameter that contains the original request and response objects. You can read from the request object and write to the response object as you normally would in your own APIs.

For example, if you want to read the requests origin header during the sign up API, you can do it as follows:

Clean Work Place Blog Banner (11).png

As you can see above, we can access the request object using input.options.req.

Likewise, if we want to send a custom response to the frontend, we can access the response object via input.options.res.

Finally, to disable an API that we provide, you can set it to undefined as follows:

carbon-3-p-800.png

This will disable the sign up API, and requests to /auth/signup will be passed along to your APIs or yield a 404.

Advantages of the override method:

  • Make modifications in the language and web framework you are already familiar with, within your own backend layer. This allows you to reuse your code for connecting to your database, sending a custom reply, logging requests and responses, sending analytics events, handling errors etc. Furthermore, since you already know the language and the web framework, the learning curve is minimal.

  • Easier maintainability: Some auth providers require you to upload code onto their dashboard. This means you need to make sure that changes to that version of the code in your git repo are reflected on the auth providers dashboard (and vice versa). This can be a headache, especially with larger team sizes. With SuperTokens, all the mods you will ever need will live in the same codebase as all of your other backend code - SuperTokens is just another library you use.

  • Flexibility in customisations: If you noticed, we dont provide any special hook points (like pre-sign up or post sign up callbacks). You simply create your own implementation based on the original implementation. In fact, you can even copy the original implementations code and paste that in your own implementation if required. Hence, your modifications can be at any point in the API logic. In turn, this provides maximum flexibility.

  • Flexibility in integrations: Auth APIs have to interact with several other services like those used for sending emails or SMSs, spam/anomaly detection or rate-limiting. Since the APIs are all within your own backend layer, you can use any such service(s) in the APIs we provide - you are not limited to the ones we (eventually will) support.

Conclusion:

In the post, we saw how we can use the Overrides feature to modify the behaviour of any of the auth APIs exposed by SuperTokens. Whilst this blog focuses on NodeJS, the concept is the same in all the other SDKs we provide.

That was it for this blog.

I hope you learned something new today. If you did, please like/share so that it reaches others as well.

In case you have any questions please join our discord server.

We are building an open-source alternative to Auth0, Firebase Auth & AWS Cognito.

We are 100% open source.

You can easily customize any part of the user auth logic within your own backend layer.

Note: this features is available for the self-hosting version of ST as well.

Follow @ supertokensio for more technical content.

I wrote a blog post in Nov 2021 in which I explained everything what I see in ST check here .

Let me know how you will use SuperTokens to create your next project.

Connect with me on Twitter

If you like this.

I encourage you all to sign up for my newsletter.

It's free. You can ask me your questions via email.

Check out old editions here: The 2-1-1 Developer Growth Newsletter by Ankur

Also if you want to talk about SuperTokens, have questions please shoot a DM on Twitter here .


Original Link: https://dev.to/tyaga001/how-to-customize-super-tokens-apis-1gm6

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To