161 lines
4.2 KiB
TypeScript
161 lines
4.2 KiB
TypeScript
import type {AuthProvider} from "@refinedev/core"
|
|
|
|
import type {
|
|
AuthActionResponse,
|
|
CheckResponse,
|
|
IdentityResponse,
|
|
OnErrorResponse
|
|
// @ts-ignore
|
|
} from "@refinedev/core/dist/interfaces/bindings/auth"
|
|
import {Sdk} from "@lumeweb/portal-sdk";
|
|
import Cookies from 'universal-cookie';
|
|
import type {AccountInfoResponse} from "@lumeweb/portal-sdk";
|
|
|
|
export type AuthFormRequest = {
|
|
email: string;
|
|
password: string;
|
|
rememberMe: boolean;
|
|
redirectTo?: string;
|
|
}
|
|
|
|
export type RegisterFormRequest = {
|
|
email: string;
|
|
password: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
}
|
|
|
|
export type Identity = {
|
|
id: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
email: string;
|
|
}
|
|
|
|
export class PortalAuthProvider implements RequiredAuthProvider {
|
|
private sdk: Sdk;
|
|
|
|
constructor(apiUrl: string) {
|
|
this.sdk = Sdk.create(apiUrl);
|
|
|
|
const methods: Array<keyof AuthProvider> = [
|
|
'login',
|
|
'logout',
|
|
'check',
|
|
'onError',
|
|
'register',
|
|
'forgotPassword',
|
|
'updatePassword',
|
|
'getPermissions',
|
|
'getIdentity',
|
|
];
|
|
|
|
methods.forEach((method) => {
|
|
this[method] = this[method]?.bind(this) as any;
|
|
});
|
|
}
|
|
|
|
async login(params: AuthFormRequest): Promise<AuthActionResponse> {
|
|
const ret = await this.sdk.account().login({
|
|
email: params.email,
|
|
password: params.password,
|
|
})
|
|
|
|
let redirectTo: string | undefined;
|
|
|
|
if (ret) {
|
|
redirectTo = params.redirectTo;
|
|
if (!redirectTo) {
|
|
redirectTo = ret ? "/dashboard" : "/login";
|
|
}
|
|
}
|
|
|
|
return {
|
|
success: ret,
|
|
redirectTo,
|
|
};
|
|
}
|
|
|
|
async logout(params: any): Promise<AuthActionResponse> {
|
|
let ret = await this.sdk.account().logout();
|
|
return {success: ret, redirectTo: "/login"};
|
|
}
|
|
|
|
async check(params?: any): Promise<CheckResponse> {
|
|
this.maybeSetupAuth();
|
|
|
|
const ret = await this.sdk.account().ping();
|
|
|
|
return {authenticated: ret, redirectTo: ret ? undefined : "/login"};
|
|
}
|
|
|
|
async onError(error: any): Promise<OnErrorResponse> {
|
|
const cookies = new Cookies();
|
|
return {logout: true};
|
|
}
|
|
|
|
async register(params: RegisterFormRequest): Promise<AuthActionResponse> {
|
|
const ret = await this.sdk.account().register({
|
|
email: params.email,
|
|
password: params.password,
|
|
first_name: params.firstName,
|
|
last_name: params.lastName,
|
|
});
|
|
return {success: ret, redirectTo: ret ? "/dashboard" : undefined};
|
|
}
|
|
|
|
async forgotPassword(params: any): Promise<AuthActionResponse> {
|
|
return {success: true};
|
|
}
|
|
|
|
async updatePassword(params: any): Promise<AuthActionResponse> {
|
|
return {success: true};
|
|
}
|
|
|
|
async getPermissions(params?: Record<string, any>): Promise<AuthActionResponse> {
|
|
return {success: true};
|
|
}
|
|
|
|
async getIdentity(params?: Identity): Promise<IdentityResponse> {
|
|
this.maybeSetupAuth();
|
|
const ret = await this.sdk.account().info();
|
|
|
|
if (!ret) {
|
|
return {identity: null};
|
|
}
|
|
|
|
const acct = ret as AccountInfoResponse;
|
|
|
|
return {
|
|
id: acct.id,
|
|
firstName: acct.first_name,
|
|
lastName: acct.last_name,
|
|
email: acct.email,
|
|
};
|
|
}
|
|
|
|
maybeSetupAuth(): void {
|
|
const cookies = new Cookies();
|
|
const jwtCookie = cookies.get('auth_token');
|
|
if (jwtCookie) {
|
|
this.sdk.setAuthToken(jwtCookie);
|
|
}
|
|
}
|
|
|
|
public static create(apiUrl: string): AuthProvider {
|
|
return new PortalAuthProvider(apiUrl);
|
|
}
|
|
}
|
|
|
|
interface RequiredAuthProvider extends AuthProvider {
|
|
login: AuthProvider['login'];
|
|
logout: AuthProvider['logout'];
|
|
check: AuthProvider['check'];
|
|
onError: AuthProvider['onError'];
|
|
register: AuthProvider['register'];
|
|
forgotPassword: AuthProvider['forgotPassword'];
|
|
updatePassword: AuthProvider['updatePassword'];
|
|
getPermissions: AuthProvider['getPermissions'];
|
|
getIdentity: AuthProvider['getIdentity'];
|
|
}
|