convex
Version:
Client for the Convex Cloud
377 lines (376 loc) • 10.5 kB
JavaScript
;
import { errors, custom } from "openid-client";
import {
bigBrainAPI,
logAndHandleFetchError,
throwingFetch,
isWebContainer
} from "./utils/utils.js";
import open from "open";
import chalk from "chalk";
import { provisionHost } from "./config.js";
import { version } from "../version.js";
import {
changeSpinner,
logError,
logFailure,
logFinishedStep,
logMessage,
logOutput,
logVerbose,
showSpinner
} from "../../bundler/context.js";
import { Issuer } from "openid-client";
import { hostname } from "os";
import { execSync } from "child_process";
import { promptString, promptYesNo } from "./utils/prompts.js";
import {
formatPathForPrinting,
globalConfigPath,
modifyGlobalConfig
} from "./utils/globalConfig.js";
import { updateBigBrainAuthAfterLogin } from "./deploymentSelection.js";
const SCOPE = "openid email profile";
const AUDIENCE = "https://console.convex.dev/api/";
custom.setHttpOptionsDefaults({
timeout: parseInt(process.env.OPENID_CLIENT_TIMEOUT || "10000")
});
export async function checkAuthorization(ctx, acceptOptIns) {
const header = ctx.bigBrainAuth()?.header ?? null;
if (header === null) {
return false;
}
try {
const resp = await fetch(`${provisionHost}/api/authorize`, {
method: "HEAD",
headers: {
Authorization: header,
"Convex-Client": `npm-cli-${version}`
}
});
if (resp.status !== 200) {
return false;
}
} catch (e) {
logError(
ctx,
`Unexpected error when authorizing - are you connected to the internet?`
);
return await logAndHandleFetchError(ctx, e);
}
const shouldContinue = await optins(ctx, acceptOptIns);
if (!shouldContinue) {
return await ctx.crash({
exitCode: 1,
errorType: "fatal",
printedMessage: null
});
}
return true;
}
async function performDeviceAuthorization(ctx, auth0Client, shouldOpen) {
let handle;
try {
handle = await auth0Client.deviceAuthorization({
scope: SCOPE,
audience: AUDIENCE
});
} catch {
return promptString(ctx, {
message: "Open https://dashboard.convex.dev/auth, log in and paste the token here:"
});
}
const { verification_uri_complete, user_code, expires_in } = handle;
logMessage(
ctx,
`Visit ${verification_uri_complete} to finish logging in.
You should see the following code which expires in ${expires_in % 60 === 0 ? `${expires_in / 60} minutes` : `${expires_in} seconds`}: ${user_code}`
);
if (shouldOpen) {
shouldOpen = await promptYesNo(ctx, {
message: `Open the browser?`,
default: true
});
}
if (shouldOpen) {
showSpinner(
ctx,
`Opening ${verification_uri_complete} in your browser to log in...
`
);
try {
const p = await open(verification_uri_complete);
p.once("error", () => {
changeSpinner(
ctx,
`Manually open ${verification_uri_complete} in your browser to log in.`
);
});
changeSpinner(ctx, "Waiting for the confirmation...");
} catch {
logError(ctx, chalk.red(`Unable to open browser.`));
changeSpinner(
ctx,
`Manually open ${verification_uri_complete} in your browser to log in.`
);
}
} else {
showSpinner(
ctx,
`Open ${verification_uri_complete} in your browser to log in.`
);
}
try {
const tokens = await handle.poll();
if (typeof tokens.access_token === "string") {
return tokens.access_token;
} else {
throw Error("Access token is missing");
}
} catch (err) {
switch (err.error) {
case "access_denied":
return await ctx.crash({
exitCode: 1,
errorType: "fatal",
printedMessage: "Access denied.",
errForSentry: err
});
case "expired_token":
return await ctx.crash({
exitCode: 1,
errorType: "fatal",
printedMessage: "Device flow expired.",
errForSentry: err
});
default: {
const message = err instanceof errors.OPError ? `Error = ${err.error}; error_description = ${err.error_description}` : `Login failed with error: ${err}`;
return await ctx.crash({
exitCode: 1,
errorType: "fatal",
printedMessage: message,
errForSentry: err
});
}
}
}
}
async function performPasswordAuthentication(ctx, issuer, clientId, username, password) {
const options = {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: new URLSearchParams({
grant_type: "password",
username,
password,
scope: SCOPE,
client_id: clientId,
audience: AUDIENCE
// Note that there is no client secret provided, as Auth0 refuses to require it for untrusted apps.
})
};
try {
const response = await throwingFetch(
new URL("/oauth/token", issuer).href,
options
);
const data = await response.json();
if (typeof data.access_token === "string") {
return data.access_token;
} else {
throw Error("Access token is missing");
}
} catch (err) {
logFailure(ctx, `Password flow failed: ${err}`);
if (err.response) {
logError(ctx, chalk.red(`${JSON.stringify(err.response.data)}`));
}
return await ctx.crash({
exitCode: 1,
errorType: "fatal",
errForSentry: err,
printedMessage: null
});
}
}
export async function performLogin(ctx, {
overrideAuthUrl,
overrideAuthClient,
overrideAuthUsername,
overrideAuthPassword,
overrideAccessToken,
authFlow,
open: open2,
acceptOptIns,
dumpAccessToken,
deviceName: deviceNameOverride,
anonymousId
} = {}) {
authFlow = authFlow || "auto";
let deviceName = deviceNameOverride ?? "";
if (!deviceName && process.platform === "darwin") {
try {
deviceName = execSync("scutil --get ComputerName").toString().trim();
} catch {
}
}
if (!deviceName) {
deviceName = hostname();
}
if (!deviceNameOverride) {
logMessage(
ctx,
chalk.bold(`Welcome to developing with Convex, let's get you logged in.`)
);
deviceName = await promptString(ctx, {
message: "Device name:",
default: deviceName
});
}
const issuer = overrideAuthUrl ?? "https://auth.convex.dev";
let auth0;
let accessToken;
if (authFlow === "paste" || authFlow === "auto" && isWebContainer()) {
accessToken = await promptString(ctx, {
message: "Open https://dashboard.convex.dev/auth, log in and paste the token here:"
});
} else {
try {
auth0 = await Issuer.discover(issuer);
} catch {
accessToken = await promptString(ctx, {
message: "Open https://dashboard.convex.dev/auth, log in and paste the token here:"
});
}
}
if (auth0) {
const clientId = overrideAuthClient ?? "HFtA247jp9iNs08NTLIB7JsNPMmRIyfi";
const auth0Client = new auth0.Client({
client_id: clientId,
token_endpoint_auth_method: "none",
id_token_signed_response_alg: "RS256"
});
if (overrideAccessToken) {
accessToken = overrideAccessToken;
} else if (overrideAuthUsername && overrideAuthPassword) {
accessToken = await performPasswordAuthentication(
ctx,
issuer,
clientId,
overrideAuthUsername,
overrideAuthPassword
);
} else {
accessToken = await performDeviceAuthorization(
ctx,
auth0Client,
open2 ?? true
);
}
}
if (dumpAccessToken) {
logOutput(ctx, `${accessToken}`);
return await ctx.crash({
exitCode: 0,
errorType: "fatal",
printedMessage: null
});
}
const authorizeArgs = {
authnToken: accessToken,
deviceName,
anonymousId
};
const data = await bigBrainAPI({
ctx,
method: "POST",
url: "authorize",
data: authorizeArgs
});
const globalConfig = { accessToken: data.accessToken };
try {
await modifyGlobalConfig(ctx, globalConfig);
const path = globalConfigPath();
logFinishedStep(ctx, `Saved credentials to ${formatPathForPrinting(path)}`);
} catch (err) {
return await ctx.crash({
exitCode: 1,
errorType: "invalid filesystem data",
errForSentry: err,
printedMessage: null
});
}
logVerbose(ctx, `performLogin: updating big brain auth after login`);
await updateBigBrainAuthAfterLogin(ctx, data.accessToken);
logVerbose(
ctx,
`performLogin: checking opt ins, acceptOptIns: ${acceptOptIns}`
);
const shouldContinue = await optins(ctx, acceptOptIns ?? false);
if (!shouldContinue) {
return await ctx.crash({
exitCode: 1,
errorType: "fatal",
printedMessage: null
});
}
}
async function optins(ctx, acceptOptIns) {
const bbAuth = ctx.bigBrainAuth();
if (bbAuth === null) {
return false;
}
switch (bbAuth.kind) {
case "accessToken":
break;
case "projectKey":
case "previewDeployKey":
return true;
default: {
const _exhaustivenessCheck = bbAuth;
return await ctx.crash({
exitCode: 1,
errorType: "fatal",
errForSentry: `Unexpected auth kind ${bbAuth.kind}`,
printedMessage: "Hit an unexpected error while logging in."
});
}
}
const data = await bigBrainAPI({
ctx,
method: "POST",
url: "check_opt_ins"
});
if (data.optInsToAccept.length === 0) {
return true;
}
for (const optInToAccept of data.optInsToAccept) {
const confirmed = acceptOptIns || await promptYesNo(ctx, {
message: optInToAccept.message
});
if (!confirmed) {
logFailure(ctx, "Please accept the Terms of Service to use Convex.");
return Promise.resolve(false);
}
}
const optInsAccepted = data.optInsToAccept.map((o) => o.optIn);
const args = { optInsAccepted };
await bigBrainAPI({ ctx, method: "POST", url: "accept_opt_ins", data: args });
return true;
}
export async function ensureLoggedIn(ctx, options) {
const isLoggedIn = await checkAuthorization(ctx, false);
if (!isLoggedIn) {
if (options?.message) {
logMessage(ctx, options.message);
}
await performLogin(ctx, {
acceptOptIns: false,
overrideAuthUrl: options?.overrideAuthUrl,
overrideAuthClient: options?.overrideAuthClient,
overrideAuthUsername: options?.overrideAuthUsername,
overrideAuthPassword: options?.overrideAuthPassword
});
}
}
//# sourceMappingURL=login.js.map