mirror of
https://github.com/Dokploy/cli.git
synced 2026-06-15 20:25:22 +02:00
90 lines
2.1 KiB
TypeScript
90 lines
2.1 KiB
TypeScript
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 DatabaseMariadbDeploy extends Command {
|
|
static description = "Deploy an mariadb 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 mariadb in:",
|
|
name: "project",
|
|
type: "list",
|
|
},
|
|
]);
|
|
|
|
const projectId = project.projectId;
|
|
|
|
const projectSelected = await getProject(projectId, auth, this);
|
|
|
|
if (projectSelected.mariadb.length === 0) {
|
|
this.error(chalk.yellow("No mariadb found in this project."));
|
|
}
|
|
|
|
const appAnswers = await inquirer.prompt([
|
|
{
|
|
// @ts-ignore
|
|
choices: projectSelected.mariadb.map((app) => ({
|
|
name: app.name,
|
|
value: app.mariadbId,
|
|
})),
|
|
message: "Select the mariadb to deploy:",
|
|
name: "selectedApp",
|
|
type: "list",
|
|
},
|
|
]);
|
|
|
|
const mariadbId = appAnswers.selectedApp;
|
|
|
|
const confirmAnswers = await inquirer.prompt([
|
|
{
|
|
default: false,
|
|
message: "Are you sure you want to deploy this mariadb?",
|
|
name: "confirmDelete",
|
|
type: "confirm",
|
|
},
|
|
]);
|
|
|
|
if (!confirmAnswers.confirmDelete) {
|
|
this.error(chalk.yellow("mariadb deployment cancelled."));
|
|
}
|
|
|
|
const response = await axios.post(
|
|
`${auth.url}/api/trpc/mariadb.deploy`,
|
|
{
|
|
json: {
|
|
mariadbId,
|
|
},
|
|
},
|
|
{
|
|
headers: {
|
|
Authorization: `Bearer ${auth.token}`,
|
|
"Content-Type": "application/json",
|
|
},
|
|
},
|
|
);
|
|
|
|
if (response.status !== 200) {
|
|
this.error(chalk.red("Error deploying mariadb"));
|
|
}
|
|
this.log(chalk.green("Mariadb deploy successful."));
|
|
}
|
|
}
|