mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 12:22:14 +03:00
- contexts.mjs: loadContexts/saveContexts/resolveActiveContext (~/.omniroute/config.json) - commands/contexts.mjs: CRUD completo (add/use/list/show/remove/rename/export/import) - config.mjs: subgroup contexts registrado sob config contexts - program.mjs: flag global --context <name> com env OMNIROUTE_CONTEXT - en.json/pt-BR.json: chaves program.context e config.contexts adicionadas - import usa validação explícita de campos (sem Object.assign cru)
224 lines
7.2 KiB
JavaScript
224 lines
7.2 KiB
JavaScript
import { t } from "../i18n.mjs";
|
|
import { emit } from "../output.mjs";
|
|
import { loadContexts, saveContexts, configPath } from "../contexts.mjs";
|
|
|
|
async function confirm(msg) {
|
|
const readline = await import("node:readline");
|
|
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
|
|
const answer = await new Promise((r) => rl.question(`${msg} [y/N] `, r));
|
|
rl.close();
|
|
return /^y(es)?$/i.test(answer);
|
|
}
|
|
|
|
function maskKey(k) {
|
|
if (!k) return null;
|
|
if (k.length <= 8) return "***";
|
|
return `${k.slice(0, 6)}***${k.slice(-4)}`;
|
|
}
|
|
|
|
export function registerContexts(program) {
|
|
const ctx = program
|
|
.command("contexts")
|
|
.description(t("config.contexts.description") || "Manage server contexts/profiles");
|
|
|
|
ctx
|
|
.command("list")
|
|
.description("List all contexts")
|
|
.action(async (opts, cmd) => {
|
|
const globalOpts = cmd.optsWithGlobals();
|
|
const cfg = loadContexts();
|
|
const rows = Object.entries(cfg.contexts || {}).map(([name, c]) => ({
|
|
active: name === (cfg.currentContext || "default") ? "●" : "",
|
|
name,
|
|
baseUrl: c.baseUrl || "",
|
|
auth: c.apiKey ? "✓" : "✗",
|
|
description: c.description || "",
|
|
}));
|
|
emit(rows, globalOpts, [
|
|
{ key: "active", header: "" },
|
|
{ key: "name", header: "Name" },
|
|
{ key: "baseUrl", header: "Base URL" },
|
|
{ key: "auth", header: "Auth" },
|
|
{ key: "description", header: "Description" },
|
|
]);
|
|
});
|
|
|
|
ctx
|
|
.command("add <name>")
|
|
.description("Add a new context")
|
|
.requiredOption("--url <u>", "Base URL")
|
|
.option("--api-key <k>", "API key")
|
|
.option("--api-key-stdin", "Read API key from stdin")
|
|
.option("--description <d>", "Context description")
|
|
.action(async (name, opts) => {
|
|
const cfg = loadContexts();
|
|
if (cfg.contexts?.[name]) {
|
|
process.stderr.write(`Context '${name}' already exists. Remove or rename first.\n`);
|
|
process.exit(2);
|
|
}
|
|
let apiKey = opts.apiKey || null;
|
|
if (opts.apiKeyStdin) {
|
|
const chunks = [];
|
|
for await (const c of process.stdin) chunks.push(c);
|
|
apiKey = chunks.join("").trim() || null;
|
|
}
|
|
cfg.contexts = cfg.contexts || {};
|
|
cfg.contexts[name] = {
|
|
baseUrl: opts.url,
|
|
apiKey,
|
|
description: opts.description || undefined,
|
|
};
|
|
saveContexts(cfg);
|
|
process.stdout.write(`Added context '${name}'\n`);
|
|
});
|
|
|
|
ctx
|
|
.command("use <name>")
|
|
.description("Switch active context")
|
|
.action((name) => {
|
|
const cfg = loadContexts();
|
|
if (!cfg.contexts?.[name]) {
|
|
process.stderr.write(`No such context: ${name}\n`);
|
|
process.exit(2);
|
|
}
|
|
cfg.currentContext = name;
|
|
saveContexts(cfg);
|
|
process.stdout.write(`Active context: ${name}\n`);
|
|
});
|
|
|
|
ctx
|
|
.command("current")
|
|
.description("Show current active context name")
|
|
.action(() => {
|
|
const cfg = loadContexts();
|
|
process.stdout.write(`${cfg.currentContext || "default"}\n`);
|
|
});
|
|
|
|
ctx
|
|
.command("show <name>")
|
|
.description("Show context details")
|
|
.action((name, opts, cmd) => {
|
|
const globalOpts = cmd.optsWithGlobals();
|
|
const cfg = loadContexts();
|
|
const c = cfg.contexts?.[name];
|
|
if (!c) {
|
|
process.stderr.write(`No such context: ${name}\n`);
|
|
process.exit(2);
|
|
}
|
|
const display = {
|
|
name,
|
|
baseUrl: c.baseUrl,
|
|
apiKey: maskKey(c.apiKey),
|
|
description: c.description,
|
|
};
|
|
emit(display, globalOpts);
|
|
});
|
|
|
|
ctx
|
|
.command("remove <name>")
|
|
.description("Remove a context")
|
|
.option("--yes", "Skip confirmation")
|
|
.action(async (name, opts) => {
|
|
if (!opts.yes) {
|
|
const ok = await confirm(`Remove context '${name}'?`);
|
|
if (!ok) {
|
|
process.stdout.write("Cancelled.\n");
|
|
return;
|
|
}
|
|
}
|
|
const cfg = loadContexts();
|
|
if (!cfg.contexts?.[name]) {
|
|
process.stderr.write(`No such context: ${name}\n`);
|
|
process.exit(2);
|
|
}
|
|
if (name === "default") {
|
|
process.stderr.write("Cannot remove default context.\n");
|
|
process.exit(2);
|
|
}
|
|
delete cfg.contexts[name];
|
|
if (cfg.currentContext === name) cfg.currentContext = "default";
|
|
saveContexts(cfg);
|
|
process.stdout.write(`Removed context '${name}'\n`);
|
|
});
|
|
|
|
ctx
|
|
.command("rename <old> <new>")
|
|
.description("Rename a context")
|
|
.action((oldName, newName) => {
|
|
const cfg = loadContexts();
|
|
if (!cfg.contexts?.[oldName]) {
|
|
process.stderr.write(`No such context: ${oldName}\n`);
|
|
process.exit(2);
|
|
}
|
|
if (cfg.contexts[newName]) {
|
|
process.stderr.write(`Context '${newName}' already exists.\n`);
|
|
process.exit(2);
|
|
}
|
|
cfg.contexts[newName] = cfg.contexts[oldName];
|
|
delete cfg.contexts[oldName];
|
|
if (cfg.currentContext === oldName) cfg.currentContext = newName;
|
|
saveContexts(cfg);
|
|
process.stdout.write(`Renamed '${oldName}' → '${newName}'\n`);
|
|
});
|
|
|
|
ctx
|
|
.command("export")
|
|
.description("Export contexts to JSON")
|
|
.option("--out <path>", "Output file path (default: stdout)")
|
|
.option("--no-secrets", "Omit API keys from export")
|
|
.action(async (opts, cmd) => {
|
|
const cfg = loadContexts();
|
|
const out = JSON.parse(JSON.stringify(cfg));
|
|
if (opts.noSecrets) {
|
|
for (const c of Object.values(out.contexts || {})) {
|
|
c.apiKey = null;
|
|
}
|
|
}
|
|
const json = JSON.stringify(out, null, 2);
|
|
if (opts.out) {
|
|
const { writeFileSync } = await import("node:fs");
|
|
writeFileSync(opts.out, json);
|
|
process.stdout.write(`Exported to ${opts.out}\n`);
|
|
} else {
|
|
process.stdout.write(json + "\n");
|
|
}
|
|
});
|
|
|
|
ctx
|
|
.command("import <file>")
|
|
.description("Import contexts from a JSON file")
|
|
.option("--merge", "Merge with existing contexts (default: overwrite)")
|
|
.action(async (file, opts) => {
|
|
const { readFileSync } = await import("node:fs");
|
|
let imported;
|
|
try {
|
|
imported = JSON.parse(readFileSync(file, "utf8"));
|
|
} catch (e) {
|
|
process.stderr.write(
|
|
`Cannot read ${file}: ${e instanceof Error ? e.message : String(e)}\n`
|
|
);
|
|
process.exit(1);
|
|
}
|
|
const cfg = opts.merge
|
|
? loadContexts()
|
|
: { version: 1, currentContext: "default", contexts: {} };
|
|
const incoming = imported.contexts || {};
|
|
let count = 0;
|
|
for (const [name, raw] of Object.entries(incoming)) {
|
|
if (typeof name !== "string" || !name) continue;
|
|
const c = raw && typeof raw === "object" ? /** @type {Record<string,unknown>} */ (raw) : {};
|
|
cfg.contexts[name] = {
|
|
baseUrl: typeof c.baseUrl === "string" ? c.baseUrl : "http://localhost:20128",
|
|
apiKey: typeof c.apiKey === "string" ? c.apiKey : null,
|
|
description: typeof c.description === "string" ? c.description : undefined,
|
|
};
|
|
count++;
|
|
}
|
|
if (!opts.merge && typeof imported.currentContext === "string") {
|
|
cfg.currentContext = imported.currentContext;
|
|
}
|
|
saveContexts(cfg);
|
|
process.stdout.write(`Imported ${count} context(s)\n`);
|
|
});
|
|
}
|