import GoTrueAdminApi from './GoTrueAdminApi';
import { AUTO_REFRESH_TICK_DURATION_MS, AUTO_REFRESH_TICK_THRESHOLD, DEFAULT_HEADERS, EXPIRY_MARGIN_MS, GOTRUE_URL, JWKS_TTL, STORAGE_KEY, } from './lib/constants';
import { AuthImplicitGrantRedirectError, AuthInvalidCredentialsError, AuthInvalidJwtError, AuthInvalidTokenResponseError, AuthPKCEGrantCodeExchangeError, AuthSessionMissingError, AuthUnknownError, isAuthApiError, isAuthError, isAuthImplicitGrantRedirectError, isAuthRetryableFetchError, isAuthSessionMissingError, } from './lib/errors';
import { _request, _sessionResponse, _sessionResponsePassword, _ssoResponse, _userResponse, } from './lib/fetch';
import { decodeJWT, deepClone, Deferred, generateCallbackId, getAlgorithm, getCodeChallengeAndMethod, getItemAsync, insecureUserWarningProxy, isBrowser, parseParametersFromURL, removeItemAsync, resolveFetch, retryable, setItemAsync, sleep, supportsLocalStorage, userNotAvailableProxy, validateExp, } from './lib/helpers';
import { memoryLocalStorageAdapter } from './lib/local-storage';
import { LockAcquireTimeoutError, navigatorLock } from './lib/locks';
import { polyfillGlobalThis } from './lib/polyfills';
import { version } from './lib/version';
import { bytesToBase64URL, stringToUint8Array } from './lib/base64url';
import { createSiweMessage, fromHex, getAddress, toHex, } from './lib/web3/ethereum';
import { deserializeCredentialCreationOptions, deserializeCredentialRequestOptions, serializeCredentialCreationResponse, serializeCredentialRequestResponse, WebAuthnApi, } from './lib/webauthn';
polyfillGlobalThis(); // Make "globalThis" available
const DEFAULT_OPTIONS = {
url: GOTRUE_URL,
storageKey: STORAGE_KEY,
autoRefreshToken: true,
persistSession: true,
detectSessionInUrl: true,
headers: DEFAULT_HEADERS,
flowType: 'implicit',
debug: false,
hasCustomAuthorizationHeader: false,
throwOnError: false,
};
async function lockNoOp(name, acquireTimeout, fn) {
return await fn();
}
/**
* Caches JWKS values for all clients created in the same environment. This is
* especially useful for shared-memory execution environments such as Vercel's
* Fluid Compute, AWS Lambda or Supabase's Edge Functions. Regardless of how
* many clients are created, if they share the same storage key they will use
* the same JWKS cache, significantly speeding up getClaims() with asymmetric
* JWTs.
*/
const GLOBAL_JWKS = {};
class GoTrueClient {
/**
* The JWKS used for verifying asymmetric JWTs
*/
get jwks() {
var _a, _b;
return (_b = (_a = GLOBAL_JWKS[this.storageKey]) === null || _a === void 0 ? void 0 : _a.jwks) !== null && _b !== void 0 ? _b : { keys: [] };
}
set jwks(value) {
GLOBAL_JWKS[this.storageKey] = Object.assign(Object.assign({}, GLOBAL_JWKS[this.storageKey]), { jwks: value });
}
get jwks_cached_at() {
var _a, _b;
return (_b = (_a = GLOBAL_JWKS[this.storageKey]) === null || _a === void 0 ? void 0 : _a.cachedAt) !== null && _b !== void 0 ? _b : Number.MIN_SAFE_INTEGER;
}
set jwks_cached_at(value) {
GLOBAL_JWKS[this.storageKey] = Object.assign(Object.assign({}, GLOBAL_JWKS[this.storageKey]), { cachedAt: value });
}
/**
* Create a new client for use in the browser.
*
* @example
* ```ts
* import { GoTrueClient } from '@supabase/auth-js'
*
* const auth = new GoTrueClient({
* url: 'https://xyzcompany.supabase.co/auth/v1',
* headers: { apikey: 'public-anon-key' },
* storageKey: 'supabase-auth',
* })
* ```
*/
constructor(options) {
var _a, _b, _c;
/**
* @experimental
*/
this.userStorage = null;
this.memoryStorage = null;
this.stateChangeEmitters = new Map();
this.autoRefreshTicker = null;
this.visibilityChangedCallback = null;
this.refreshingDeferred = null;
/**
* Keeps track of the async client initialization.
* When null or not yet resolved the auth state is `unknown`
* Once resolved the auth state is known and it's safe to call any further client methods.
* Keep extra care to never reject or throw uncaught errors
*/
this.initializePromise = null;
this.detectSessionInUrl = true;
this.hasCustomAuthorizationHeader = false;
this.suppressGetSessionWarning = false;
this.lockAcquired = false;
this.pendingInLock = [];
/**
* Used to broadcast state change events to other tabs listening.
*/
this.broadcastChannel = null;
this.logger = console.log;
const settings = Object.assign(Object.assign({}, DEFAULT_OPTIONS), options);
this.storageKey = settings.storageKey;
this.instanceID = (_a = GoTrueClient.nextInstanceID[this.storageKey]) !== null && _a !== void 0 ? _a : 0;
GoTrueClient.nextInstanceID[this.storageKey] = this.instanceID + 1;
this.logDebugMessages = !!settings.debug;
if (typeof settings.debug === 'function') {
this.logger = settings.debug;
}
if (this.instanceID > 0 && isBrowser()) {
const message = `${this._logPrefix()} Multiple GoTrueClient instances detected in the same browser context. It is not an error, but this should be avoided as it may produce undefined behavior when used concurrently under the same storage key.`;
console.warn(message);
if (this.logDebugMessages) {
console.trace(message);
}
}
this.persistSession = settings.persistSession;
this.autoRefreshToken = settings.autoRefreshToken;
this.admin = new GoTrueAdminApi({
url: settings.url,
headers: settings.headers,
fetch: settings.fetch,
});
this.url = settings.url;
this.headers = settings.headers;
this.fetch = resolveFetch(settings.fetch);
this.lock = settings.lock || lockNoOp;
this.detectSessionInUrl = settings.detectSessionInUrl;
this.flowType = settings.flowType;
this.hasCustomAuthorizationHeader = settings.hasCustomAuthorizationHeader;
this.throwOnError = settings.throwOnError;
if (settings.lock) {
this.lock = settings.lock;
}
else if (isBrowser() && ((_b = globalThis === null || globalThis === void 0 ? void 0 : globalThis.navigator) === null || _b === void 0 ? void 0 : _b.locks)) {
this.lock = navigatorLock;
}
else {
this.lock = lockNoOp;
}
if (!this.jwks) {
this.jwks = { keys: [] };
this.jwks_cached_at = Number.MIN_SAFE_INTEGER;
}
this.mfa = {
verify: this._verify.bind(this),
enroll: this._enroll.bind(this),
unenroll: this._unenroll.bind(this),
challenge: this._challenge.bind(this),
listFactors: this._listFactors.bind(this),
challengeAndVerify: this._challengeAndVerify.bind(this),
getAuthenticatorAssuranceLevel: this._getAuthenticatorAssuranceLevel.bind(this),
webauthn: new WebAuthnApi(this),
};
this.oauth = {
getAuthorizationDetails: this._getAuthorizationDetails.bind(this),
approveAuthorization: this._approveAuthorization.bind(this),
denyAuthorization: this._denyAuthorization.bind(this),
listGrants: this._listOAuthGrants.bind(this),
revokeGrant: this._revokeOAuthGrant.bind(this),
};
if (this.persistSession) {
if (settings.storage) {
this.storage = settings.storage;
}
else {
if (supportsLocalStorage()) {
this.storage = globalThis.localStorage;
}
else {
this.memoryStorage = {};
this.storage = memoryLocalStorageAdapter(this.memoryStorage);
}
}
if (settings.userStorage) {
this.userStorage = settings.userStorage;
}
}
else {
this.memoryStorage = {};
this.storage = memoryLocalStorageAdapter(this.memoryStorage);
}
if (isBrowser() && globalThis.BroadcastChannel && this.persistSession && this.storageKey) {
try {
this.broadcastChannel = new globalThis.BroadcastChannel(this.storageKey);
}
catch (e) {
console.error('Failed to create a new BroadcastChannel, multi-tab state changes will not be available', e);
}
(_c = this.broadcastChannel) === null || _c === void 0 ? void 0 : _c.addEventListener('message', async (event) => {
this._debug('received broadcast notification from other tab or client', event);
await this._notifyAllSubscribers(event.data.event, event.data.session, false); // broadcast = false so we don't get an endless loop of messages
});
}
this.initialize();
}
/**
* Returns whether error throwing mode is enabled for this client.
*/
isThrowOnErrorEnabled() {
return this.throwOnError;
}
/**
* Centralizes return handling with optional error throwing. When `throwOnError` is enabled
* and the provided result contains a non-nullish error, the error is thrown instead of
* being returned. This ensures consistent behavior across all public API methods.
*/
_returnResult(result) {
if (this.throwOnError && result && result.error) {
throw result.error;
}
return result;
}
_logPrefix() {
return ('GoTrueClient@' +
`${this.storageKey}:${this.instanceID} (${version}) ${new Date().toISOString()}`);
}
_debug(...args) {
if (this.logDebugMessages) {
this.logger(this._logPrefix(), ...args);
}
return this;
}
/**
* Initializes the client session either from the url or from storage.
* This method is automatically called when instantiating the client, but should also be called
* manually when checking for an error from an auth redirect (oauth, magiclink, password recovery, etc).
*/
async initialize() {
if (this.initializePromise) {
return await this.initializePromise;
}
this.initializePromise = (async () => {
return await this._acquireLock(-1, async () => {
return await this._initialize();
});
})();
return await this.initializePromise;
}
/**
* IMPORTANT:
* 1. Never throw in this method, as it is called from the constructor
* 2. Never return a session from this method as it would be cached over
* the whole lifetime of the client
*/
async _initialize() {
var _a;
try {
let params = {};
let callbackUrlType = 'none';
if (isBrowser()) {
params = parseParametersFromURL(window.location.href);
if (this._isImplicitGrantCallback(params)) {
callbackUrlType = 'implicit';
}
else if (await this._isPKCECallback(params)) {
callbackUrlType = 'pkce';
}
}
/**
* Attempt to get the session from the URL only if these conditions are fulfilled
*
* Note: If the URL isn't one of the callback url types (implicit or pkce),
* then there could be an existing session so we don't want to prematurely remove it
*/
if (isBrowser() && this.detectSessionInUrl && callbackUrlType !== 'none') {
const { data, error } = await this._getSessionFromURL(params, callbackUrlType);
if (error) {
this._debug('#_initialize()', 'error detecting session from URL', error);
if (isAuthImplicitGrantRedirectError(error)) {
const errorCode = (_a = error.details) === null || _a === void 0 ? void 0 : _a.code;
if (errorCode === 'identity_already_exists' ||
errorCode === 'identity_not_found' ||
errorCode === 'single_identity_not_deletable') {
return { error };
}
}
// failed login attempt via url,
// remove old session as in verifyOtp, signUp and signInWith*
await this._removeSession();
return { error };
}
const { session, redirectType } = data;
this._debug('#_initialize()', 'detected session in URL', session, 'redirect type', redirectType);
await this._saveSession(session);
setTimeout(async () => {
if (redirectType === 'recovery') {
await this._notifyAllSubscribers('PASSWORD_RECOVERY', session);
}
else {
await this._notifyAllSubscribers('SIGNED_IN', session);
}
}, 0);
return { error: null };
}
// no login attempt via callback url try to recover session from storage
await this._recoverAndRefresh();
return { error: null };
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ error });
}
return this._returnResult({
error: new AuthUnknownError('Unexpected error during initialization', error),
});
}
finally {
await this._handleVisibilityChange();
this._debug('#_initialize()', 'end');
}
}
/**
* Creates a new anonymous user.
*
* @returns A session where the is_anonymous claim in the access token JWT set to true
*/
async signInAnonymously(credentials) {
var _a, _b, _c;
try {
const res = await _request(this.fetch, 'POST', `${this.url}/signup`, {
headers: this.headers,
body: {
data: (_b = (_a = credentials === null || credentials === void 0 ? void 0 : credentials.options) === null || _a === void 0 ? void 0 : _a.data) !== null && _b !== void 0 ? _b : {},
gotrue_meta_security: { captcha_token: (_c = credentials === null || credentials === void 0 ? void 0 : credentials.options) === null || _c === void 0 ? void 0 : _c.captchaToken },
},
xform: _sessionResponse,
});
const { data, error } = res;
if (error || !data) {
return this._returnResult({ data: { user: null, session: null }, error: error });
}
const session = data.session;
const user = data.user;
if (data.session) {
await this._saveSession(data.session);
await this._notifyAllSubscribers('SIGNED_IN', session);
}
return this._returnResult({ data: { user, session }, error: null });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Creates a new user.
*
* Be aware that if a user account exists in the system you may get back an
* error message that attempts to hide this information from the user.
* This method has support for PKCE via email signups. The PKCE flow cannot be used when autoconfirm is enabled.
*
* @returns A logged-in session if the server has "autoconfirm" ON
* @returns A user if the server has "autoconfirm" OFF
*/
async signUp(credentials) {
var _a, _b, _c;
try {
let res;
if ('email' in credentials) {
const { email, password, options } = credentials;
let codeChallenge = null;
let codeChallengeMethod = null;
if (this.flowType === 'pkce') {
;
[codeChallenge, codeChallengeMethod] = await getCodeChallengeAndMethod(this.storage, this.storageKey);
}
res = await _request(this.fetch, 'POST', `${this.url}/signup`, {
headers: this.headers,
redirectTo: options === null || options === void 0 ? void 0 : options.emailRedirectTo,
body: {
email,
password,
data: (_a = options === null || options === void 0 ? void 0 : options.data) !== null && _a !== void 0 ? _a : {},
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
code_challenge: codeChallenge,
code_challenge_method: codeChallengeMethod,
},
xform: _sessionResponse,
});
}
else if ('phone' in credentials) {
const { phone, password, options } = credentials;
res = await _request(this.fetch, 'POST', `${this.url}/signup`, {
headers: this.headers,
body: {
phone,
password,
data: (_b = options === null || options === void 0 ? void 0 : options.data) !== null && _b !== void 0 ? _b : {},
channel: (_c = options === null || options === void 0 ? void 0 : options.channel) !== null && _c !== void 0 ? _c : 'sms',
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
},
xform: _sessionResponse,
});
}
else {
throw new AuthInvalidCredentialsError('You must provide either an email or phone number and a password');
}
const { data, error } = res;
if (error || !data) {
return this._returnResult({ data: { user: null, session: null }, error: error });
}
const session = data.session;
const user = data.user;
if (data.session) {
await this._saveSession(data.session);
await this._notifyAllSubscribers('SIGNED_IN', session);
}
return this._returnResult({ data: { user, session }, error: null });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Log in an existing user with an email and password or phone and password.
*
* Be aware that you may get back an error message that will not distinguish
* between the cases where the account does not exist or that the
* email/phone and password combination is wrong or that the account can only
* be accessed via social login.
*/
async signInWithPassword(credentials) {
try {
let res;
if ('email' in credentials) {
const { email, password, options } = credentials;
res = await _request(this.fetch, 'POST', `${this.url}/token?grant_type=password`, {
headers: this.headers,
body: {
email,
password,
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
},
xform: _sessionResponsePassword,
});
}
else if ('phone' in credentials) {
const { phone, password, options } = credentials;
res = await _request(this.fetch, 'POST', `${this.url}/token?grant_type=password`, {
headers: this.headers,
body: {
phone,
password,
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
},
xform: _sessionResponsePassword,
});
}
else {
throw new AuthInvalidCredentialsError('You must provide either an email or phone number and a password');
}
const { data, error } = res;
if (error) {
return this._returnResult({ data: { user: null, session: null }, error });
}
else if (!data || !data.session || !data.user) {
const invalidTokenError = new AuthInvalidTokenResponseError();
return this._returnResult({ data: { user: null, session: null }, error: invalidTokenError });
}
if (data.session) {
await this._saveSession(data.session);
await this._notifyAllSubscribers('SIGNED_IN', data.session);
}
return this._returnResult({
data: Object.assign({ user: data.user, session: data.session }, (data.weak_password ? { weakPassword: data.weak_password } : null)),
error,
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Log in an existing user via a third-party provider.
* This method supports the PKCE flow.
*/
async signInWithOAuth(credentials) {
var _a, _b, _c, _d;
return await this._handleProviderSignIn(credentials.provider, {
redirectTo: (_a = credentials.options) === null || _a === void 0 ? void 0 : _a.redirectTo,
scopes: (_b = credentials.options) === null || _b === void 0 ? void 0 : _b.scopes,
queryParams: (_c = credentials.options) === null || _c === void 0 ? void 0 : _c.queryParams,
skipBrowserRedirect: (_d = credentials.options) === null || _d === void 0 ? void 0 : _d.skipBrowserRedirect,
});
}
/**
* Log in an existing user by exchanging an Auth Code issued during the PKCE flow.
*/
async exchangeCodeForSession(authCode) {
await this.initializePromise;
return this._acquireLock(-1, async () => {
return this._exchangeCodeForSession(authCode);
});
}
/**
* Signs in a user by verifying a message signed by the user's private key.
* Supports Ethereum (via Sign-In-With-Ethereum) & Solana (Sign-In-With-Solana) standards,
* both of which derive from the EIP-4361 standard
* With slight variation on Solana's side.
* @reference https://eips.ethereum.org/EIPS/eip-4361
*/
async signInWithWeb3(credentials) {
const { chain } = credentials;
switch (chain) {
case 'ethereum':
return await this.signInWithEthereum(credentials);
case 'solana':
return await this.signInWithSolana(credentials);
default:
throw new Error(`@supabase/auth-js: Unsupported chain "${chain}"`);
}
}
async signInWithEthereum(credentials) {
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
// TODO: flatten type
let message;
let signature;
if ('message' in credentials) {
message = credentials.message;
signature = credentials.signature;
}
else {
const { chain, wallet, statement, options } = credentials;
let resolvedWallet;
if (!isBrowser()) {
if (typeof wallet !== 'object' || !(options === null || options === void 0 ? void 0 : options.url)) {
throw new Error('@supabase/auth-js: Both wallet and url must be specified in non-browser environments.');
}
resolvedWallet = wallet;
}
else if (typeof wallet === 'object') {
resolvedWallet = wallet;
}
else {
const windowAny = window;
if ('ethereum' in windowAny &&
typeof windowAny.ethereum === 'object' &&
'request' in windowAny.ethereum &&
typeof windowAny.ethereum.request === 'function') {
resolvedWallet = windowAny.ethereum;
}
else {
throw new Error(`@supabase/auth-js: No compatible Ethereum wallet interface on the window object (window.ethereum) detected. Make sure the user already has a wallet installed and connected for this app. Prefer passing the wallet interface object directly to signInWithWeb3({ chain: 'ethereum', wallet: resolvedUserWallet }) instead.`);
}
}
const url = new URL((_a = options === null || options === void 0 ? void 0 : options.url) !== null && _a !== void 0 ? _a : window.location.href);
const accounts = await resolvedWallet
.request({
method: 'eth_requestAccounts',
})
.then((accs) => accs)
.catch(() => {
throw new Error(`@supabase/auth-js: Wallet method eth_requestAccounts is missing or invalid`);
});
if (!accounts || accounts.length === 0) {
throw new Error(`@supabase/auth-js: No accounts available. Please ensure the wallet is connected.`);
}
const address = getAddress(accounts[0]);
let chainId = (_b = options === null || options === void 0 ? void 0 : options.signInWithEthereum) === null || _b === void 0 ? void 0 : _b.chainId;
if (!chainId) {
const chainIdHex = await resolvedWallet.request({
method: 'eth_chainId',
});
chainId = fromHex(chainIdHex);
}
const siweMessage = {
domain: url.host,
address: address,
statement: statement,
uri: url.href,
version: '1',
chainId: chainId,
nonce: (_c = options === null || options === void 0 ? void 0 : options.signInWithEthereum) === null || _c === void 0 ? void 0 : _c.nonce,
issuedAt: (_e = (_d = options === null || options === void 0 ? void 0 : options.signInWithEthereum) === null || _d === void 0 ? void 0 : _d.issuedAt) !== null && _e !== void 0 ? _e : new Date(),
expirationTime: (_f = options === null || options === void 0 ? void 0 : options.signInWithEthereum) === null || _f === void 0 ? void 0 : _f.expirationTime,
notBefore: (_g = options === null || options === void 0 ? void 0 : options.signInWithEthereum) === null || _g === void 0 ? void 0 : _g.notBefore,
requestId: (_h = options === null || options === void 0 ? void 0 : options.signInWithEthereum) === null || _h === void 0 ? void 0 : _h.requestId,
resources: (_j = options === null || options === void 0 ? void 0 : options.signInWithEthereum) === null || _j === void 0 ? void 0 : _j.resources,
};
message = createSiweMessage(siweMessage);
// Sign message
signature = (await resolvedWallet.request({
method: 'personal_sign',
params: [toHex(message), address],
}));
}
try {
const { data, error } = await _request(this.fetch, 'POST', `${this.url}/token?grant_type=web3`, {
headers: this.headers,
body: Object.assign({ chain: 'ethereum', message,
signature }, (((_k = credentials.options) === null || _k === void 0 ? void 0 : _k.captchaToken)
? { gotrue_meta_security: { captcha_token: (_l = credentials.options) === null || _l === void 0 ? void 0 : _l.captchaToken } }
: null)),
xform: _sessionResponse,
});
if (error) {
throw error;
}
if (!data || !data.session || !data.user) {
const invalidTokenError = new AuthInvalidTokenResponseError();
return this._returnResult({ data: { user: null, session: null }, error: invalidTokenError });
}
if (data.session) {
await this._saveSession(data.session);
await this._notifyAllSubscribers('SIGNED_IN', data.session);
}
return this._returnResult({ data: Object.assign({}, data), error });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
async signInWithSolana(credentials) {
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
let message;
let signature;
if ('message' in credentials) {
message = credentials.message;
signature = credentials.signature;
}
else {
const { chain, wallet, statement, options } = credentials;
let resolvedWallet;
if (!isBrowser()) {
if (typeof wallet !== 'object' || !(options === null || options === void 0 ? void 0 : options.url)) {
throw new Error('@supabase/auth-js: Both wallet and url must be specified in non-browser environments.');
}
resolvedWallet = wallet;
}
else if (typeof wallet === 'object') {
resolvedWallet = wallet;
}
else {
const windowAny = window;
if ('solana' in windowAny &&
typeof windowAny.solana === 'object' &&
(('signIn' in windowAny.solana && typeof windowAny.solana.signIn === 'function') ||
('signMessage' in windowAny.solana &&
typeof windowAny.solana.signMessage === 'function'))) {
resolvedWallet = windowAny.solana;
}
else {
throw new Error(`@supabase/auth-js: No compatible Solana wallet interface on the window object (window.solana) detected. Make sure the user already has a wallet installed and connected for this app. Prefer passing the wallet interface object directly to signInWithWeb3({ chain: 'solana', wallet: resolvedUserWallet }) instead.`);
}
}
const url = new URL((_a = options === null || options === void 0 ? void 0 : options.url) !== null && _a !== void 0 ? _a : window.location.href);
if ('signIn' in resolvedWallet && resolvedWallet.signIn) {
const output = await resolvedWallet.signIn(Object.assign(Object.assign(Object.assign({ issuedAt: new Date().toISOString() }, options === null || options === void 0 ? void 0 : options.signInWithSolana), {
// non-overridable properties
version: '1', domain: url.host, uri: url.href }), (statement ? { statement } : null)));
let outputToProcess;
if (Array.isArray(output) && output[0] && typeof output[0] === 'object') {
outputToProcess = output[0];
}
else if (output &&
typeof output === 'object' &&
'signedMessage' in output &&
'signature' in output) {
outputToProcess = output;
}
else {
throw new Error('@supabase/auth-js: Wallet method signIn() returned unrecognized value');
}
if ('signedMessage' in outputToProcess &&
'signature' in outputToProcess &&
(typeof outputToProcess.signedMessage === 'string' ||
outputToProcess.signedMessage instanceof Uint8Array) &&
outputToProcess.signature instanceof Uint8Array) {
message =
typeof outputToProcess.signedMessage === 'string'
? outputToProcess.signedMessage
: new TextDecoder().decode(outputToProcess.signedMessage);
signature = outputToProcess.signature;
}
else {
throw new Error('@supabase/auth-js: Wallet method signIn() API returned object without signedMessage and signature fields');
}
}
else {
if (!('signMessage' in resolvedWallet) ||
typeof resolvedWallet.signMessage !== 'function' ||
!('publicKey' in resolvedWallet) ||
typeof resolvedWallet !== 'object' ||
!resolvedWallet.publicKey ||
!('toBase58' in resolvedWallet.publicKey) ||
typeof resolvedWallet.publicKey.toBase58 !== 'function') {
throw new Error('@supabase/auth-js: Wallet does not have a compatible signMessage() and publicKey.toBase58() API');
}
message = [
`${url.host} wants you to sign in with your Solana account:`,
resolvedWallet.publicKey.toBase58(),
...(statement ? ['', statement, ''] : ['']),
'Version: 1',
`URI: ${url.href}`,
`Issued At: ${(_c = (_b = options === null || options === void 0 ? void 0 : options.signInWithSolana) === null || _b === void 0 ? void 0 : _b.issuedAt) !== null && _c !== void 0 ? _c : new Date().toISOString()}`,
...(((_d = options === null || options === void 0 ? void 0 : options.signInWithSolana) === null || _d === void 0 ? void 0 : _d.notBefore)
? [`Not Before: ${options.signInWithSolana.notBefore}`]
: []),
...(((_e = options === null || options === void 0 ? void 0 : options.signInWithSolana) === null || _e === void 0 ? void 0 : _e.expirationTime)
? [`Expiration Time: ${options.signInWithSolana.expirationTime}`]
: []),
...(((_f = options === null || options === void 0 ? void 0 : options.signInWithSolana) === null || _f === void 0 ? void 0 : _f.chainId)
? [`Chain ID: ${options.signInWithSolana.chainId}`]
: []),
...(((_g = options === null || options === void 0 ? void 0 : options.signInWithSolana) === null || _g === void 0 ? void 0 : _g.nonce) ? [`Nonce: ${options.signInWithSolana.nonce}`] : []),
...(((_h = options === null || options === void 0 ? void 0 : options.signInWithSolana) === null || _h === void 0 ? void 0 : _h.requestId)
? [`Request ID: ${options.signInWithSolana.requestId}`]
: []),
...(((_k = (_j = options === null || options === void 0 ? void 0 : options.signInWithSolana) === null || _j === void 0 ? void 0 : _j.resources) === null || _k === void 0 ? void 0 : _k.length)
? [
'Resources',
...options.signInWithSolana.resources.map((resource) => `- ${resource}`),
]
: []),
].join('\n');
const maybeSignature = await resolvedWallet.signMessage(new TextEncoder().encode(message), 'utf8');
if (!maybeSignature || !(maybeSignature instanceof Uint8Array)) {
throw new Error('@supabase/auth-js: Wallet signMessage() API returned an recognized value');
}
signature = maybeSignature;
}
}
try {
const { data, error } = await _request(this.fetch, 'POST', `${this.url}/token?grant_type=web3`, {
headers: this.headers,
body: Object.assign({ chain: 'solana', message, signature: bytesToBase64URL(signature) }, (((_l = credentials.options) === null || _l === void 0 ? void 0 : _l.captchaToken)
? { gotrue_meta_security: { captcha_token: (_m = credentials.options) === null || _m === void 0 ? void 0 : _m.captchaToken } }
: null)),
xform: _sessionResponse,
});
if (error) {
throw error;
}
if (!data || !data.session || !data.user) {
const invalidTokenError = new AuthInvalidTokenResponseError();
return this._returnResult({ data: { user: null, session: null }, error: invalidTokenError });
}
if (data.session) {
await this._saveSession(data.session);
await this._notifyAllSubscribers('SIGNED_IN', data.session);
}
return this._returnResult({ data: Object.assign({}, data), error });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
async _exchangeCodeForSession(authCode) {
const storageItem = await getItemAsync(this.storage, `${this.storageKey}-code-verifier`);
const [codeVerifier, redirectType] = (storageItem !== null && storageItem !== void 0 ? storageItem : '').split('/');
try {
const { data, error } = await _request(this.fetch, 'POST', `${this.url}/token?grant_type=pkce`, {
headers: this.headers,
body: {
auth_code: authCode,
code_verifier: codeVerifier,
},
xform: _sessionResponse,
});
await removeItemAsync(this.storage, `${this.storageKey}-code-verifier`);
if (error) {
throw error;
}
if (!data || !data.session || !data.user) {
const invalidTokenError = new AuthInvalidTokenResponseError();
return this._returnResult({
data: { user: null, session: null, redirectType: null },
error: invalidTokenError,
});
}
if (data.session) {
await this._saveSession(data.session);
await this._notifyAllSubscribers('SIGNED_IN', data.session);
}
return this._returnResult({ data: Object.assign(Object.assign({}, data), { redirectType: redirectType !== null && redirectType !== void 0 ? redirectType : null }), error });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({
data: { user: null, session: null, redirectType: null },
error,
});
}
throw error;
}
}
/**
* Allows signing in with an OIDC ID token. The authentication provider used
* should be enabled and configured.
*/
async signInWithIdToken(credentials) {
try {
const { options, provider, token, access_token, nonce } = credentials;
const res = await _request(this.fetch, 'POST', `${this.url}/token?grant_type=id_token`, {
headers: this.headers,
body: {
provider,
id_token: token,
access_token,
nonce,
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
},
xform: _sessionResponse,
});
const { data, error } = res;
if (error) {
return this._returnResult({ data: { user: null, session: null }, error });
}
else if (!data || !data.session || !data.user) {
const invalidTokenError = new AuthInvalidTokenResponseError();
return this._returnResult({ data: { user: null, session: null }, error: invalidTokenError });
}
if (data.session) {
await this._saveSession(data.session);
await this._notifyAllSubscribers('SIGNED_IN', data.session);
}
return this._returnResult({ data, error });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Log in a user using magiclink or a one-time password (OTP).
*
* If the `{{ .ConfirmationURL }}` variable is specified in the email template, a magiclink will be sent.
* If the `{{ .Token }}` variable is specified in the email template, an OTP will be sent.
* If you're using phone sign-ins, only an OTP will be sent. You won't be able to send a magiclink for phone sign-ins.
*
* Be aware that you may get back an error message that will not distinguish
* between the cases where the account does not exist or, that the account
* can only be accessed via social login.
*
* Do note that you will need to configure a Whatsapp sender on Twilio
* if you are using phone sign in with the 'whatsapp' channel. The whatsapp
* channel is not supported on other providers
* at this time.
* This method supports PKCE when an email is passed.
*/
async signInWithOtp(credentials) {
var _a, _b, _c, _d, _e;
try {
if ('email' in credentials) {
const { email, options } = credentials;
let codeChallenge = null;
let codeChallengeMethod = null;
if (this.flowType === 'pkce') {
;
[codeChallenge, codeChallengeMethod] = await getCodeChallengeAndMethod(this.storage, this.storageKey);
}
const { error } = await _request(this.fetch, 'POST', `${this.url}/otp`, {
headers: this.headers,
body: {
email,
data: (_a = options === null || options === void 0 ? void 0 : options.data) !== null && _a !== void 0 ? _a : {},
create_user: (_b = options === null || options === void 0 ? void 0 : options.shouldCreateUser) !== null && _b !== void 0 ? _b : true,
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
code_challenge: codeChallenge,
code_challenge_method: codeChallengeMethod,
},
redirectTo: options === null || options === void 0 ? void 0 : options.emailRedirectTo,
});
return this._returnResult({ data: { user: null, session: null }, error });
}
if ('phone' in credentials) {
const { phone, options } = credentials;
const { data, error } = await _request(this.fetch, 'POST', `${this.url}/otp`, {
headers: this.headers,
body: {
phone,
data: (_c = options === null || options === void 0 ? void 0 : options.data) !== null && _c !== void 0 ? _c : {},
create_user: (_d = options === null || options === void 0 ? void 0 : options.shouldCreateUser) !== null && _d !== void 0 ? _d : true,
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
channel: (_e = options === null || options === void 0 ? void 0 : options.channel) !== null && _e !== void 0 ? _e : 'sms',
},
});
return this._returnResult({
data: { user: null, session: null, messageId: data === null || data === void 0 ? void 0 : data.message_id },
error,
});
}
throw new AuthInvalidCredentialsError('You must provide either an email or phone number.');
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Log in a user given a User supplied OTP or TokenHash received through mobile or email.
*/
async verifyOtp(params) {
var _a, _b;
try {
let redirectTo = undefined;
let captchaToken = undefined;
if ('options' in params) {
redirectTo = (_a = params.options) === null || _a === void 0 ? void 0 : _a.redirectTo;
captchaToken = (_b = params.options) === null || _b === void 0 ? void 0 : _b.captchaToken;
}
const { data, error } = await _request(this.fetch, 'POST', `${this.url}/verify`, {
headers: this.headers,
body: Object.assign(Object.assign({}, params), { gotrue_meta_security: { captcha_token: captchaToken } }),
redirectTo,
xform: _sessionResponse,
});
if (error) {
throw error;
}
if (!data) {
const tokenVerificationError = new Error('An error occurred on token verification.');
throw tokenVerificationError;
}
const session = data.session;
const user = data.user;
if (session === null || session === void 0 ? void 0 : session.access_token) {
await this._saveSession(session);
await this._notifyAllSubscribers(params.type == 'recovery' ? 'PASSWORD_RECOVERY' : 'SIGNED_IN', session);
}
return this._returnResult({ data: { user, session }, error: null });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Attempts a single-sign on using an enterprise Identity Provider. A
* successful SSO attempt will redirect the current page to the identity
* provider authorization page. The redirect URL is implementation and SSO
* protocol specific.
*
* You can use it by providing a SSO domain. Typically you can extract this
* domain by asking users for their email address. If this domain is
* registered on the Auth instance the redirect will use that organization's
* currently active SSO Identity Provider for the login.
*
* If you have built an organization-specific login page, you can use the
* organization's SSO Identity Provider UUID directly instead.
*/
async signInWithSSO(params) {
var _a, _b, _c, _d, _e;
try {
let codeChallenge = null;
let codeChallengeMethod = null;
if (this.flowType === 'pkce') {
;
[codeChallenge, codeChallengeMethod] = await getCodeChallengeAndMethod(this.storage, this.storageKey);
}
const result = await _request(this.fetch, 'POST', `${this.url}/sso`, {
body: Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, ('providerId' in params ? { provider_id: params.providerId } : null)), ('domain' in params ? { domain: params.domain } : null)), { redirect_to: (_b = (_a = params.options) === null || _a === void 0 ? void 0 : _a.redirectTo) !== null && _b !== void 0 ? _b : undefined }), (((_c = params === null || params === void 0 ? void 0 : params.options) === null || _c === void 0 ? void 0 : _c.captchaToken)
? { gotrue_meta_security: { captcha_token: params.options.captchaToken } }
: null)), { skip_http_redirect: true, code_challenge: codeChallenge, code_challenge_method: codeChallengeMethod }),
headers: this.headers,
xform: _ssoResponse,
});
// Automatically redirect in browser unless skipBrowserRedirect is true
if (((_d = result.data) === null || _d === void 0 ? void 0 : _d.url) && isBrowser() && !((_e = params.options) === null || _e === void 0 ? void 0 : _e.skipBrowserRedirect)) {
window.location.assign(result.data.url);
}
return this._returnResult(result);
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
/**
* Sends a reauthentication OTP to the user's email or phone number.
* Requires the user to be signed-in.
*/
async reauthenticate() {
await this.initializePromise;
return await this._acquireLock(-1, async () => {
return await this._reauthenticate();
});
}
async _reauthenticate() {
try {
return await this._useSession(async (result) => {
const { data: { session }, error: sessionError, } = result;
if (sessionError)
throw sessionError;
if (!session)
throw new AuthSessionMissingError();
const { error } = await _request(this.fetch, 'GET', `${this.url}/reauthenticate`, {
headers: this.headers,
jwt: session.access_token,
});
return this._returnResult({ data: { user: null, session: null }, error });
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Resends an existing signup confirmation email, email change email, SMS OTP or phone change OTP.
*/
async resend(credentials) {
try {
const endpoint = `${this.url}/resend`;
if ('email' in credentials) {
const { email, type, options } = credentials;
const { error } = await _request(this.fetch, 'POST', endpoint, {
headers: this.headers,
body: {
email,
type,
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
},
redirectTo: options === null || options === void 0 ? void 0 : options.emailRedirectTo,
});
return this._returnResult({ data: { user: null, session: null }, error });
}
else if ('phone' in credentials) {
const { phone, type, options } = credentials;
const { data, error } = await _request(this.fetch, 'POST', endpoint, {
headers: this.headers,
body: {
phone,
type,
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
},
});
return this._returnResult({
data: { user: null, session: null, messageId: data === null || data === void 0 ? void 0 : data.message_id },
error,
});
}
throw new AuthInvalidCredentialsError('You must provide either an email or phone number and a type');
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Returns the session, refreshing it if necessary.
*
* The session returned can be null if the session is not detected which can happen in the event a user is not signed-in or has logged out.
*
* **IMPORTANT:** This method loads values directly from the storage attached
* to the client. If that storage is based on request cookies for example,
* the values in it may not be authentic and therefore it's strongly advised
* against using this method and its results in such circumstances. A warning
* will be emitted if this is detected. Use {@link #getUser()} instead.
*/
async getSession() {
await this.initializePromise;
const result = await this._acquireLock(-1, async () => {
return this._useSession(async (result) => {
return result;
});
});
return result;
}
/**
* Acquires a global lock based on the storage key.
*/
async _acquireLock(acquireTimeout, fn) {
this._debug('#_acquireLock', 'begin', acquireTimeout);
try {
if (this.lockAcquired) {
const last = this.pendingInLock.length
? this.pendingInLock[this.pendingInLock.length - 1]
: Promise.resolve();
const result = (async () => {
await last;
return await fn();
})();
this.pendingInLock.push((async () => {
try {
await result;
}
catch (e) {
// we just care if it finished
}
})());
return result;
}
return await this.lock(`lock:${this.storageKey}`, acquireTimeout, async () => {
this._debug('#_acquireLock', 'lock acquired for storage key', this.storageKey);
try {
this.lockAcquired = true;
const result = fn();
this.pendingInLock.push((async () => {
try {
await result;
}
catch (e) {
// we just care if it finished
}
})());
await result;
// keep draining the queue until there's nothing to wait on
while (this.pendingInLock.length) {
const waitOn = [...this.pendingInLock];
await Promise.all(waitOn);
this.pendingInLock.splice(0, waitOn.length);
}
return await result;
}
finally {
this._debug('#_acquireLock', 'lock released for storage key', this.storageKey);
this.lockAcquired = false;
}
});
}
finally {
this._debug('#_acquireLock', 'end');
}
}
/**
* Use instead of {@link #getSession} inside the library. It is
* semantically usually what you want, as getting a session involves some
* processing afterwards that requires only one client operating on the
* session at once across multiple tabs or processes.
*/
async _useSession(fn) {
this._debug('#_useSession', 'begin');
try {
// the use of __loadSession here is the only correct use of the function!
const result = await this.__loadSession();
return await fn(result);
}
finally {
this._debug('#_useSession', 'end');
}
}
/**
* NEVER USE DIRECTLY!
*
* Always use {@link #_useSession}.
*/
async __loadSession() {
this._debug('#__loadSession()', 'begin');
if (!this.lockAcquired) {
this._debug('#__loadSession()', 'used outside of an acquired lock!', new Error().stack);
}
try {
let currentSession = null;
const maybeSession = await getItemAsync(this.storage, this.storageKey);
this._debug('#getSession()', 'session from storage', maybeSession);
if (maybeSession !== null) {
if (this._isValidSession(maybeSession)) {
currentSession = maybeSession;
}
else {
this._debug('#getSession()', 'session from storage is not valid');
await this._removeSession();
}
}
if (!currentSession) {
return { data: { session: null }, error: null };
}
// A session is considered expired before the access token _actually_
// expires. When the autoRefreshToken option is off (or when the tab is
// in the background), very eager users of getSession() -- like
// realtime-js -- might send a valid JWT which will expire by the time it
// reaches the server.
const hasExpired = currentSession.expires_at
? currentSession.expires_at * 1000 - Date.now() < EXPIRY_MARGIN_MS
: false;
this._debug('#__loadSession()', `session has${hasExpired ? '' : ' not'} expired`, 'expires_at', currentSession.expires_at);
if (!hasExpired) {
if (this.userStorage) {
const maybeUser = (await getItemAsync(this.userStorage, this.storageKey + '-user'));
if (maybeUser === null || maybeUser === void 0 ? void 0 : maybeUser.user) {
currentSession.user = maybeUser.user;
}
else {
currentSession.user = userNotAvailableProxy();
}
}
// Wrap the user object with a warning proxy on the server
// This warns when properties of the user are accessed, not when session.user itself is accessed
if (this.storage.isServer &&
currentSession.user &&
!currentSession.user.__isUserNotAvailableProxy) {
const suppressWarningRef = { value: this.suppressGetSessionWarning };
currentSession.user = insecureUserWarningProxy(currentSession.user, suppressWarningRef);
// Update the client-level suppression flag when the proxy suppresses the warning
if (suppressWarningRef.value) {
this.suppressGetSessionWarning = true;
}
}
return { data: { session: currentSession }, error: null };
}
const { data: session, error } = await this._callRefreshToken(currentSession.refresh_token);
if (error) {
return this._returnResult({ data: { session: null }, error });
}
return this._returnResult({ data: { session }, error: null });
}
finally {
this._debug('#__loadSession()', 'end');
}
}
/**
* Gets the current user details if there is an existing session. This method
* performs a network request to the Supabase Auth server, so the returned
* value is authentic and can be used to base authorization rules on.
*
* @param jwt Takes in an optional access token JWT. If no JWT is provided, the JWT from the current session is used.
*/
async getUser(jwt) {
if (jwt) {
return await this._getUser(jwt);
}
await this.initializePromise;
const result = await this._acquireLock(-1, async () => {
return await this._getUser();
});
return result;
}
async _getUser(jwt) {
try {
if (jwt) {
return await _request(this.fetch, 'GET', `${this.url}/user`, {
headers: this.headers,
jwt: jwt,
xform: _userResponse,
});
}
return await this._useSession(async (result) => {
var _a, _b, _c;
const { data, error } = result;
if (error) {
throw error;
}
// returns an error if there is no access_token or custom authorization header
if (!((_a = data.session) === null || _a === void 0 ? void 0 : _a.access_token) && !this.hasCustomAuthorizationHeader) {
return { data: { user: null }, error: new AuthSessionMissingError() };
}
return await _request(this.fetch, 'GET', `${this.url}/user`, {
headers: this.headers,
jwt: (_c = (_b = data.session) === null || _b === void 0 ? void 0 : _b.access_token) !== null && _c !== void 0 ? _c : undefined,
xform: _userResponse,
});
});
}
catch (error) {
if (isAuthError(error)) {
if (isAuthSessionMissingError(error)) {
// JWT contains a `session_id` which does not correspond to an active
// session in the database, indicating the user is signed out.
await this._removeSession();
await removeItemAsync(this.storage, `${this.storageKey}-code-verifier`);
}
return this._returnResult({ data: { user: null }, error });
}
throw error;
}
}
/**
* Updates user data for a logged in user.
*/
async updateUser(attributes, options = {}) {
await this.initializePromise;
return await this._acquireLock(-1, async () => {
return await this._updateUser(attributes, options);
});
}
async _updateUser(attributes, options = {}) {
try {
return await this._useSession(async (result) => {
const { data: sessionData, error: sessionError } = result;
if (sessionError) {
throw sessionError;
}
if (!sessionData.session) {
throw new AuthSessionMissingError();
}
const session = sessionData.session;
let codeChallenge = null;
let codeChallengeMethod = null;
if (this.flowType === 'pkce' && attributes.email != null) {
;
[codeChallenge, codeChallengeMethod] = await getCodeChallengeAndMethod(this.storage, this.storageKey);
}
const { data, error: userError } = await _request(this.fetch, 'PUT', `${this.url}/user`, {
headers: this.headers,
redirectTo: options === null || options === void 0 ? void 0 : options.emailRedirectTo,
body: Object.assign(Object.assign({}, attributes), { code_challenge: codeChallenge, code_challenge_method: codeChallengeMethod }),
jwt: session.access_token,
xform: _userResponse,
});
if (userError) {
throw userError;
}
session.user = data.user;
await this._saveSession(session);
await this._notifyAllSubscribers('USER_UPDATED', session);
return this._returnResult({ data: { user: session.user }, error: null });
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null }, error });
}
throw error;
}
}
/**
* Sets the session data from the current session. If the current session is expired, setSession will take care of refreshing it to obtain a new session.
* If the refresh token or access token in the current session is invalid, an error will be thrown.
* @param currentSession The current session that minimally contains an access token and refresh token.
*/
async setSession(currentSession) {
await this.initializePromise;
return await this._acquireLock(-1, async () => {
return await this._setSession(currentSession);
});
}
async _setSession(currentSession) {
try {
if (!currentSession.access_token || !currentSession.refresh_token) {
throw new AuthSessionMissingError();
}
const timeNow = Date.now() / 1000;
let expiresAt = timeNow;
let hasExpired = true;
let session = null;
const { payload } = decodeJWT(currentSession.access_token);
if (payload.exp) {
expiresAt = payload.exp;
hasExpired = expiresAt <= timeNow;
}
if (hasExpired) {
const { data: refreshedSession, error } = await this._callRefreshToken(currentSession.refresh_token);
if (error) {
return this._returnResult({ data: { user: null, session: null }, error: error });
}
if (!refreshedSession) {
return { data: { user: null, session: null }, error: null };
}
session = refreshedSession;
}
else {
const { data, error } = await this._getUser(currentSession.access_token);
if (error) {
throw error;
}
session = {
access_token: currentSession.access_token,
refresh_token: currentSession.refresh_token,
user: data.user,
token_type: 'bearer',
expires_in: expiresAt - timeNow,
expires_at: expiresAt,
};
await this._saveSession(session);
await this._notifyAllSubscribers('SIGNED_IN', session);
}
return this._returnResult({ data: { user: session.user, session }, error: null });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { session: null, user: null }, error });
}
throw error;
}
}
/**
* Returns a new session, regardless of expiry status.
* Takes in an optional current session. If not passed in, then refreshSession() will attempt to retrieve it from getSession().
* If the current session's refresh token is invalid, an error will be thrown.
* @param currentSession The current session. If passed in, it must contain a refresh token.
*/
async refreshSession(currentSession) {
await this.initializePromise;
return await this._acquireLock(-1, async () => {
return await this._refreshSession(currentSession);
});
}
async _refreshSession(currentSession) {
try {
return await this._useSession(async (result) => {
var _a;
if (!currentSession) {
const { data, error } = result;
if (error) {
throw error;
}
currentSession = (_a = data.session) !== null && _a !== void 0 ? _a : undefined;
}
if (!(currentSession === null || currentSession === void 0 ? void 0 : currentSession.refresh_token)) {
throw new AuthSessionMissingError();
}
const { data: session, error } = await this._callRefreshToken(currentSession.refresh_token);
if (error) {
return this._returnResult({ data: { user: null, session: null }, error: error });
}
if (!session) {
return this._returnResult({ data: { user: null, session: null }, error: null });
}
return this._returnResult({ data: { user: session.user, session }, error: null });
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
}
/**
* Gets the session data from a URL string
*/
async _getSessionFromURL(params, callbackUrlType) {
try {
if (!isBrowser())
throw new AuthImplicitGrantRedirectError('No browser detected.');
// If there's an error in the URL, it doesn't matter what flow it is, we just return the error.
if (params.error || params.error_description || params.error_code) {
// The error class returned implies that the redirect is from an implicit grant flow
// but it could also be from a redirect error from a PKCE flow.
throw new AuthImplicitGrantRedirectError(params.error_description || 'Error in URL with unspecified error_description', {
error: params.error || 'unspecified_error',
code: params.error_code || 'unspecified_code',
});
}
// Checks for mismatches between the flowType initialised in the client and the URL parameters
switch (callbackUrlType) {
case 'implicit':
if (this.flowType === 'pkce') {
throw new AuthPKCEGrantCodeExchangeError('Not a valid PKCE flow url.');
}
break;
case 'pkce':
if (this.flowType === 'implicit') {
throw new AuthImplicitGrantRedirectError('Not a valid implicit grant flow url.');
}
break;
default:
// there's no mismatch so we continue
}
// Since this is a redirect for PKCE, we attempt to retrieve the code from the URL for the code exchange
if (callbackUrlType === 'pkce') {
this._debug('#_initialize()', 'begin', 'is PKCE flow', true);
if (!params.code)
throw new AuthPKCEGrantCodeExchangeError('No code detected.');
const { data, error } = await this._exchangeCodeForSession(params.code);
if (error)
throw error;
const url = new URL(window.location.href);
url.searchParams.delete('code');
window.history.replaceState(window.history.state, '', url.toString());
return { data: { session: data.session, redirectType: null }, error: null };
}
const { provider_token, provider_refresh_token, access_token, refresh_token, expires_in, expires_at, token_type, } = params;
if (!access_token || !expires_in || !refresh_token || !token_type) {
throw new AuthImplicitGrantRedirectError('No session defined in URL');
}
const timeNow = Math.round(Date.now() / 1000);
const expiresIn = parseInt(expires_in);
let expiresAt = timeNow + expiresIn;
if (expires_at) {
expiresAt = parseInt(expires_at);
}
const actuallyExpiresIn = expiresAt - timeNow;
if (actuallyExpiresIn * 1000 <= AUTO_REFRESH_TICK_DURATION_MS) {
console.warn(`@supabase/gotrue-js: Session as retrieved from URL expires in ${actuallyExpiresIn}s, should have been closer to ${expiresIn}s`);
}
const issuedAt = expiresAt - expiresIn;
if (timeNow - issuedAt >= 120) {
console.warn('@supabase/gotrue-js: Session as retrieved from URL was issued over 120s ago, URL could be stale', issuedAt, expiresAt, timeNow);
}
else if (timeNow - issuedAt < 0) {
console.warn('@supabase/gotrue-js: Session as retrieved from URL was issued in the future? Check the device clock for skew', issuedAt, expiresAt, timeNow);
}
const { data, error } = await this._getUser(access_token);
if (error)
throw error;
const session = {
provider_token,
provider_refresh_token,
access_token,
expires_in: expiresIn,
expires_at: expiresAt,
refresh_token,
token_type: token_type,
user: data.user,
};
// Remove tokens from URL
window.location.hash = '';
this._debug('#_getSessionFromURL()', 'clearing window.location.hash');
return this._returnResult({ data: { session, redirectType: params.type }, error: null });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { session: null, redirectType: null }, error });
}
throw error;
}
}
/**
* Checks if the current URL contains parameters given by an implicit oauth grant flow (https://www.rfc-editor.org/rfc/rfc6749.html#section-4.2)
*/
_isImplicitGrantCallback(params) {
return Boolean(params.access_token || params.error_description);
}
/**
* Checks if the current URL and backing storage contain parameters given by a PKCE flow
*/
async _isPKCECallback(params) {
const currentStorageContent = await getItemAsync(this.storage, `${this.storageKey}-code-verifier`);
return !!(params.code && currentStorageContent);
}
/**
* Inside a browser context, `signOut()` will remove the logged in user from the browser session and log them out - removing all items from localstorage and then trigger a `"SIGNED_OUT"` event.
*
* For server-side management, you can revoke all refresh tokens for a user by passing a user's JWT through to `auth.api.signOut(JWT: string)`.
* There is no way to revoke a user's access token jwt until it expires. It is recommended to set a shorter expiry on the jwt for this reason.
*
* If using `others` scope, no `SIGNED_OUT` event is fired!
*/
async signOut(options = { scope: 'global' }) {
await this.initializePromise;
return await this._acquireLock(-1, async () => {
return await this._signOut(options);
});
}
async _signOut({ scope } = { scope: 'global' }) {
return await this._useSession(async (result) => {
var _a;
const { data, error: sessionError } = result;
if (sessionError) {
return this._returnResult({ error: sessionError });
}
const accessToken = (_a = data.session) === null || _a === void 0 ? void 0 : _a.access_token;
if (accessToken) {
const { error } = await this.admin.signOut(accessToken, scope);
if (error) {
// ignore 404s since user might not exist anymore
// ignore 401s since an invalid or expired JWT should sign out the current session
if (!(isAuthApiError(error) &&
(error.status === 404 || error.status === 401 || error.status === 403))) {
return this._returnResult({ error });
}
}
}
if (scope !== 'others') {
await this._removeSession();
await removeItemAsync(this.storage, `${this.storageKey}-code-verifier`);
}
return this._returnResult({ error: null });
});
}
onAuthStateChange(callback) {
const id = generateCallbackId();
const subscription = {
id,
callback,
unsubscribe: () => {
this._debug('#unsubscribe()', 'state change callback with id removed', id);
this.stateChangeEmitters.delete(id);
},
};
this._debug('#onAuthStateChange()', 'registered callback with id', id);
this.stateChangeEmitters.set(id, subscription);
(async () => {
await this.initializePromise;
await this._acquireLock(-1, async () => {
this._emitInitialSession(id);
});
})();
return { data: { subscription } };
}
async _emitInitialSession(id) {
return await this._useSession(async (result) => {
var _a, _b;
try {
const { data: { session }, error, } = result;
if (error)
throw error;
await ((_a = this.stateChangeEmitters.get(id)) === null || _a === void 0 ? void 0 : _a.callback('INITIAL_SESSION', session));
this._debug('INITIAL_SESSION', 'callback id', id, 'session', session);
}
catch (err) {
await ((_b = this.stateChangeEmitters.get(id)) === null || _b === void 0 ? void 0 : _b.callback('INITIAL_SESSION', null));
this._debug('INITIAL_SESSION', 'callback id', id, 'error', err);
console.error(err);
}
});
}
/**
* Sends a password reset request to an email address. This method supports the PKCE flow.
*
* @param email The email address of the user.
* @param options.redirectTo The URL to send the user to after they click the password reset link.
* @param options.captchaToken Verification token received when the user completes the captcha on the site.
*/
async resetPasswordForEmail(email, options = {}) {
let codeChallenge = null;
let codeChallengeMethod = null;
if (this.flowType === 'pkce') {
;
[codeChallenge, codeChallengeMethod] = await getCodeChallengeAndMethod(this.storage, this.storageKey, true // isPasswordRecovery
);
}
try {
return await _request(this.fetch, 'POST', `${this.url}/recover`, {
body: {
email,
code_challenge: codeChallenge,
code_challenge_method: codeChallengeMethod,
gotrue_meta_security: { captcha_token: options.captchaToken },
},
headers: this.headers,
redirectTo: options.redirectTo,
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
/**
* Gets all the identities linked to a user.
*/
async getUserIdentities() {
var _a;
try {
const { data, error } = await this.getUser();
if (error)
throw error;
return this._returnResult({ data: { identities: (_a = data.user.identities) !== null && _a !== void 0 ? _a : [] }, error: null });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
async linkIdentity(credentials) {
if ('token' in credentials) {
return this.linkIdentityIdToken(credentials);
}
return this.linkIdentityOAuth(credentials);
}
async linkIdentityOAuth(credentials) {
var _a;
try {
const { data, error } = await this._useSession(async (result) => {
var _a, _b, _c, _d, _e;
const { data, error } = result;
if (error)
throw error;
const url = await this._getUrlForProvider(`${this.url}/user/identities/authorize`, credentials.provider, {
redirectTo: (_a = credentials.options) === null || _a === void 0 ? void 0 : _a.redirectTo,
scopes: (_b = credentials.options) === null || _b === void 0 ? void 0 : _b.scopes,
queryParams: (_c = credentials.options) === null || _c === void 0 ? void 0 : _c.queryParams,
skipBrowserRedirect: true,
});
return await _request(this.fetch, 'GET', url, {
headers: this.headers,
jwt: (_e = (_d = data.session) === null || _d === void 0 ? void 0 : _d.access_token) !== null && _e !== void 0 ? _e : undefined,
});
});
if (error)
throw error;
if (isBrowser() && !((_a = credentials.options) === null || _a === void 0 ? void 0 : _a.skipBrowserRedirect)) {
window.location.assign(data === null || data === void 0 ? void 0 : data.url);
}
return this._returnResult({
data: { provider: credentials.provider, url: data === null || data === void 0 ? void 0 : data.url },
error: null,
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { provider: credentials.provider, url: null }, error });
}
throw error;
}
}
async linkIdentityIdToken(credentials) {
return await this._useSession(async (result) => {
var _a;
try {
const { error: sessionError, data: { session }, } = result;
if (sessionError)
throw sessionError;
const { options, provider, token, access_token, nonce } = credentials;
const res = await _request(this.fetch, 'POST', `${this.url}/token?grant_type=id_token`, {
headers: this.headers,
jwt: (_a = session === null || session === void 0 ? void 0 : session.access_token) !== null && _a !== void 0 ? _a : undefined,
body: {
provider,
id_token: token,
access_token,
nonce,
link_identity: true,
gotrue_meta_security: { captcha_token: options === null || options === void 0 ? void 0 : options.captchaToken },
},
xform: _sessionResponse,
});
const { data, error } = res;
if (error) {
return this._returnResult({ data: { user: null, session: null }, error });
}
else if (!data || !data.session || !data.user) {
return this._returnResult({
data: { user: null, session: null },
error: new AuthInvalidTokenResponseError(),
});
}
if (data.session) {
await this._saveSession(data.session);
await this._notifyAllSubscribers('USER_UPDATED', data.session);
}
return this._returnResult({ data, error });
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: { user: null, session: null }, error });
}
throw error;
}
});
}
/**
* Unlinks an identity from a user by deleting it. The user will no longer be able to sign in with that identity once it's unlinked.
*/
async unlinkIdentity(identity) {
try {
return await this._useSession(async (result) => {
var _a, _b;
const { data, error } = result;
if (error) {
throw error;
}
return await _request(this.fetch, 'DELETE', `${this.url}/user/identities/${identity.identity_id}`, {
headers: this.headers,
jwt: (_b = (_a = data.session) === null || _a === void 0 ? void 0 : _a.access_token) !== null && _b !== void 0 ? _b : undefined,
});
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
/**
* Generates a new JWT.
* @param refreshToken A valid refresh token that was returned on login.
*/
async _refreshAccessToken(refreshToken) {
const debugName = `#_refreshAccessToken(${refreshToken.substring(0, 5)}...)`;
this._debug(debugName, 'begin');
try {
const startedAt = Date.now();
// will attempt to refresh the token with exponential backoff
return await retryable(async (attempt) => {
if (attempt > 0) {
await sleep(200 * Math.pow(2, attempt - 1)); // 200, 400, 800, ...
}
this._debug(debugName, 'refreshing attempt', attempt);
return await _request(this.fetch, 'POST', `${this.url}/token?grant_type=refresh_token`, {
body: { refresh_token: refreshToken },
headers: this.headers,
xform: _sessionResponse,
});
}, (attempt, error) => {
const nextBackOffInterval = 200 * Math.pow(2, attempt);
return (error &&
isAuthRetryableFetchError(error) &&
// retryable only if the request can be sent before the backoff overflows the tick duration
Date.now() + nextBackOffInterval - startedAt < AUTO_REFRESH_TICK_DURATION_MS);
});
}
catch (error) {
this._debug(debugName, 'error', error);
if (isAuthError(error)) {
return this._returnResult({ data: { session: null, user: null }, error });
}
throw error;
}
finally {
this._debug(debugName, 'end');
}
}
_isValidSession(maybeSession) {
const isValidSession = typeof maybeSession === 'object' &&
maybeSession !== null &&
'access_token' in maybeSession &&
'refresh_token' in maybeSession &&
'expires_at' in maybeSession;
return isValidSession;
}
async _handleProviderSignIn(provider, options) {
const url = await this._getUrlForProvider(`${this.url}/authorize`, provider, {
redirectTo: options.redirectTo,
scopes: options.scopes,
queryParams: options.queryParams,
});
this._debug('#_handleProviderSignIn()', 'provider', provider, 'options', options, 'url', url);
// try to open on the browser
if (isBrowser() && !options.skipBrowserRedirect) {
window.location.assign(url);
}
return { data: { provider, url }, error: null };
}
/**
* Recovers the session from LocalStorage and refreshes the token
* Note: this method is async to accommodate for AsyncStorage e.g. in React native.
*/
async _recoverAndRefresh() {
var _a, _b;
const debugName = '#_recoverAndRefresh()';
this._debug(debugName, 'begin');
try {
const currentSession = (await getItemAsync(this.storage, this.storageKey));
if (currentSession && this.userStorage) {
let maybeUser = (await getItemAsync(this.userStorage, this.storageKey + '-user'));
if (!this.storage.isServer && Object.is(this.storage, this.userStorage) && !maybeUser) {
// storage and userStorage are the same storage medium, for example
// window.localStorage if userStorage does not have the user from
// storage stored, store it first thereby migrating the user object
// from storage -> userStorage
maybeUser = { user: currentSession.user };
await setItemAsync(this.userStorage, this.storageKey + '-user', maybeUser);
}
currentSession.user = (_a = maybeUser === null || maybeUser === void 0 ? void 0 : maybeUser.user) !== null && _a !== void 0 ? _a : userNotAvailableProxy();
}
else if (currentSession && !currentSession.user) {
// user storage is not set, let's check if it was previously enabled so
// we bring back the storage as it should be
if (!currentSession.user) {
// test if userStorage was previously enabled and the storage medium was the same, to move the user back under the same key
const separateUser = (await getItemAsync(this.storage, this.storageKey + '-user'));
if (separateUser && (separateUser === null || separateUser === void 0 ? void 0 : separateUser.user)) {
currentSession.user = separateUser.user;
await removeItemAsync(this.storage, this.storageKey + '-user');
await setItemAsync(this.storage, this.storageKey, currentSession);
}
else {
currentSession.user = userNotAvailableProxy();
}
}
}
this._debug(debugName, 'session from storage', currentSession);
if (!this._isValidSession(currentSession)) {
this._debug(debugName, 'session is not valid');
if (currentSession !== null) {
await this._removeSession();
}
return;
}
const expiresWithMargin = ((_b = currentSession.expires_at) !== null && _b !== void 0 ? _b : Infinity) * 1000 - Date.now() < EXPIRY_MARGIN_MS;
this._debug(debugName, `session has${expiresWithMargin ? '' : ' not'} expired with margin of ${EXPIRY_MARGIN_MS}s`);
if (expiresWithMargin) {
if (this.autoRefreshToken && currentSession.refresh_token) {
const { error } = await this._callRefreshToken(currentSession.refresh_token);
if (error) {
console.error(error);
if (!isAuthRetryableFetchError(error)) {
this._debug(debugName, 'refresh failed with a non-retryable error, removing the session', error);
await this._removeSession();
}
}
}
}
else if (currentSession.user &&
currentSession.user.__isUserNotAvailableProxy === true) {
// If we have a proxy user, try to get the real user data
try {
const { data, error: userError } = await this._getUser(currentSession.access_token);
if (!userError && (data === null || data === void 0 ? void 0 : data.user)) {
currentSession.user = data.user;
await this._saveSession(currentSession);
await this._notifyAllSubscribers('SIGNED_IN', currentSession);
}
else {
this._debug(debugName, 'could not get user data, skipping SIGNED_IN notification');
}
}
catch (getUserError) {
console.error('Error getting user data:', getUserError);
this._debug(debugName, 'error getting user data, skipping SIGNED_IN notification', getUserError);
}
}
else {
// no need to persist currentSession again, as we just loaded it from
// local storage; persisting it again may overwrite a value saved by
// another client with access to the same local storage
await this._notifyAllSubscribers('SIGNED_IN', currentSession);
}
}
catch (err) {
this._debug(debugName, 'error', err);
console.error(err);
return;
}
finally {
this._debug(debugName, 'end');
}
}
async _callRefreshToken(refreshToken) {
var _a, _b;
if (!refreshToken) {
throw new AuthSessionMissingError();
}
// refreshing is already in progress
if (this.refreshingDeferred) {
return this.refreshingDeferred.promise;
}
const debugName = `#_callRefreshToken(${refreshToken.substring(0, 5)}...)`;
this._debug(debugName, 'begin');
try {
this.refreshingDeferred = new Deferred();
const { data, error } = await this._refreshAccessToken(refreshToken);
if (error)
throw error;
if (!data.session)
throw new AuthSessionMissingError();
await this._saveSession(data.session);
await this._notifyAllSubscribers('TOKEN_REFRESHED', data.session);
const result = { data: data.session, error: null };
this.refreshingDeferred.resolve(result);
return result;
}
catch (error) {
this._debug(debugName, 'error', error);
if (isAuthError(error)) {
const result = { data: null, error };
if (!isAuthRetryableFetchError(error)) {
await this._removeSession();
}
(_a = this.refreshingDeferred) === null || _a === void 0 ? void 0 : _a.resolve(result);
return result;
}
(_b = this.refreshingDeferred) === null || _b === void 0 ? void 0 : _b.reject(error);
throw error;
}
finally {
this.refreshingDeferred = null;
this._debug(debugName, 'end');
}
}
async _notifyAllSubscribers(event, session, broadcast = true) {
const debugName = `#_notifyAllSubscribers(${event})`;
this._debug(debugName, 'begin', session, `broadcast = ${broadcast}`);
try {
if (this.broadcastChannel && broadcast) {
this.broadcastChannel.postMessage({ event, session });
}
const errors = [];
const promises = Array.from(this.stateChangeEmitters.values()).map(async (x) => {
try {
await x.callback(event, session);
}
catch (e) {
errors.push(e);
}
});
await Promise.all(promises);
if (errors.length > 0) {
for (let i = 0; i < errors.length; i += 1) {
console.error(errors[i]);
}
throw errors[0];
}
}
finally {
this._debug(debugName, 'end');
}
}
/**
* set currentSession and currentUser
* process to _startAutoRefreshToken if possible
*/
async _saveSession(session) {
this._debug('#_saveSession()', session);
// _saveSession is always called whenever a new session has been acquired
// so we can safely suppress the warning returned by future getSession calls
this.suppressGetSessionWarning = true;
// Create a shallow copy to work with, to avoid mutating the original session object if it's used elsewhere
const sessionToProcess = Object.assign({}, session);
const userIsProxy = sessionToProcess.user && sessionToProcess.user.__isUserNotAvailableProxy === true;
if (this.userStorage) {
if (!userIsProxy && sessionToProcess.user) {
// If it's a real user object, save it to userStorage.
await setItemAsync(this.userStorage, this.storageKey + '-user', {
user: sessionToProcess.user,
});
}
else if (userIsProxy) {
// If it's the proxy, it means user was not found in userStorage.
// We should ensure no stale user data for this key exists in userStorage if we were to save null,
// or simply not save the proxy. For now, we don't save the proxy here.
// If there's a need to clear userStorage if user becomes proxy, that logic would go here.
}
// Prepare the main session data for primary storage: remove the user property before cloning
// This is important because the original session.user might be the proxy
const mainSessionData = Object.assign({}, sessionToProcess);
delete mainSessionData.user; // Remove user (real or proxy) before cloning for main storage
const clonedMainSessionData = deepClone(mainSessionData);
await setItemAsync(this.storage, this.storageKey, clonedMainSessionData);
}
else {
// No userStorage is configured.
// In this case, session.user should ideally not be a proxy.
// If it were, structuredClone would fail. This implies an issue elsewhere if user is a proxy here
const clonedSession = deepClone(sessionToProcess); // sessionToProcess still has its original user property
await setItemAsync(this.storage, this.storageKey, clonedSession);
}
}
async _removeSession() {
this._debug('#_removeSession()');
await removeItemAsync(this.storage, this.storageKey);
await removeItemAsync(this.storage, this.storageKey + '-code-verifier');
await removeItemAsync(this.storage, this.storageKey + '-user');
if (this.userStorage) {
await removeItemAsync(this.userStorage, this.storageKey + '-user');
}
await this._notifyAllSubscribers('SIGNED_OUT', null);
}
/**
* Removes any registered visibilitychange callback.
*
* {@see #startAutoRefresh}
* {@see #stopAutoRefresh}
*/
_removeVisibilityChangedCallback() {
this._debug('#_removeVisibilityChangedCallback()');
const callback = this.visibilityChangedCallback;
this.visibilityChangedCallback = null;
try {
if (callback && isBrowser() && (window === null || window === void 0 ? void 0 : window.removeEventListener)) {
window.removeEventListener('visibilitychange', callback);
}
}
catch (e) {
console.error('removing visibilitychange callback failed', e);
}
}
/**
* This is the private implementation of {@link #startAutoRefresh}. Use this
* within the library.
*/
async _startAutoRefresh() {
await this._stopAutoRefresh();
this._debug('#_startAutoRefresh()');
const ticker = setInterval(() => this._autoRefreshTokenTick(), AUTO_REFRESH_TICK_DURATION_MS);
this.autoRefreshTicker = ticker;
if (ticker && typeof ticker === 'object' && typeof ticker.unref === 'function') {
// ticker is a NodeJS Timeout object that has an `unref` method
// https://nodejs.org/api/timers.html#timeoutunref
// When auto refresh is used in NodeJS (like for testing) the
// `setInterval` is preventing the process from being marked as
// finished and tests run endlessly. This can be prevented by calling
// `unref()` on the returned object.
ticker.unref();
// @ts-expect-error TS has no context of Deno
}
else if (typeof Deno !== 'undefined' && typeof Deno.unrefTimer === 'function') {
// similar like for NodeJS, but with the Deno API
// https://deno.land/api@latest?unstable&s=Deno.unrefTimer
// @ts-expect-error TS has no context of Deno
Deno.unrefTimer(ticker);
}
// run the tick immediately, but in the next pass of the event loop so that
// #_initialize can be allowed to complete without recursively waiting on
// itself
setTimeout(async () => {
await this.initializePromise;
await this._autoRefreshTokenTick();
}, 0);
}
/**
* This is the private implementation of {@link #stopAutoRefresh}. Use this
* within the library.
*/
async _stopAutoRefresh() {
this._debug('#_stopAutoRefresh()');
const ticker = this.autoRefreshTicker;
this.autoRefreshTicker = null;
if (ticker) {
clearInterval(ticker);
}
}
/**
* Starts an auto-refresh process in the background. The session is checked
* every few seconds. Close to the time of expiration a process is started to
* refresh the session. If refreshing fails it will be retried for as long as
* necessary.
*
* If you set the {@link GoTrueClientOptions#autoRefreshToken} you don't need
* to call this function, it will be called for you.
*
* On browsers the refresh process works only when the tab/window is in the
* foreground to conserve resources as well as prevent race conditions and
* flooding auth with requests. If you call this method any managed
* visibility change callback will be removed and you must manage visibility
* changes on your own.
*
* On non-browser platforms the refresh process works *continuously* in the
* background, which may not be desirable. You should hook into your
* platform's foreground indication mechanism and call these methods
* appropriately to conserve resources.
*
* {@see #stopAutoRefresh}
*/
async startAutoRefresh() {
this._removeVisibilityChangedCallback();
await this._startAutoRefresh();
}
/**
* Stops an active auto refresh process running in the background (if any).
*
* If you call this method any managed visibility change callback will be
* removed and you must manage visibility changes on your own.
*
* See {@link #startAutoRefresh} for more details.
*/
async stopAutoRefresh() {
this._removeVisibilityChangedCallback();
await this._stopAutoRefresh();
}
/**
* Runs the auto refresh token tick.
*/
async _autoRefreshTokenTick() {
this._debug('#_autoRefreshTokenTick()', 'begin');
try {
await this._acquireLock(0, async () => {
try {
const now = Date.now();
try {
return await this._useSession(async (result) => {
const { data: { session }, } = result;
if (!session || !session.refresh_token || !session.expires_at) {
this._debug('#_autoRefreshTokenTick()', 'no session');
return;
}
// session will expire in this many ticks (or has already expired if <= 0)
const expiresInTicks = Math.floor((session.expires_at * 1000 - now) / AUTO_REFRESH_TICK_DURATION_MS);
this._debug('#_autoRefreshTokenTick()', `access token expires in ${expiresInTicks} ticks, a tick lasts ${AUTO_REFRESH_TICK_DURATION_MS}ms, refresh threshold is ${AUTO_REFRESH_TICK_THRESHOLD} ticks`);
if (expiresInTicks <= AUTO_REFRESH_TICK_THRESHOLD) {
await this._callRefreshToken(session.refresh_token);
}
});
}
catch (e) {
console.error('Auto refresh tick failed with error. This is likely a transient error.', e);
}
}
finally {
this._debug('#_autoRefreshTokenTick()', 'end');
}
});
}
catch (e) {
if (e.isAcquireTimeout || e instanceof LockAcquireTimeoutError) {
this._debug('auto refresh token tick lock not available');
}
else {
throw e;
}
}
}
/**
* Registers callbacks on the browser / platform, which in-turn run
* algorithms when the browser window/tab are in foreground. On non-browser
* platforms it assumes always foreground.
*/
async _handleVisibilityChange() {
this._debug('#_handleVisibilityChange()');
if (!isBrowser() || !(window === null || window === void 0 ? void 0 : window.addEventListener)) {
if (this.autoRefreshToken) {
// in non-browser environments the refresh token ticker runs always
this.startAutoRefresh();
}
return false;
}
try {
this.visibilityChangedCallback = async () => await this._onVisibilityChanged(false);
window === null || window === void 0 ? void 0 : window.addEventListener('visibilitychange', this.visibilityChangedCallback);
// now immediately call the visbility changed callback to setup with the
// current visbility state
await this._onVisibilityChanged(true); // initial call
}
catch (error) {
console.error('_handleVisibilityChange', error);
}
}
/**
* Callback registered with `window.addEventListener('visibilitychange')`.
*/
async _onVisibilityChanged(calledFromInitialize) {
const methodName = `#_onVisibilityChanged(${calledFromInitialize})`;
this._debug(methodName, 'visibilityState', document.visibilityState);
if (document.visibilityState === 'visible') {
if (this.autoRefreshToken) {
// in browser environments the refresh token ticker runs only on focused tabs
// which prevents race conditions
this._startAutoRefresh();
}
if (!calledFromInitialize) {
// called when the visibility has changed, i.e. the browser
// transitioned from hidden -> visible so we need to see if the session
// should be recovered immediately... but to do that we need to acquire
// the lock first asynchronously
await this.initializePromise;
await this._acquireLock(-1, async () => {
if (document.visibilityState !== 'visible') {
this._debug(methodName, 'acquired the lock to recover the session, but the browser visibilityState is no longer visible, aborting');
// visibility has changed while waiting for the lock, abort
return;
}
// recover the session
await this._recoverAndRefresh();
});
}
}
else if (document.visibilityState === 'hidden') {
if (this.autoRefreshToken) {
this._stopAutoRefresh();
}
}
}
/**
* Generates the relevant login URL for a third-party provider.
* @param options.redirectTo A URL or mobile address to send the user to after they are confirmed.
* @param options.scopes A space-separated list of scopes granted to the OAuth application.
* @param options.queryParams An object of key-value pairs containing query parameters granted to the OAuth application.
*/
async _getUrlForProvider(url, provider, options) {
const urlParams = [`provider=${encodeURIComponent(provider)}`];
if (options === null || options === void 0 ? void 0 : options.redirectTo) {
urlParams.push(`redirect_to=${encodeURIComponent(options.redirectTo)}`);
}
if (options === null || options === void 0 ? void 0 : options.scopes) {
urlParams.push(`scopes=${encodeURIComponent(options.scopes)}`);
}
if (this.flowType === 'pkce') {
const [codeChallenge, codeChallengeMethod] = await getCodeChallengeAndMethod(this.storage, this.storageKey);
const flowParams = new URLSearchParams({
code_challenge: `${encodeURIComponent(codeChallenge)}`,
code_challenge_method: `${encodeURIComponent(codeChallengeMethod)}`,
});
urlParams.push(flowParams.toString());
}
if (options === null || options === void 0 ? void 0 : options.queryParams) {
const query = new URLSearchParams(options.queryParams);
urlParams.push(query.toString());
}
if (options === null || options === void 0 ? void 0 : options.skipBrowserRedirect) {
urlParams.push(`skip_http_redirect=${options.skipBrowserRedirect}`);
}
return `${url}?${urlParams.join('&')}`;
}
async _unenroll(params) {
try {
return await this._useSession(async (result) => {
var _a;
const { data: sessionData, error: sessionError } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
return await _request(this.fetch, 'DELETE', `${this.url}/factors/${params.factorId}`, {
headers: this.headers,
jwt: (_a = sessionData === null || sessionData === void 0 ? void 0 : sessionData.session) === null || _a === void 0 ? void 0 : _a.access_token,
});
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
async _enroll(params) {
try {
return await this._useSession(async (result) => {
var _a, _b;
const { data: sessionData, error: sessionError } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
const body = Object.assign({ friendly_name: params.friendlyName, factor_type: params.factorType }, (params.factorType === 'phone'
? { phone: params.phone }
: params.factorType === 'totp'
? { issuer: params.issuer }
: {}));
const { data, error } = (await _request(this.fetch, 'POST', `${this.url}/factors`, {
body,
headers: this.headers,
jwt: (_a = sessionData === null || sessionData === void 0 ? void 0 : sessionData.session) === null || _a === void 0 ? void 0 : _a.access_token,
}));
if (error) {
return this._returnResult({ data: null, error });
}
if (params.factorType === 'totp' && data.type === 'totp' && ((_b = data === null || data === void 0 ? void 0 : data.totp) === null || _b === void 0 ? void 0 : _b.qr_code)) {
data.totp.qr_code = `data:image/svg+xml;utf-8,${data.totp.qr_code}`;
}
return this._returnResult({ data, error: null });
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
async _verify(params) {
return this._acquireLock(-1, async () => {
try {
return await this._useSession(async (result) => {
var _a;
const { data: sessionData, error: sessionError } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
const body = Object.assign({ challenge_id: params.challengeId }, ('webauthn' in params
? {
webauthn: Object.assign(Object.assign({}, params.webauthn), { credential_response: params.webauthn.type === 'create'
? serializeCredentialCreationResponse(params.webauthn.credential_response)
: serializeCredentialRequestResponse(params.webauthn.credential_response) }),
}
: { code: params.code }));
const { data, error } = await _request(this.fetch, 'POST', `${this.url}/factors/${params.factorId}/verify`, {
body,
headers: this.headers,
jwt: (_a = sessionData === null || sessionData === void 0 ? void 0 : sessionData.session) === null || _a === void 0 ? void 0 : _a.access_token,
});
if (error) {
return this._returnResult({ data: null, error });
}
await this._saveSession(Object.assign({ expires_at: Math.round(Date.now() / 1000) + data.expires_in }, data));
await this._notifyAllSubscribers('MFA_CHALLENGE_VERIFIED', data);
return this._returnResult({ data, error });
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
});
}
async _challenge(params) {
return this._acquireLock(-1, async () => {
try {
return await this._useSession(async (result) => {
var _a;
const { data: sessionData, error: sessionError } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
const response = (await _request(this.fetch, 'POST', `${this.url}/factors/${params.factorId}/challenge`, {
body: params,
headers: this.headers,
jwt: (_a = sessionData === null || sessionData === void 0 ? void 0 : sessionData.session) === null || _a === void 0 ? void 0 : _a.access_token,
}));
if (response.error) {
return response;
}
const { data } = response;
if (data.type !== 'webauthn') {
return { data, error: null };
}
switch (data.webauthn.type) {
case 'create':
return {
data: Object.assign(Object.assign({}, data), { webauthn: Object.assign(Object.assign({}, data.webauthn), { credential_options: Object.assign(Object.assign({}, data.webauthn.credential_options), { publicKey: deserializeCredentialCreationOptions(data.webauthn.credential_options.publicKey) }) }) }),
error: null,
};
case 'request':
return {
data: Object.assign(Object.assign({}, data), { webauthn: Object.assign(Object.assign({}, data.webauthn), { credential_options: Object.assign(Object.assign({}, data.webauthn.credential_options), { publicKey: deserializeCredentialRequestOptions(data.webauthn.credential_options.publicKey) }) }) }),
error: null,
};
}
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
});
}
/**
* {@see GoTrueMFAApi#challengeAndVerify}
*/
async _challengeAndVerify(params) {
// both _challenge and _verify independently acquire the lock, so no need
// to acquire it here
const { data: challengeData, error: challengeError } = await this._challenge({
factorId: params.factorId,
});
if (challengeError) {
return this._returnResult({ data: null, error: challengeError });
}
return await this._verify({
factorId: params.factorId,
challengeId: challengeData.id,
code: params.code,
});
}
/**
* {@see GoTrueMFAApi#listFactors}
*/
async _listFactors() {
var _a;
// use #getUser instead of #_getUser as the former acquires a lock
const { data: { user }, error: userError, } = await this.getUser();
if (userError) {
return { data: null, error: userError };
}
const data = {
all: [],
phone: [],
totp: [],
webauthn: [],
};
// loop over the factors ONCE
for (const factor of (_a = user === null || user === void 0 ? void 0 : user.factors) !== null && _a !== void 0 ? _a : []) {
data.all.push(factor);
if (factor.status === 'verified') {
;
data[factor.factor_type].push(factor);
}
}
return {
data,
error: null,
};
}
/**
* {@see GoTrueMFAApi#getAuthenticatorAssuranceLevel}
*/
async _getAuthenticatorAssuranceLevel() {
var _a, _b;
const { data: { session }, error: sessionError, } = await this.getSession();
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
if (!session) {
return {
data: { currentLevel: null, nextLevel: null, currentAuthenticationMethods: [] },
error: null,
};
}
const { payload } = decodeJWT(session.access_token);
let currentLevel = null;
if (payload.aal) {
currentLevel = payload.aal;
}
let nextLevel = currentLevel;
const verifiedFactors = (_b = (_a = session.user.factors) === null || _a === void 0 ? void 0 : _a.filter((factor) => factor.status === 'verified')) !== null && _b !== void 0 ? _b : [];
if (verifiedFactors.length > 0) {
nextLevel = 'aal2';
}
const currentAuthenticationMethods = payload.amr || [];
return { data: { currentLevel, nextLevel, currentAuthenticationMethods }, error: null };
}
/**
* Retrieves details about an OAuth authorization request.
* Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.
*
* Returns authorization details including client info, scopes, and user information.
* If the API returns a redirect_uri, it means consent was already given - the caller
* should handle the redirect manually if needed.
*/
async _getAuthorizationDetails(authorizationId) {
try {
return await this._useSession(async (result) => {
const { data: { session }, error: sessionError, } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
if (!session) {
return this._returnResult({ data: null, error: new AuthSessionMissingError() });
}
return await _request(this.fetch, 'GET', `${this.url}/oauth/authorizations/${authorizationId}`, {
headers: this.headers,
jwt: session.access_token,
xform: (data) => ({ data, error: null }),
});
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
/**
* Approves an OAuth authorization request.
* Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.
*/
async _approveAuthorization(authorizationId, options) {
try {
return await this._useSession(async (result) => {
const { data: { session }, error: sessionError, } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
if (!session) {
return this._returnResult({ data: null, error: new AuthSessionMissingError() });
}
const response = await _request(this.fetch, 'POST', `${this.url}/oauth/authorizations/${authorizationId}/consent`, {
headers: this.headers,
jwt: session.access_token,
body: { action: 'approve' },
xform: (data) => ({ data, error: null }),
});
if (response.data && response.data.redirect_url) {
// Automatically redirect in browser unless skipBrowserRedirect is true
if (isBrowser() && !(options === null || options === void 0 ? void 0 : options.skipBrowserRedirect)) {
window.location.assign(response.data.redirect_url);
}
}
return response;
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
/**
* Denies an OAuth authorization request.
* Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.
*/
async _denyAuthorization(authorizationId, options) {
try {
return await this._useSession(async (result) => {
const { data: { session }, error: sessionError, } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
if (!session) {
return this._returnResult({ data: null, error: new AuthSessionMissingError() });
}
const response = await _request(this.fetch, 'POST', `${this.url}/oauth/authorizations/${authorizationId}/consent`, {
headers: this.headers,
jwt: session.access_token,
body: { action: 'deny' },
xform: (data) => ({ data, error: null }),
});
if (response.data && response.data.redirect_url) {
// Automatically redirect in browser unless skipBrowserRedirect is true
if (isBrowser() && !(options === null || options === void 0 ? void 0 : options.skipBrowserRedirect)) {
window.location.assign(response.data.redirect_url);
}
}
return response;
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
/**
* Lists all OAuth grants that the authenticated user has authorized.
* Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.
*/
async _listOAuthGrants() {
try {
return await this._useSession(async (result) => {
const { data: { session }, error: sessionError, } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
if (!session) {
return this._returnResult({ data: null, error: new AuthSessionMissingError() });
}
return await _request(this.fetch, 'GET', `${this.url}/user/oauth/grants`, {
headers: this.headers,
jwt: session.access_token,
xform: (data) => ({ data, error: null }),
});
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
/**
* Revokes a user's OAuth grant for a specific client.
* Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.
*/
async _revokeOAuthGrant(options) {
try {
return await this._useSession(async (result) => {
const { data: { session }, error: sessionError, } = result;
if (sessionError) {
return this._returnResult({ data: null, error: sessionError });
}
if (!session) {
return this._returnResult({ data: null, error: new AuthSessionMissingError() });
}
await _request(this.fetch, 'DELETE', `${this.url}/user/oauth/grants`, {
headers: this.headers,
jwt: session.access_token,
query: { client_id: options.clientId },
noResolveJson: true,
});
return { data: {}, error: null };
});
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
async fetchJwk(kid, jwks = { keys: [] }) {
// try fetching from the supplied jwks
let jwk = jwks.keys.find((key) => key.kid === kid);
if (jwk) {
return jwk;
}
const now = Date.now();
// try fetching from cache
jwk = this.jwks.keys.find((key) => key.kid === kid);
// jwk exists and jwks isn't stale
if (jwk && this.jwks_cached_at + JWKS_TTL > now) {
return jwk;
}
// jwk isn't cached in memory so we need to fetch it from the well-known endpoint
const { data, error } = await _request(this.fetch, 'GET', `${this.url}/.well-known/jwks.json`, {
headers: this.headers,
});
if (error) {
throw error;
}
if (!data.keys || data.keys.length === 0) {
return null;
}
this.jwks = data;
this.jwks_cached_at = now;
// Find the signing key
jwk = data.keys.find((key) => key.kid === kid);
if (!jwk) {
return null;
}
return jwk;
}
/**
* Extracts the JWT claims present in the access token by first verifying the
* JWT against the server's JSON Web Key Set endpoint
* `/.well-known/jwks.json` which is often cached, resulting in significantly
* faster responses. Prefer this method over {@link #getUser} which always
* sends a request to the Auth server for each JWT.
*
* If the project is not using an asymmetric JWT signing key (like ECC or
* RSA) it always sends a request to the Auth server (similar to {@link
* #getUser}) to verify the JWT.
*
* @param jwt An optional specific JWT you wish to verify, not the one you
* can obtain from {@link #getSession}.
* @param options Various additional options that allow you to customize the
* behavior of this method.
*/
async getClaims(jwt, options = {}) {
try {
let token = jwt;
if (!token) {
const { data, error } = await this.getSession();
if (error || !data.session) {
return this._returnResult({ data: null, error });
}
token = data.session.access_token;
}
const { header, payload, signature, raw: { header: rawHeader, payload: rawPayload }, } = decodeJWT(token);
if (!(options === null || options === void 0 ? void 0 : options.allowExpired)) {
// Reject expired JWTs should only happen if jwt argument was passed
validateExp(payload.exp);
}
const signingKey = !header.alg ||
header.alg.startsWith('HS') ||
!header.kid ||
!('crypto' in globalThis && 'subtle' in globalThis.crypto)
? null
: await this.fetchJwk(header.kid, (options === null || options === void 0 ? void 0 : options.keys) ? { keys: options.keys } : options === null || options === void 0 ? void 0 : options.jwks);
// If symmetric algorithm or WebCrypto API is unavailable, fallback to getUser()
if (!signingKey) {
const { error } = await this.getUser(token);
if (error) {
throw error;
}
// getUser succeeds so the claims in the JWT can be trusted
return {
data: {
claims: payload,
header,
signature,
},
error: null,
};
}
const algorithm = getAlgorithm(header.alg);
// Convert JWK to CryptoKey
const publicKey = await crypto.subtle.importKey('jwk', signingKey, algorithm, true, [
'verify',
]);
// Verify the signature
const isValid = await crypto.subtle.verify(algorithm, publicKey, signature, stringToUint8Array(`${rawHeader}.${rawPayload}`));
if (!isValid) {
throw new AuthInvalidJwtError('Invalid JWT signature');
}
// If verification succeeds, decode and return claims
return {
data: {
claims: payload,
header,
signature,
},
error: null,
};
}
catch (error) {
if (isAuthError(error)) {
return this._returnResult({ data: null, error });
}
throw error;
}
}
}
GoTrueClient.nextInstanceID = {};
export default GoTrueClient;
//# sourceMappingURL=GoTrueClient.js.map