feat: add deploy command

This commit is contained in:
Mauricio Siu
2024-06-22 16:22:30 -06:00
parent 209eadce99
commit e48c58c883
8 changed files with 625 additions and 2 deletions

View File

@@ -0,0 +1,89 @@
import { Command } from "@oclif/core";
import { readAuthConfig } from "../../../utils/utils.js";
import chalk from "chalk";
import { getProject, getProjects } from "../../../utils/shared.js";
import inquirer from "inquirer";
import type { Answers } from "../../app/create.js";
import axios from "axios";
export default class DatabaseMysqlDeploy extends Command {
static description = "Deploy an mysql to a project.";
static examples = ["$ <%= config.bin %> app deploy"];
public async run(): Promise<void> {
const auth = await readAuthConfig(this);
console.log(chalk.blue.bold("\n Listing all Projects \n"));
const projects = await getProjects(auth, this);
const { project } = await inquirer.prompt<Answers>([
{
choices: projects.map((project) => ({
name: project.name,
value: project,
})),
message: "Select a project to deploy the mysql in:",
name: "project",
type: "list",
},
]);
const projectId = project.projectId;
const projectSelected = await getProject(projectId, auth, this);
if (projectSelected.mysql.length === 0) {
this.error(chalk.yellow("No mysql found in this project."));
}
const appAnswers = await inquirer.prompt([
{
// @ts-ignore
choices: projectSelected.mysql.map((app) => ({
name: app.name,
value: app.mysqlId,
})),
message: "Select the mysql to deploy:",
name: "selectedApp",
type: "list",
},
]);
const mysqlId = appAnswers.selectedApp;
const confirmAnswers = await inquirer.prompt([
{
default: false,
message: "Are you sure you want to deploy this mysql?",
name: "confirmDelete",
type: "confirm",
},
]);
if (!confirmAnswers.confirmDelete) {
this.error(chalk.yellow("mysql deployment cancelled."));
}
const response = await axios.post(
`${auth.url}/api/trpc/mysql.deploy`,
{
json: {
mysqlId,
},
},
{
headers: {
Authorization: `Bearer ${auth.token}`,
"Content-Type": "application/json",
},
},
);
if (response.status !== 200) {
this.error(chalk.red("Error deploying mysql"));
}
this.log(chalk.green("Mysql deployed successful."));
}
}