omniroute / src /sse /services /tokenRefresh.ts
igorkurgin's picture
Deploy OmniRoute to Hugging Face Space
35743bd verified
Raw
History Blame Contribute Delete
9.25 kB
// Re-export from open-sse with local logger
import * as log from "../utils/logger";
import { updateProviderConnection, resolveProxyForProvider } from "@/lib/localDb";
import {
TOKEN_EXPIRY_BUFFER_MS as BUFFER_MS,
refreshAccessToken as _refreshAccessToken,
refreshClaudeOAuthToken as _refreshClaudeOAuthToken,
refreshGoogleToken as _refreshGoogleToken,
refreshQwenToken as _refreshQwenToken,
refreshCodexToken as _refreshCodexToken,
refreshQoderToken as _refreshQoderToken,
refreshGitHubToken as _refreshGitHubToken,
refreshCopilotToken as _refreshCopilotToken,
getAccessToken as _getAccessToken,
refreshTokenByProvider as _refreshTokenByProvider,
formatProviderCredentials as _formatProviderCredentials,
getAllAccessTokens as _getAllAccessTokens,
} from "@omniroute/open-sse/services/tokenRefresh.ts";
// Per-connection mutex: prevents concurrent OAuth refresh for rotating tokens.
// Key = connectionId, Value = { promise: in-flight refresh, waiters: count of callers sharing it }
const connectionRefreshMutex = new Map<string, { promise: Promise<any>; waiters: number }>();
export async function withConnectionRefreshMutex<T>(
connectionId: string,
fn: () => Promise<T>
): Promise<T> {
const existing = connectionRefreshMutex.get(connectionId);
if (existing) {
existing.waiters++;
log.info("TOKEN_REFRESH", "Concurrent refresh detected — sharing in-flight refresh", {
connectionId,
waiters: existing.waiters,
});
return existing.promise as Promise<T>;
}
const entry: { promise: Promise<T>; waiters: number } = { promise: null as any, waiters: 0 };
entry.promise = fn().finally(() => {
connectionRefreshMutex.delete(connectionId);
});
connectionRefreshMutex.set(connectionId, entry);
return entry.promise;
}
export const TOKEN_EXPIRY_BUFFER_MS = BUFFER_MS;
export const refreshAccessToken = async (
provider: string,
refreshToken: string,
credentials: any
) => {
const proxy = await resolveProxyForProvider(provider);
return _refreshAccessToken(provider, refreshToken, credentials, log, proxy);
};
export const refreshClaudeOAuthToken = async (refreshToken: string) => {
const proxy = await resolveProxyForProvider("claude");
return _refreshClaudeOAuthToken(refreshToken, log, proxy);
};
export const refreshGoogleToken = async (
refreshToken: string,
clientId: string,
clientSecret: string,
provider: string = "gemini"
) => {
const proxy = await resolveProxyForProvider(provider);
return _refreshGoogleToken(refreshToken, clientId, clientSecret, log, proxy);
};
export const refreshQwenToken = async (refreshToken: string) => {
const proxy = await resolveProxyForProvider("qwen");
return _refreshQwenToken(refreshToken, log, proxy);
};
export const refreshCodexToken = async (refreshToken: string) => {
const proxy = await resolveProxyForProvider("codex");
return _refreshCodexToken(refreshToken, log, proxy);
};
export const refreshQoderToken = async (refreshToken: string) => {
const proxy = await resolveProxyForProvider("qoder");
return _refreshQoderToken(refreshToken, log, proxy);
};
export const refreshGitHubToken = async (refreshToken: string) => {
const proxy = await resolveProxyForProvider("github");
return _refreshGitHubToken(refreshToken, log, proxy);
};
export const refreshCopilotToken = async (githubAccessToken: string) => {
const proxy = await resolveProxyForProvider("github");
return _refreshCopilotToken(githubAccessToken, log, proxy);
};
export const getAccessToken = async (provider: string, credentials: any) => {
const proxy = await resolveProxyForProvider(provider);
return _getAccessToken(provider, credentials, log, proxy);
};
export const refreshTokenByProvider = async (provider: string, credentials: any) => {
const proxy = await resolveProxyForProvider(provider);
return _refreshTokenByProvider(provider, credentials, log, proxy);
};
export const formatProviderCredentials = (provider: string, credentials: any) =>
_formatProviderCredentials(provider, credentials, log);
export const getAllAccessTokens = (userInfo: any) => _getAllAccessTokens(userInfo, log);
// Local-specific: Update credentials in localDb
export async function updateProviderCredentials(connectionId: string, newCredentials: any) {
try {
const updates: Record<string, any> = {};
if (newCredentials.accessToken) {
updates.accessToken = newCredentials.accessToken;
}
if (newCredentials.refreshToken) {
updates.refreshToken = newCredentials.refreshToken;
}
if (newCredentials.expiresIn) {
const expiresAt = new Date(Date.now() + newCredentials.expiresIn * 1000).toISOString();
updates.expiresAt = expiresAt;
updates.tokenExpiresAt = expiresAt;
updates.expiresIn = newCredentials.expiresIn;
} else if (newCredentials.expiresAt) {
updates.expiresAt = newCredentials.expiresAt;
updates.tokenExpiresAt = newCredentials.expiresAt;
}
if (newCredentials.providerSpecificData) {
updates.providerSpecificData = newCredentials.providerSpecificData;
}
// Cookie/session providers (chatgpt-web, ...) refresh by rotating the
// stored apiKey blob — propagate that here too so DB credentials don't
// go stale after Set-Cookie rotation.
if (newCredentials.apiKey) {
updates.apiKey = newCredentials.apiKey;
}
if (newCredentials.testStatus) {
updates.testStatus = newCredentials.testStatus;
}
const result = await updateProviderConnection(connectionId, updates);
log.info("TOKEN_REFRESH", "Credentials updated in localDb", {
connectionId,
success: !!result,
});
return !!result;
} catch (error) {
log.error("TOKEN_REFRESH", "Error updating credentials in localDb", {
connectionId,
error: (error as any).message,
});
return false;
}
}
// Local-specific: Check and refresh token proactively
export async function checkAndRefreshToken(provider: string, credentials: any) {
let updatedCredentials = { ...credentials };
// Check regular token expiry
if (updatedCredentials.expiresAt) {
const expiresAt = new Date(updatedCredentials.expiresAt).getTime();
const now = Date.now();
if (expiresAt - now < TOKEN_EXPIRY_BUFFER_MS) {
log.info("TOKEN_REFRESH", "Token expiring soon, refreshing proactively", {
provider,
expiresIn: Math.round((expiresAt - now) / 1000),
});
const connectionId: string | undefined = updatedCredentials.connectionId;
const newCredentials = connectionId
? await withConnectionRefreshMutex(connectionId, () =>
getAccessToken(provider, updatedCredentials)
)
: await getAccessToken(provider, updatedCredentials);
if (newCredentials && newCredentials.accessToken) {
await updateProviderCredentials(updatedCredentials.connectionId, newCredentials);
updatedCredentials = {
...updatedCredentials,
accessToken: newCredentials.accessToken,
refreshToken: newCredentials.refreshToken || updatedCredentials.refreshToken,
expiresAt: newCredentials.expiresIn
? new Date(Date.now() + newCredentials.expiresIn * 1000).toISOString()
: updatedCredentials.expiresAt,
};
}
}
}
// Check GitHub copilot token expiry
if (provider === "github" && updatedCredentials.providerSpecificData?.copilotTokenExpiresAt) {
const copilotExpiresAt = updatedCredentials.providerSpecificData.copilotTokenExpiresAt * 1000;
const now = Date.now();
if (copilotExpiresAt - now < TOKEN_EXPIRY_BUFFER_MS) {
log.info("TOKEN_REFRESH", "Copilot token expiring soon, refreshing proactively", {
provider,
expiresIn: Math.round((copilotExpiresAt - now) / 1000),
});
const copilotToken = await refreshCopilotToken(updatedCredentials.accessToken);
if (copilotToken) {
await updateProviderCredentials(updatedCredentials.connectionId, {
providerSpecificData: {
...updatedCredentials.providerSpecificData,
copilotToken: copilotToken.token,
copilotTokenExpiresAt: copilotToken.expiresAt,
},
});
updatedCredentials.providerSpecificData = {
...updatedCredentials.providerSpecificData,
copilotToken: copilotToken.token,
copilotTokenExpiresAt: copilotToken.expiresAt,
};
// Sync to top-level so buildHeaders() picks up the fresh token
updatedCredentials.copilotToken = copilotToken.token;
}
}
}
return updatedCredentials;
}
// Local-specific: Refresh GitHub and Copilot tokens together
export async function refreshGitHubAndCopilotTokens(credentials: any) {
const newGitHubCredentials = await refreshGitHubToken(credentials.refreshToken);
if (newGitHubCredentials?.accessToken) {
const copilotToken = await refreshCopilotToken(newGitHubCredentials.accessToken);
if (copilotToken) {
return {
...newGitHubCredentials,
providerSpecificData: {
copilotToken: copilotToken.token,
copilotTokenExpiresAt: copilotToken.expiresAt,
},
};
}
}
return newGitHubCredentials;
}