@sailfin/oidc
is a fully-featured OpenID Connect (OIDC) client library designed for seamless integration with OIDC providers, including Sailfin's OIDC provider. It enables user authentication, token management, and secure interaction with APIs that support the OIDC standard.
This library is built for enterprise-grade TypeScript and Node.js applications, adhering to modern TypeScript practices. It supports multiple grant types, token validation, user information retrieval, and more.
- Design Philosophy
- Features
- Installation
- Usage
- Example: NestJS Integration
- Configuration Options
- API Reference
- Error Handling
- Testing
- Contributing
- Support
- License
To ensure a lightweight and dependency-free experience, @sailfin/oidc
incorporates several internally built utility functions. These utilities handle complex operations such as DER encoding, key conversions, and asynchronous control flows without relying on external packages, providing a seamless and efficient integration for your applications. These utilities are designed to be modular and can be used independently in other projects, although they are primarily intended for internal use within the library and are not exposed as part of the public API. Feel free to explore the src/utils
directory to learn more about these utilities.
- Authorization URL Generation: Supports PKCE and state validation.
- Token Management: Access, refresh, and ID tokens handling.
- User Info Retrieval: Fetch user details securely using the userinfo endpoint.
- Device Authorization Flow: Simplified device code handling and polling.
- Token Introspection and Revocation: Validate and manage tokens efficiently.
- Discovery Endpoint Support: Dynamically fetches and caches OIDC configuration.
- Flexible Configuration: Works with any OIDC-compliant provider.
Install the package using npm:
npm install @sailfin/oidc
or with Yarn:
yarn add @sailfin/oidc
Here's an example of initializing and using the @sailfin/oidc
client:
import {
Client,
Scopes,
GrantType,
StorageMechanism,
SessionMode,
LogLevel,
SameSite,
} from '@sailfin/oidc';
const isProduction = process.env.NODE_ENV === 'production';
// Create a new OIDC Client instance
const oidcClient = new Client({
clientId: 'your-client-id',
clientSecret: 'your-client-secret',
redirectUri: 'https://your-app.com/callback',
discoveryUrl: 'https://issuer.com/.well-known/openid-configuration',
scopes: [Scopes.OpenId, Scopes.Profile, Scopes.Email],
grantType: GrantType.AuthorizationCode,
session: {
mode: SessionMode.HYBRID,
serverStorage: StorageMechanism.MEMORY,
clientStorage: StorageMechanism.COOKIE,
useSilentRenew: true, // Enable silent renewal of tokens
ttl: 3600000, // Session TTL of 1 hour (in milliseconds)
cookie: {
name: 'auth.sid', // Default session ID cookie name
secret: process.env.SESSION_SECRET, // Replace with a secure secret in production
options: {
secure: isProduction ? true : false, // Restrict cookies to HTTPS
httpOnly: true, // Prevent JavaScript access to cookies
sameSite: isProduction ? SameSite.NONE : SameSite.LAX, // Use Strict SameSite for CSRF protection
path: '/', // Default cookie path
maxAge: maxAge,
domain: isProduction ? process.env.DOMAIN : '.localhost',
encode: encodeURIComponent, // Use default URL encoding for cookies
},
},
},
logging: {
logLevel: LogLevel.INFO, // or DEBUG, WARN, ERROR
},
});
(async () => {
// 1) Generate the Authorization URL
const { url, state } = await oidcClient.getAuthorizationUrl();
console.log('Visit this URL to authenticate:', url);
// 2) When the user returns from the authorization server with a code,
// call handleRedirect with the code and state.
//
// This context object (IStoreContext) must include request & response
// objects so the session can be started/stored.
//
// For example, in an Express-based app, you might do:
// const context = { request: req, response: res };
await oidcClient.handleRedirect('the-auth-code', state, {
request: mockRequest,
response: mockResponse,
});
// 3) Retrieve user info
const userInfo = await oidcClient.getUserInfo();
console.log('User Info:', userInfo);
// 4) You can now retrieve tokens on subsequent requests, introspect, etc.
const accessToken = await oidcClient.getAccessToken();
console.log('Access Token:', accessToken);
})();
By default, the client uses an in-memory session store (StorageMechanism.MEMORY). For cookie-based session management—useful when running in stateless environments—you can set:
session: {
mode: SessionMode.CLIENT,
clientStorage: StorageMechanism.COOKIE,
cookie: {
name: 'oidcSession',
options: {
secure: true,
httpOnly: true,
sameSite: SameSite.STRICT,
path: '/',
maxAge: 3600,
},
},
},
Your request and response objects must be passed to the relevant methods (such as handleRedirect) so the session can be created, updated, or destroyed.
You may also implement your own session store by conforming to the ISessionStore interface and injecting it via the session.store property.
Retrieve, introspect, or revoke tokens with ease:
// Get the current Access Token (refreshes automatically if needed)
const accessToken = await oidcClient.getAccessToken();
console.log('Access Token:', accessToken);
// Clear stored tokens
await oidcClient.clearTokens({ request, response });
console.log('Tokens cleared.');
Suitable for devices or environments with limited input capabilities:
// Step 1: Start device authorization
const { device_code, user_code, verification_uri } =
await oidcClient.startDeviceAuthorization();
console.log(`Please go to ${verification_uri} and enter the code ${user_code}`);
// Step 2: Poll for device token
// Provide an optional context if you need to start a session upon success
await oidcClient.pollDeviceToken(
device_code,
/* interval */ 5,
/* timeout */ 60000,
{
request: mockRequest,
response: mockResponse,
},
);
console.log('Device successfully authorized!');
// Now you can fetch tokens or user info
const tokens = await oidcClient.getTokens();
console.log('Tokens:', tokens);
// Introspect a token
const introspection = await oidcClient.introspectToken('some-access-token');
console.log('Token introspection result:', introspection);
// Revoke a token (access or refresh)
await oidcClient.revokeToken('some-refresh-token', 'refresh_token');
console.log('Token revoked.');
To initiate the OIDC logout flow (often used to sign the user out of the identity provider session):
const logoutUrl = await oidcClient.logout(/* optional idTokenHint */);
console.log('Logout URL:', logoutUrl);
// Typically, you would redirect the user to this URL:
res.redirect(logoutUrl);
Customize the logging level:
oidcClient.setLogLevel('debug');
Below is an example showing how you can integrate @sailfin/oidc with a NestJS application. It demonstrates:
- Providing the Oidc Client in a Nest module (via a custom provider).
- Initializing the client in main.ts and applying the middleware(oidcClient).
- Using decorators like @OidcLogin and @OidcCallback in a controller to trigger login and handle callback flows.
// oidc.provider.ts
import {
Client,
IClientConfig,
GrantType,
PkceMethod,
ResponseType,
ResponseMode,
Scopes,
StorageMechanism,
SameSite,
SessionMode,
LogLevel,
} from '@sailfin/oidc';
import { Provider, Logger } from '@nestjs/common';
export const OIDC_CLIENT_PROVIDER: Provider = {
provide: 'OidcClient',
useFactory: async (): Promise<Client> => {
const isProduction = process.env.NODE_ENV === 'production';
const config: IClientConfig = {
clientId: process.env.SSO_CLIENT_ID,
clientSecret: process.env.SSO_CLIENT_SECRET,
redirectUri:
process.env.SSO_CALLBACK_URL ||
'http://localhost:3001/auth/sso/callback',
postLogoutRedirectUri:
process.env.SSO_POST_LOGOUT_REDIRECT_URI || 'http://localhost:3000/',
scopes: [
Scopes.OpenId,
Scopes.Profile,
Scopes.Email,
Scopes.OfflineAccess,
],
discoveryUrl:
process.env.SSO_DISCOVERY_URL ||
'https://login.sailfin.io/oidc/endpoint/default/.well-known/openid-configuration',
grantType: GrantType.AuthorizationCode,
pkce: true,
pkceMethod: PkceMethod.S256,
responseType: ResponseType.Code,
responseMode: ResponseMode.Query,
session: {
mode: SessionMode.HYBRID,
serverStorage: StorageMechanism.MEMORY,
clientStorage: StorageMechanism.COOKIE,
useSilentRenew: true,
ttl: 3600000, // 1 hour in milliseconds
cookie: {
name: 'auth.sid',
secret: process.env.SESSION_SECRET,
options: {
// IMPORTANT: set secure: false for local dev on HTTP,
// or secure: true if you're running HTTPS.
secure: isProduction ? true : false,
httpOnly: true,
sameSite: isProduction ? SameSite.NONE : SameSite.LAX,
path: '/',
maxAge: 86400 * 1000,
domain: isProduction ? process.env.DOMAIN : '.localhost',
encode: encodeURIComponent,
},
},
},
logging: {
logLevel: LogLevel.DEBUG,
},
};
const logger = new Logger('OIDCClientProvider');
const oidcClient = new Client(config);
// Optionally do additional async setup here...
logger.log('OIDC Client initialized successfully');
return oidcClient;
},
};
// app.module.ts
import { Module } from '@nestjs/common';
import { OIDC_CLIENT_PROVIDER } from './oidc.provider';
@Module({
providers: [OIDC_CLIENT_PROVIDER],
exports: [OIDC_CLIENT_PROVIDER],
})
export class AppModule {}
// main.ts
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { Logger } from '@nestjs/common';
import { NestExpressApplication } from '@nestjs/platform-express';
import { Client, middleware } from '@sailfin/oidc';
async function bootstrap() {
const logger = new Logger('Auth-Service');
const app = await NestFactory.create<NestExpressApplication>(AppModule);
// Example CORS setup if needed...
app.enableCors({
origin: ['http://localhost:3000'],
credentials: true,
exposedHeaders: ['set-cookie'],
});
// Retrieve the OIDC client from the Nest IoC container
const oidcClient = app.get<Client>('OidcClient');
// Apply the OIDC middleware
app.use(middleware(oidcClient));
await app.listen(3001);
logger.log(`Listening on port 3001`);
}
bootstrap();
// auth.controller.ts
import {
Controller,
Get,
Inject,
Logger,
HttpStatus,
Res,
Req,
Post,
Body,
} from '@nestjs/common';
import { ApiTags, ApiOperation, ApiResponse } from '@nestjs/swagger';
import {
Client,
IRequest,
IResponse,
OidcCallback,
OidcLogin,
} from '@sailfin/oidc';
@ApiTags('Auth')
@Controller('auth')
export class AuthController {
private readonly logger = new Logger(AuthController.name);
constructor(
@Inject('OidcClient')
private readonly client: Client,
) {}
@ApiOperation({ summary: 'Redirect to SSO login' })
@ApiResponse({
status: HttpStatus.FOUND,
description: 'Redirects to SSO login URL',
})
@Get('sso/login')
@OidcLogin()
login(@Req() req: IRequest, @Res() res: IResponse): void {
// The decorator handles redirect automatically
}
@Get('sso/callback')
@OidcCallback({ postLoginRedirectUri: 'http://localhost:3000' })
async handleOAuthCallback(@Req() req: IRequest, @Res() res: IResponse) {
// The OidcCallback decorator has already exchanged the code for tokens
// and stored user info in req.session.user. If you do nothing here,
// it will redirect to http://localhost:3000 by default.
}
@Post('test')
async testEndpoint(@Req() req, @Res() res) {
// Example endpoint that requires tokens from session
const user = req.session?.user;
res.json({ message: 'Hello, user!', user });
}
}
Below are the required and optional parameters for initializing the Client
:
Parameter | Type | Required | Description |
---|---|---|---|
clientId |
string |
Yes | Client ID registered with the OIDC provider. |
clientSecret |
string |
No | Client secret (not needed for public clients). |
discoveryUrl |
string |
Yes | URL to the OIDC provider's discovery endpoint. |
redirectUri |
string |
Yes | Redirect URI registered with the OIDC provider. |
scopes |
Scopes[] |
Yes | List of scopes for the OIDC flow (e.g., openid ). |
grantType |
GrantType |
No | Grant type (default: authorization_code ). |
logLevel |
LogLevel |
No | Logging level (info , debug , warn , error ). |
Scopes
, GrantType
, and LogLevel
are enums provided by the library. This is a non-exhaustive list of available values:
enum Scopes {
OpenId = 'openid',
Profile = 'profile',
Email = 'email',
}
enum GrantType {
AuthorizationCode = 'authorization_code',
ClientCredentials = 'client_credentials',
DeviceCode = 'urn:ietf:params:oauth:grant-type:device_code',
}
enum LogLevel {
Info = 'info',
Debug = 'debug',
Warn = 'warn',
Error = 'error',
}
note - The client accepts additonal options for customizing the OIDC flow, such as responseType
, responseMode
, prompt
, nonce
, and state
etc. These options can be configured by adhereing to the `ICl
-
getAuthorizationUrl()
- Generates an authorization URL for user login. -
handleRedirect(code, state, context)
- Processes the callback from the authorization server.-
code
- Authorization code from the callback. -
state
- State value from the callback. -
context
- An object containing your request and response (for session handling).
-
-
handleRedirectForImplicitFlow(fragment, context)
- Processes the implicit flow callback. -
getUserInfo()
- Fetches user info from the userinfo endpoint. -
getAccessToken()
- Retrieves the current access token, refreshing it if necessary. -
clearTokens()
- Clears all stored tokens. -
startDeviceAuthorization()
- Initiates device authorization flow. -
pollDeviceToken(device_code, interval, timeout)
- Polls for tokens in device authorization flow. -
introspectToken(token)
- Introspects a token. -
revokeToken(token, tokenTypeHint)
- Revokes a token. -
setLogLevel(level)
- Sets the log level. -
logout(idTokenHint?)
- Initiates the OIDC logout flow.
The library throws ClientError
for all error scenarios, ensuring consistent error handling. Each error includes a message
, code
, and optional details
field.
Example:
try {
await oidcClient.getUserInfo();
} catch (error) {
if (error instanceof ClientError) {
console.error(`Error Code: ${error.code}`);
console.error(`Error Message: ${error.message}`);
} else {
console.error('An unexpected error occurred:', error);
}
}
To run the unit tests, use the following command:
npm run test
Contributions are welcome! Please see the CONTRIBUTING.md file for guidelines.
For issues and feature requests, please open an issue.
This project is licensed under the MIT License. See the LICENSE file for details.