mirror of
https://github.com/thelounge/thelounge.git
synced 2026-03-14 14:35:50 +01:00
Changes: - `no-var-requires` replaced by `no-require-imports` (typescript-eslint/typescript-eslint#8334) - `restrict-template-expressions` does not trigger for `Error` (typescript-eslint/typescript-eslint#8556) - `only-throw-error` and `prefer-promise-reject-errors` recommended (typescript-eslint/typescript-eslint#9079) - fixed `no-base-to-string` in client/js/upload.ts - fixed `no-unsafe-enum-comparison` in client/js/store.ts - fixed `await-thenable` in test/client/js/helpers/parse.ts - fixed `no-empty-object-type` in client/shims-vue.d.ts and shared/types/socket-events.d.ts See <https://typescript-eslint.io/blog/announcing-typescript-eslint-v8/>
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import log from "../../log";
|
|
import {Command} from "commander";
|
|
import child from "child_process";
|
|
import colors from "chalk";
|
|
import fs from "fs";
|
|
import Config from "../../config";
|
|
import Utils from "../utils";
|
|
|
|
const program = new Command("edit");
|
|
program
|
|
.description(`Edit user file located at ${colors.green(Config.getUserConfigPath("<name>"))}`)
|
|
.argument("<name>", "name of the user")
|
|
.on("--help", Utils.extraHelp)
|
|
.action(function (name) {
|
|
if (!fs.existsSync(Config.getUsersPath())) {
|
|
log.error(`${Config.getUsersPath()} does not exist.`);
|
|
return;
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
const ClientManager = require("../../clientManager").default;
|
|
const users = new ClientManager().getUsers();
|
|
|
|
if (users === undefined) {
|
|
// There was an error, already logged
|
|
return;
|
|
}
|
|
|
|
if (!users.includes(name)) {
|
|
log.error(`User ${colors.bold(name)} does not exist.`);
|
|
return;
|
|
}
|
|
|
|
const child_spawn = child.spawn(
|
|
process.env.EDITOR || "vi",
|
|
[Config.getUserConfigPath(name)],
|
|
{stdio: "inherit"}
|
|
);
|
|
child_spawn.on("error", function () {
|
|
log.error(
|
|
`Unable to open ${colors.green(Config.getUserConfigPath(name))}. ${colors.bold(
|
|
"$EDITOR"
|
|
)} is not set, and ${colors.bold("vi")} was not found.`
|
|
);
|
|
});
|
|
});
|
|
|
|
export default program;
|