0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

refactor(cli): add database set-url command

This commit is contained in:
Gao Sun 2022-10-05 15:21:37 +08:00
parent 0eb306a61c
commit 880d07ebf7
No known key found for this signature in database
GPG key ID: 13EBE123E4773688
4 changed files with 63 additions and 34 deletions

View file

@ -1,12 +1,12 @@
import { CommandModule } from 'yargs';
import { noop } from '../../utilities';
import { getUrl } from './url';
import { getUrl, setUrl } from './url';
const database: CommandModule = {
command: ['database <command>', 'db'],
command: ['database', 'db'],
describe: 'Commands for Logto database',
builder: (yargs) => yargs.command(getUrl),
builder: (yargs) => yargs.command(getUrl).command(setUrl).strict(),
handler: noop,
};

View file

@ -1,6 +1,6 @@
import { CommandModule } from 'yargs';
import { getConfig } from '../../utilities';
import { getConfig, patchConfig } from '../../config';
export const getUrl: CommandModule = {
command: 'get-url',
@ -10,3 +10,17 @@ export const getUrl: CommandModule = {
console.log(databaseUrl);
},
};
export const setUrl: CommandModule<Record<string, unknown>, { url: string }> = {
command: 'set-url <url>',
describe: 'Set database URL and save to config file',
builder: (yargs) =>
yargs.positional('url', {
describe: 'The database URL (DSN) to use, including database name',
type: 'string',
demandOption: true,
}),
handler: async (argv) => {
await patchConfig({ databaseUrl: String(argv.url) });
},
};

View file

@ -0,0 +1,45 @@
import { readFile, writeFile } from 'fs/promises';
import os from 'os';
import path from 'path';
import chalk from 'chalk';
import findUp from 'find-up';
// eslint-disable-next-line id-length
import z from 'zod';
import { log } from './utilities';
// Logto config
const logtoConfigFilename = '.logto.json';
const getConfigPath = async () =>
(await findUp(logtoConfigFilename)) ?? path.join(os.homedir(), logtoConfigFilename);
const getConfigJson = async () => {
const configPath = await getConfigPath();
try {
const raw = await readFile(configPath, 'utf8');
// Prefer `unknown` over the original return type `any`, will guard later
// eslint-disable-next-line no-restricted-syntax
return JSON.parse(raw) as unknown;
} catch {}
};
const configGuard = z
.object({
databaseUrl: z.string().optional(),
})
.default({});
type LogtoConfig = z.infer<typeof configGuard>;
export const getConfig = async () => {
return configGuard.parse(await getConfigJson());
};
export const patchConfig = async (config: LogtoConfig) => {
const configPath = await getConfigPath();
await writeFile(configPath, JSON.stringify({ ...(await getConfig()), ...config }, undefined, 2));
log.info(`Updated config in ${chalk.green(configPath)}`);
};

View file

@ -1,16 +1,10 @@
import { execSync } from 'child_process';
import { createWriteStream } from 'fs';
import { readFile } from 'fs/promises';
import os from 'os';
import path from 'path';
import chalk from 'chalk';
import findUp from 'find-up';
import got, { Progress } from 'got';
import { HttpsProxyAgent } from 'hpagent';
import ora from 'ora';
// eslint-disable-next-line id-length
import z from 'zod';
export const safeExecSync = (command: string) => {
try {
@ -78,27 +72,3 @@ export const downloadFile = async (url: string, destination: string) => {
// Intended
// eslint-disable-next-line @typescript-eslint/no-empty-function
export const noop = () => {};
// Logto config
const logtoConfig = '.logto.json';
const getConfigJson = async () => {
const configPath = (await findUp(logtoConfig)) ?? path.join(os.homedir(), logtoConfig);
try {
const raw = await readFile(configPath, 'utf8');
// Prefer `unknown` over the original return type `any`, will guard later
// eslint-disable-next-line no-restricted-syntax
return JSON.parse(raw) as unknown;
} catch {}
};
export const getConfig = async () => {
return z
.object({
databaseUrl: z.string().optional(),
})
.default({})
.parse(await getConfigJson());
};