Skip to content

Commit

Permalink
sql:migrate --force shouldn't prompt (#7208)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredzqm committed May 22, 2024
1 parent 649da13 commit ddb40f5
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 33 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixes an issue where dataconnect:sql:migrate still prompts for confirmation even with `--force`. (#7208)
1 change: 0 additions & 1 deletion src/commands/dataconnect-sql-migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export const command = new Command("dataconnect:sql:migrate [serviceId]")
const diffs = await migrateSchema({
options,
schema: serviceInfo.schema,
allowNonInteractiveMigration: true,
validateOnly: true,
});
if (diffs.length) {
Expand Down
63 changes: 32 additions & 31 deletions src/dataconnect/schemaMigration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ export async function diffSchema(schema: Schema): Promise<Diff[]> {
export async function migrateSchema(args: {
options: Options;
schema: Schema;
allowNonInteractiveMigration: boolean;
/** true for `dataconnect:sql:migrate`, false for `deploy` */
validateOnly: boolean;
}): Promise<Diff[]> {
const { options, schema, allowNonInteractiveMigration, validateOnly } = args;
const { options, schema, validateOnly } = args;

const { serviceName, instanceId, instanceName, databaseId } = getIdentifiers(schema);
await ensureServiceIsConnectedToCloudSql(
Expand All @@ -77,26 +77,20 @@ export async function migrateSchema(args: {
throw err;
}

const migrationMode = await promptForSchemaMigration(
options,
databaseId,
incompatible,
validateOnly,
);

const shouldDeleteInvalidConnectors = await promptForInvalidConnectorError(
options,
serviceName,
invalidConnectors,
validateOnly,
);

const migrationMode = incompatible
? await promptForSchemaMigration(
options,
databaseId,
incompatible,
allowNonInteractiveMigration,
)
: "none";
// First, error out if we aren't making all changes
if (migrationMode === "none" && incompatible) {
throw new FirebaseError("Command aborted.");
}

let diffs: Diff[] = [];
if (incompatible) {
diffs = await handleIncompatibleSchemaError({
Expand Down Expand Up @@ -205,44 +199,51 @@ async function handleIncompatibleSchemaError(args: {
async function promptForSchemaMigration(
options: Options,
databaseName: string,
err: IncompatibleSqlSchemaError,
allowNonInteractiveMigration: boolean,
): Promise<"none" | "safe" | "all"> {
err: IncompatibleSqlSchemaError | undefined,
validateOnly: boolean,
): Promise<"none" | "all"> {
if (!err) {
return "none";
}
displaySchemaChanges(err);
if (!options.nonInteractive) {
// Always prompt in interactive mode. Destructive migrations are too potentially dangerous to not prompt for with --force
if (validateOnly && options.force) {
// `firebase dataconnect:sql:migrate --force` performs all migrations
return "all";
}
// `firebase deploy` and `firebase dataconnect:sql:migrate` always prompt for any SQL migration changes.
// Destructive migrations are too potentially dangerous to not prompt for with --force
const choices = err.destructive
? [
{ name: "Execute all changes (including destructive changes)", value: "all" },
{ name: "Abort changes", value: "none" },
]
: [
{ name: "Execute changes", value: "safe" },
{ name: "Execute changes", value: "all" },
{ name: "Abort changes", value: "none" },
];
return await promptOnce({
message: `Would you like to execute these changes against ${databaseName}?`,
type: "list",
choices,
});
} else if (!allowNonInteractiveMigration) {
// `deploy --nonInteractive` performs no migrations
logger.error(
"Your database schema is incompatible with your Data Connect schema. Run `firebase dataconnect:sql:migrate` to migrate your database schema",
}
if (!validateOnly) {
// `firebase deploy --nonInteractive` performs no migrations
throw new FirebaseError(
"Command aborted. Your database schema is incompatible with your Data Connect schema. Run `firebase dataconnect:sql:migrate` to migrate your database schema",
);
return "none";
} else if (options.force) {
// `dataconnect:sql:migrate --nonInteractive --force` performs all migrations
// `dataconnect:sql:migrate --nonInteractive --force` performs all migrations.
return "all";
} else if (!err.destructive) {
// `dataconnect:sql:migrate --nonInteractive` performs only safe migrations
return "safe";
// `dataconnect:sql:migrate --nonInteractive` performs only non-destructive migrations.
return "all";
} else {
// `dataconnect:sql:migrate --nonInteractive` errors out if there are destructive migrations
logger.error(
"This schema migration includes potentially destructive changes. If you'd like to execute it anyway, rerun this command with --force",
throw new FirebaseError(
"Command aborted. This schema migration includes potentially destructive changes. If you'd like to execute it anyway, rerun this command with --force",
);
return "none";
}
}

Expand Down
1 change: 0 additions & 1 deletion src/deploy/dataconnect/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export default async function (
await migrateSchema({
options,
schema: s,
allowNonInteractiveMigration: false,
validateOnly: false,
});
}
Expand Down

0 comments on commit ddb40f5

Please sign in to comment.