@capawesome/cli
Version:
The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.
108 lines (107 loc) • 5.19 kB
JavaScript
import appEnvironmentsService from '../../../services/app-environments.js';
import { parseKeyValuePairs } from '../../../utils/app-environments.js';
import { withAuth } from '../../../utils/auth.js';
import { isInteractive } from '../../../utils/environment.js';
import { isReadable } from '../../../utils/file.js';
import { prompt, promptAppSelection, promptOrganizationSelection } from '../../../utils/prompt.js';
import { defineCommand, defineOptions } from '@robingenz/zli';
import consola from 'consola';
import fs from 'fs';
import { z } from 'zod';
export default defineCommand({
description: 'Set environment variables and secrets.',
options: defineOptions(z.object({
appId: z.string().optional().describe('ID of the app.'),
environmentId: z.string().optional().describe('ID of the environment.'),
variable: z
.array(z.string())
.optional()
.describe('Environment variable in key=value format. Can be specified multiple times.'),
variableFile: z.string().optional().describe('Path to a file containing environment variables in .env format.'),
secret: z
.array(z.string())
.optional()
.describe('Environment secret in key=value format. Can be specified multiple times.'),
secretFile: z.string().optional().describe('Path to a file containing environment secrets in .env format.'),
})),
action: withAuth(async (options, args) => {
let { appId, environmentId, variable, variableFile, secret, secretFile } = options;
if (!appId) {
if (!isInteractive()) {
consola.error('You must provide an app ID when running in non-interactive environment.');
process.exit(1);
}
const organizationId = await promptOrganizationSelection();
appId = await promptAppSelection(organizationId);
}
if (!environmentId) {
if (!isInteractive()) {
consola.error('You must provide an environment ID when running in non-interactive environment.');
process.exit(1);
}
const environments = await appEnvironmentsService.findAll({ appId });
if (!environments.length) {
consola.error('No environments found for this app. Create one first.');
process.exit(1);
}
// @ts-ignore wait till https://github.com/unjs/consola/pull/280 is merged
environmentId = await prompt('Select the environment:', {
type: 'select',
options: environments.map((env) => ({ label: env.name, value: env.id })),
});
}
// Parse variables from inline and file
const variablesMap = new Map();
if (variableFile) {
const variableFileReadable = await isReadable(variableFile);
if (!variableFileReadable) {
consola.error(`The variable file does not exist or is not accessible: ${variableFile}`);
process.exit(1);
}
const fileContent = await fs.promises.readFile(variableFile, 'utf-8');
const fileVariables = parseKeyValuePairs(fileContent);
fileVariables.forEach((v) => variablesMap.set(v.key, v.value));
}
if (variable) {
const inlineVariables = parseKeyValuePairs(variable.join('\n'));
inlineVariables.forEach((v) => variablesMap.set(v.key, v.value));
}
const allVariables = Array.from(variablesMap.entries()).map(([key, value]) => ({ key, value }));
// Parse secrets from inline and file
const secretsMap = new Map();
if (secretFile) {
const secretFileReadable = await isReadable(secretFile);
if (!secretFileReadable) {
consola.error(`The secret file does not exist or is not accessible: ${secretFile}`);
process.exit(1);
}
const fileContent = await fs.promises.readFile(secretFile, 'utf-8');
const fileSecrets = parseKeyValuePairs(fileContent);
fileSecrets.forEach((s) => secretsMap.set(s.key, s.value));
}
if (secret) {
const inlineSecrets = parseKeyValuePairs(secret.join('\n'));
inlineSecrets.forEach((s) => secretsMap.set(s.key, s.value));
}
const allSecrets = Array.from(secretsMap.entries()).map(([key, value]) => ({ key, value }));
if (!allVariables.length && !allSecrets.length) {
consola.error('You must provide at least one variable or secret to set.');
process.exit(1);
}
if (allVariables.length) {
await appEnvironmentsService.setVariables({
appId,
environmentId,
variables: allVariables,
});
}
if (allSecrets.length) {
await appEnvironmentsService.setSecrets({
appId,
environmentId,
secrets: allSecrets,
});
}
consola.success('Environment variables and secrets set successfully.');
}),
});