-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for auth providers
- Loading branch information
Showing
16 changed files
with
162 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* eslint-disable @typescript-eslint/no-unused-vars */ | ||
/* eslint-disable max-len */ | ||
/* eslint-disable class-methods-use-this */ | ||
import { CurrentAdmin } from '../../../current-admin.interface.js' | ||
import { ComponentLoader } from '../component-loader.js' | ||
import { NotImplementedError } from '../errors/index.js' | ||
|
||
export interface AuthenticatePayload { | ||
[key: string]: any; | ||
} | ||
|
||
export interface AuthProviderConfig<T extends AuthenticatePayload> { | ||
componentLoader: ComponentLoader; | ||
authenticate: (payload: T, context?: any) => Promise<CurrentAdmin | null>; | ||
} | ||
|
||
export interface LoginHandlerOptions { | ||
data: Record<string, any>; | ||
query?: Record<string, any>; | ||
params?: Record<string, any>; | ||
headers: Record<string, any>; | ||
} | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-empty-interface | ||
export interface RefreshTokenHandlerOptions extends LoginHandlerOptions {} | ||
|
||
/** | ||
* Extendable class which includes methods allowing you to build custom auth providers or modify existing ones. | ||
* | ||
* Documentation: https://docs.adminjs.co/basics/authentication | ||
*/ | ||
export class BaseAuthProvider<TContext = any> { | ||
/** | ||
* "getUiProps" method should be used to decide which configuration variables are needed | ||
* in the frontend. By default it returns an empty object. | ||
* | ||
* @returns an object sent to the frontend app, available in `window.__APP_STATE__` | ||
*/ | ||
public getUiProps(): Record<string, any> { | ||
return {} | ||
} | ||
|
||
/** | ||
* Handle login action of user. The method should return a user object or null. | ||
* | ||
* @param opts Basic REST request data: data (body), query, params, headers | ||
* @param context Full request context specific to your framework, i. e. "request" and "response" in Express | ||
*/ | ||
public async handleLogin(opts: LoginHandlerOptions, context?: TContext): Promise<CurrentAdmin | null> { | ||
throw new NotImplementedError('BaseAuthProvider#handleLogin') | ||
} | ||
|
||
/** | ||
* "handleLogout" allows you to perform extra actions to log out the user, you have access to request's context. | ||
* For example, you could want to log out the user from external services besides destroying AdminJS session. | ||
* By default, this method is always called by your framework plugin but does nothing. | ||
* | ||
* @param context Full request context specific to your framework, i. e. "request" and "response" in Express | ||
* @returns Returns anything, but the default plugin implementations don't do anything with the result. | ||
*/ | ||
public async handleLogout(context?: TContext): Promise<any> { | ||
return Promise.resolve() | ||
} | ||
|
||
/** | ||
* This method is assigned to an endpoint at your server's AdminJS "refreshTokenPath". It is not used by default. | ||
* In order to use this API Endpoint, override "AuthenticationBackgroundComponent" by using your ComponentLoader instance. | ||
* You can use that component to call API to refresh your user's session when specific conditions are met. The default | ||
* email/password authentication doesn't require you to refresh your session, but you may want to use "handleRefreshToken" | ||
* in case your authentication is integrated with an external IdP which issues short-lived access tokens. | ||
* | ||
* Any authentication metadata should ideally be stored under "_auth" property of CurrentAdmin. | ||
* | ||
* See more in the documentation: https://docs.adminjs.co/basics/authentication | ||
* | ||
* @param opts Basic REST request data: data (body), query, params, headers | ||
* @param context Full request context specific to your framework, i. e. "request" and "response" in Express | ||
* @returns Updated session object to be merged with existing one. | ||
*/ | ||
public async handleRefreshToken(opts: RefreshTokenHandlerOptions, context?: TContext): Promise<any> { | ||
return Promise.resolve({}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { AuthProviderConfig, AuthenticatePayload, BaseAuthProvider, LoginHandlerOptions } from './base-auth-provider.js' | ||
|
||
export interface DefaultAuthenticatePayload extends AuthenticatePayload { | ||
email: string; | ||
password: string; | ||
} | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-empty-interface | ||
export interface DefaultAuthProviderConfig extends AuthProviderConfig<DefaultAuthenticatePayload> {} | ||
|
||
export class DefaultAuthProvider extends BaseAuthProvider { | ||
protected readonly authenticate | ||
|
||
constructor({ authenticate }: DefaultAuthProviderConfig) { | ||
super() | ||
this.authenticate = authenticate | ||
} | ||
|
||
override async handleLogin(opts: LoginHandlerOptions, context) { | ||
const { data = {} } = opts | ||
const { email, password } = data | ||
|
||
return this.authenticate({ email, password }, context) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from './base-auth-provider.js' | ||
export * from './default-auth-provider.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from 'react' | ||
|
||
import allowOverride from '../../hoc/allow-override.js' | ||
|
||
const AuthenticationBackgroundComponent: React.FC = () => null | ||
|
||
const OverridableAuthenticationBackgroundComponent = allowOverride(AuthenticationBackgroundComponent, 'AuthenticationBackgroundComponent') | ||
|
||
export { | ||
OverridableAuthenticationBackgroundComponent as default, | ||
OverridableAuthenticationBackgroundComponent as AuthenticationBackgroundComponent, | ||
AuthenticationBackgroundComponent as OriginalAuthenticationBackgroundComponent, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters