UNPKG

@oraichain/customauth

Version:

CustomAuth login with torus to get user private key

62 lines (55 loc) 2.19 kB
import { get } from "@toruslabs/http-helpers"; import deepmerge from "lodash.merge"; import { LOGIN_TYPE, UX_MODE_TYPE } from "../utils/enums"; import AbstractLoginHandler from "./AbstractLoginHandler"; import { Auth0ClientOptions, LoginWindowResponse, MultifactorsGenericObject, MultifactorsVerifierResponse } from "./interfaces"; export default class RedditHandler extends AbstractLoginHandler { private readonly RESPONSE_TYPE: string = "token"; private readonly SCOPE: string = "identity"; constructor( readonly clientId: string, readonly redirect_uri: string, readonly typeOfLogin: LOGIN_TYPE, readonly uxMode: UX_MODE_TYPE, readonly redirectToOpener?: boolean, readonly jwtParams?: Auth0ClientOptions, readonly customState?: MultifactorsGenericObject ) { super(clientId, redirect_uri, typeOfLogin, uxMode, redirectToOpener, jwtParams, customState); this.setFinalUrl(); } setFinalUrl(): void { const finalUrl = new URL(`https://www.reddit.com/api/v1/authorize${window.innerWidth < 600 ? ".compact" : ""}`); const clonedParams = JSON.parse(JSON.stringify(this.jwtParams || {})); const finalJwtParams = deepmerge( { state: this.state, response_type: this.RESPONSE_TYPE, client_id: this.clientId, redirect_uri: this.redirect_uri, scope: this.SCOPE, }, clonedParams ); Object.keys(finalJwtParams).forEach((key) => { if (finalJwtParams[key]) finalUrl.searchParams.append(key, finalJwtParams[key]); }); this.finalURL = finalUrl; } async getUserInfo(params: LoginWindowResponse): Promise<MultifactorsVerifierResponse> { const { accessToken } = params; const userInfo = await get<{ icon_img: string; name: string }>("https://oauth.reddit.com/api/v1/me", { headers: { Authorization: `Bearer ${accessToken}`, }, }); const { icon_img: profileImage = "", name = "" } = userInfo; return { email: "", name, profileImage: profileImage.split("?").length > 0 ? profileImage.split("?")[0] : profileImage, verifierId: name.toLowerCase(), typeOfLogin: this.typeOfLogin, }; } }