Skip to content

Backend Integration

Backend Integration

The Auth Module is designed to work with a backend that supports the following features:

  • User Registration: Allows users to create new accounts.
  • User Login: Enables users to log in to their accounts.
  • Login with OTP: Enables users to log in to their accounts with OTP.
  • Forgot Password: Allows users to reset their passwords.
  • Password Reset: Allows users to reset their passwords.
  • Email Verification: Sends email verification to users.
  • Third Party Signup: Supports signup using third-party services such as Google Auth.

Internal Implementation

The Auth Module is designed to leverage the native functionality of each authentication provider or REST API. This approach ensures optimal performance and seamless integration with the chosen backend solution. Here’s a more detailed explanation:

Provider-Specific Implementation

Each authentication provider (such as Firebase, Supabase, or a custom REST API) comes with its own set of built-in functions and methods for handling authentication tasks. The Auth Module takes advantage of these provider-specific features by:

  1. Utilizing Native SDKs: When available, the module uses the official SDKs or libraries provided by the authentication service. This ensures that we’re using the most up-to-date and efficient methods for interacting with the backend.

  2. Adapting to Provider Strengths: Different providers may have unique strengths or specialized features. The module’s internal implementation is tailored to make the best use of these provider-specific capabilities.

REST API Integration

For custom REST API implementations, the Auth Module:

  1. Follows RESTful Principles: The module adheres to RESTful architecture principles when communicating with the backend API.

  2. Implements Custom Logic: Where necessary, custom logic is implemented to bridge any gaps between the standardized Auth Module interface and the specific requirements of the REST API.

Abstraction Layer

While the internal implementation relies on provider-specific or custom REST API functions, the Auth Module presents a consistent interface to the rest of the application. This abstraction layer:

  1. Provides Uniformity: Regardless of the underlying provider, the module exposes a uniform set of methods for authentication tasks.

  2. Facilitates Flexibility: The abstraction allows for easier switching between different authentication providers or APIs without requiring significant changes to the application code that uses the Auth Module.

By leveraging the inherent functions of each provider or API internally, the Auth Module achieves a balance between utilizing the full capabilities of the chosen backend solution and maintaining a consistent, easy-to-use interface for the rest of the application.