check / check (push) Successful in 1m13s
An error a command throws now reaches the user as one `quak: MESSAGE` line on stderr, and the CLI exits 1 once output has drained. The wrapper moved from bin/quak.ts to src/cli-run.ts so it can be tested, and bin/quak.ts awaits program.parseAsync() so async actions are awaited. Model: opus-5-5
159 lines
4.7 KiB
JavaScript
159 lines
4.7 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
import { stdout, stderr } from "node:process";
|
|
import { Command } from "commander";
|
|
import envPaths from "env-paths";
|
|
import { init } from "../src/crypto/index.js";
|
|
import {
|
|
type CliContext,
|
|
loginCommand,
|
|
whoamiCommand,
|
|
logoutCommand,
|
|
collectionsCommand,
|
|
filesCommand,
|
|
getCommand,
|
|
getThumbCommand,
|
|
backupMetadataCommand,
|
|
backupCommand,
|
|
listMissingThumbnailsCommand,
|
|
fixMissingThumbnailsCommand,
|
|
} from "../src/cli-commands.js";
|
|
import { run as runCommand } from "../src/cli-run.js";
|
|
import { loadSession } from "../src/cli-session.js";
|
|
import { VERSION } from "../src/index.js";
|
|
|
|
const paths = envPaths("quak", { suffix: "" });
|
|
|
|
const program = new Command();
|
|
|
|
program
|
|
.name("quak")
|
|
.description("CLI for the Ente end-to-end encrypted photo service")
|
|
.version(VERSION)
|
|
.option(
|
|
"--cache-dir <path>",
|
|
"Directory for the local metadata/content cache " +
|
|
"(default: the per-user cache directory)",
|
|
);
|
|
|
|
const context = (): CliContext => ({
|
|
stdout,
|
|
stderr,
|
|
sessionDir: paths.data,
|
|
cacheDir: program.opts<{ cacheDir?: string }>().cacheDir,
|
|
loadSession,
|
|
});
|
|
|
|
const run = (command: Promise<number>): Promise<void> =>
|
|
runCommand(command, stdout, stderr, (code) => process.exit(code));
|
|
|
|
program
|
|
.command("login")
|
|
.description("Log in to an Ente account and save the session")
|
|
.action(() => run(loginCommand(context())));
|
|
|
|
program
|
|
.command("whoami")
|
|
.description("Print the logged-in account")
|
|
.action(() => run(whoamiCommand(context())));
|
|
|
|
program
|
|
.command("logout")
|
|
.description("End the session on the server and delete the saved session")
|
|
.action(() => run(logoutCommand(context())));
|
|
|
|
program
|
|
.command("collections")
|
|
.description("List all collections (albums)")
|
|
.option("--json", "Output as JSON array")
|
|
.action((opts: { json?: boolean }) =>
|
|
run(collectionsCommand(context(), opts)),
|
|
);
|
|
|
|
program
|
|
.command("files")
|
|
.description("List files in a collection")
|
|
.requiredOption(
|
|
"--collection <id>",
|
|
"Collection ID (from `quak collections`)",
|
|
)
|
|
.option("--json", "Output as JSON array")
|
|
.action((opts: { collection: string; json?: boolean }) =>
|
|
run(filesCommand(context(), opts)),
|
|
);
|
|
|
|
program
|
|
.command("get")
|
|
.description("Download and decrypt a single file")
|
|
.argument("<fileID>", "File ID (from `quak files`)")
|
|
.option("--out <path>", "Output file path")
|
|
.option("--collection <id>", "Accepted for compatibility; ignored")
|
|
.action((fileID: string, opts: { out?: string }) =>
|
|
run(getCommand(context(), fileID, opts)),
|
|
);
|
|
|
|
program
|
|
.command("get-thumb")
|
|
.description("Download and decrypt a thumbnail")
|
|
.argument("<fileID>", "File ID (from `quak files`)")
|
|
.option("--out <path>", "Output file path")
|
|
.option("--collection <id>", "Accepted for compatibility; ignored")
|
|
.action((fileID: string, opts: { out?: string }) =>
|
|
run(getThumbCommand(context(), fileID, opts)),
|
|
);
|
|
|
|
program
|
|
.command("backup-metadata")
|
|
.description(
|
|
"Dump all decrypted account metadata to a directory of JSON files",
|
|
)
|
|
.argument("<dir>", "Output directory")
|
|
.option(
|
|
"--exif",
|
|
"Download each file and extract full EXIF/IPTC/XMP metadata (slow)",
|
|
)
|
|
.option("--all", "Alias for --exif")
|
|
.action((dir: string, opts: { exif?: boolean; all?: boolean }) =>
|
|
run(backupMetadataCommand(context(), dir, opts)),
|
|
);
|
|
|
|
program
|
|
.command("backup")
|
|
.description(
|
|
"Download all photos to a local directory, organized by collection",
|
|
)
|
|
.argument("<dir>", "Output directory")
|
|
.option("--json", "Print result as JSON instead of human-readable summary")
|
|
.action((dir: string, opts: { json?: boolean }) =>
|
|
run(backupCommand(context(), dir, opts)),
|
|
);
|
|
|
|
const helper = program
|
|
.command("helper")
|
|
.description("Maintenance and repair utilities");
|
|
|
|
helper
|
|
.command("list-missing-thumbnails")
|
|
.description("List files whose thumbnails are missing or empty")
|
|
.option("--json", "Output as JSON array")
|
|
.action((opts: { json?: boolean }) =>
|
|
run(listMissingThumbnailsCommand(context(), opts)),
|
|
);
|
|
|
|
helper
|
|
.command("fix-missing-thumbnails")
|
|
.description(
|
|
"Generate and upload thumbnails for files that are missing them",
|
|
)
|
|
.option(
|
|
"--file <ids...>",
|
|
"Specific file IDs to fix (default: fix all missing)",
|
|
)
|
|
.option("--json", "Output as JSON")
|
|
.action((opts: { file?: string[]; json?: boolean }) =>
|
|
run(fixMissingThumbnailsCommand(context(), opts)),
|
|
);
|
|
|
|
await init();
|
|
await program.parseAsync();
|