This project implements a simple authentication system using NestJS and Supabase. It allows users to authenticate via One-Time Passwords (OTP). The system utilizes Supabase for database management and JWT for token handling.
To run this project, ensure you have the following:
- Node.js (version 16 or higher)
- NestJS CLI (optional, for project management)
- Supabase project set up
.env
file with required configuration variables (explained below)
-
Clone the repository:
git clone <repository-url> cd <project-folder>
-
Install dependencies:
npm install
-
Set up your
.env
file with the following variables:PORT= SUPABASE_URL=<your-supabase-url> SUPABASE_KEY=<your-supabase-anon-key>
-
Run the development server:
npm run start:dev
-
Access the app at
http://localhost:3000
. (You can change the port at .env)
The project follows a modular structure:
auth
module: Handles user authentication and OTP verification.supabase
module: Manages configuration and interactions with Supabase.get-user.guard
: Custom guard for protecting routes.get-user.decorator
: Access user data.transform.interceptor
: Constant response for all responses (errors & success).
This document describes the available API endpoints for authentication in this project. These endpoints are designed to handle OTP-based login and token management using Supabase and JWT.
- URL:
/auth/signin
- Method:
POST
- Description: Initiates the OTP-based login process by sending an OTP to the user's phone number.
- Request Body:
{ "email": "string" }
- Response:
{ "success": true, "message": "Operation Successfully Completed.", "data": null }
- URL:
/auth/verify
- Method:
POST
- Description: Verifies the OTP provided by the user and issues an access token and a refresh token.
- Request Body:
{ "email": "string", "code": "number" }
- Response:
{ "success": true, "message": "Operation Successfully Completed.", "data": { "message": "OTP verified successfully.", "user": { "id": "", "email": "", "emailConfirmed": "2024-12-22T17:51:06.911461Z", "role": "" }, "session": { "accessToken": "", "refreshToken": "", "expiresAt": 1734893466 } } }
- URL:
/auth/refreshToken
- Method:
POST
- Description: Refreshes the access token using a valid refresh token.
- Request Body:
{ "refreshToken": "string" }
- Response:
{ "success": true, "message": "Operation Successfully Completed.", "data": { "message": "OTP verified successfully.", "user": { "id": "", "email": "", "emailConfirmed": "2024-12-22T17:51:06.911461Z", "role": "" }, "session": { "accessToken": "", "refreshToken": "", "expiresAt": 1734893466 } } }
Handles interactions with the Supabase API and database:
- Initializes the Supabase client using environment variables.
- Provides helper methods to query or interact with Supabase.
The JwtAuthGuard
ensures only authenticated users can access protected routes. It verifies the Authorization
header containing the JWT.
This project is licensed under the MIT License.