feat(cli): add cli command to recreate credentials admin (#2779)
* feat(cli): add cli command to recreate credentials admin * fix: add missing username validation * fix: deepsource issue
This commit is contained in:
@@ -27,6 +27,7 @@
|
|||||||
"@homarr/auth": "workspace:^0.1.0",
|
"@homarr/auth": "workspace:^0.1.0",
|
||||||
"@homarr/common": "workspace:^0.1.0",
|
"@homarr/common": "workspace:^0.1.0",
|
||||||
"@homarr/db": "workspace:^0.1.0",
|
"@homarr/db": "workspace:^0.1.0",
|
||||||
|
"@homarr/validation": "workspace:^0.1.0",
|
||||||
"dotenv": "^16.4.7"
|
"dotenv": "^16.4.7"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
95
packages/cli/src/commands/recreate-admin.ts
Normal file
95
packages/cli/src/commands/recreate-admin.ts
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
import { command, string } from "@drizzle-team/brocli";
|
||||||
|
|
||||||
|
import { createSaltAsync, hashPasswordAsync } from "@homarr/auth";
|
||||||
|
import { generateSecureRandomToken } from "@homarr/common/server";
|
||||||
|
import { and, count, createId, db, eq } from "@homarr/db";
|
||||||
|
import { getMaxGroupPositionAsync } from "@homarr/db/queries";
|
||||||
|
import { groupMembers, groupPermissions, groups, users } from "@homarr/db/schema";
|
||||||
|
import { usernameSchema } from "@homarr/validation";
|
||||||
|
|
||||||
|
export const recreateAdmin = command({
|
||||||
|
name: "recreate-admin",
|
||||||
|
desc: "Recreate credentials admin user if none exists anymore",
|
||||||
|
options: {
|
||||||
|
username: string("username").required().alias("u").desc("Name of the admin"),
|
||||||
|
},
|
||||||
|
// eslint-disable-next-line no-restricted-syntax
|
||||||
|
handler: async (options) => {
|
||||||
|
if (!process.env.AUTH_PROVIDERS?.toLowerCase().includes("credentials")) {
|
||||||
|
console.error("Credentials provider is not enabled");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await usernameSchema.safeParseAsync(options.username);
|
||||||
|
|
||||||
|
if (!result.success) {
|
||||||
|
console.error("Invalid username:");
|
||||||
|
console.error(result.error.errors.map((error) => `- ${error.message}`).join("\n"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const totalCount = await db
|
||||||
|
.select({
|
||||||
|
count: count(),
|
||||||
|
})
|
||||||
|
.from(groupPermissions)
|
||||||
|
.leftJoin(groupMembers, eq(groupMembers.groupId, groupPermissions.groupId))
|
||||||
|
.leftJoin(users, eq(users.id, groupMembers.userId))
|
||||||
|
.where(and(eq(groupPermissions.permission, "admin"), eq(users.provider, "credentials")))
|
||||||
|
.then((rows) => rows.at(0)?.count ?? 0);
|
||||||
|
|
||||||
|
if (totalCount > 0) {
|
||||||
|
console.error("Credentials admin user exists");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const existingUser = await db.query.users.findFirst({
|
||||||
|
where: eq(users.name, result.data),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (existingUser) {
|
||||||
|
console.error("User with this name already exists");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const temporaryGroupId = createId();
|
||||||
|
|
||||||
|
const maxPosition = await getMaxGroupPositionAsync(db);
|
||||||
|
await db.insert(groups).values({
|
||||||
|
id: temporaryGroupId,
|
||||||
|
name: temporaryGroupId,
|
||||||
|
position: maxPosition + 1,
|
||||||
|
});
|
||||||
|
|
||||||
|
await db.insert(groupPermissions).values({
|
||||||
|
groupId: temporaryGroupId,
|
||||||
|
permission: "admin",
|
||||||
|
});
|
||||||
|
|
||||||
|
const salt = await createSaltAsync();
|
||||||
|
const password = generateSecureRandomToken(24);
|
||||||
|
const hashedPassword = await hashPasswordAsync(password, salt);
|
||||||
|
|
||||||
|
const userId = createId();
|
||||||
|
await db.insert(users).values({
|
||||||
|
id: userId,
|
||||||
|
name: result.data,
|
||||||
|
provider: "credentials",
|
||||||
|
password: hashedPassword,
|
||||||
|
salt,
|
||||||
|
});
|
||||||
|
|
||||||
|
await db.insert(groupMembers).values({
|
||||||
|
groupId: temporaryGroupId,
|
||||||
|
userId,
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(
|
||||||
|
"We created a new admin user for you. Please keep in mind, that the admin group of it has a temporary name. You should change it to something more meaningful.",
|
||||||
|
);
|
||||||
|
console.log(`\tUsername: ${result.data}`);
|
||||||
|
console.log(`\tPassword: ${password}`);
|
||||||
|
console.log(`\tGroup: ${temporaryGroupId}`);
|
||||||
|
console.log(""); // Empty line for better readability
|
||||||
|
},
|
||||||
|
});
|
||||||
@@ -1,9 +1,10 @@
|
|||||||
import { run } from "@drizzle-team/brocli";
|
import { run } from "@drizzle-team/brocli";
|
||||||
|
|
||||||
import { fixUsernames } from "./commands/fix-usernames";
|
import { fixUsernames } from "./commands/fix-usernames";
|
||||||
|
import { recreateAdmin } from "./commands/recreate-admin";
|
||||||
import { resetPassword } from "./commands/reset-password";
|
import { resetPassword } from "./commands/reset-password";
|
||||||
|
|
||||||
const commands = [resetPassword, fixUsernames];
|
const commands = [resetPassword, fixUsernames, recreateAdmin];
|
||||||
|
|
||||||
void run(commands, {
|
void run(commands, {
|
||||||
name: "homarr-cli",
|
name: "homarr-cli",
|
||||||
|
|||||||
@@ -37,6 +37,6 @@ export {
|
|||||||
type BoardItemIntegration,
|
type BoardItemIntegration,
|
||||||
} from "./shared";
|
} from "./shared";
|
||||||
export { superRefineCertificateFile } from "./certificates";
|
export { superRefineCertificateFile } from "./certificates";
|
||||||
export { passwordRequirements } from "./user";
|
export { passwordRequirements, usernameSchema } from "./user";
|
||||||
export { supportedMediaUploadFormats } from "./media";
|
export { supportedMediaUploadFormats } from "./media";
|
||||||
export { zodEnumFromArray, zodUnionFromArray } from "./enums";
|
export { zodEnumFromArray, zodUnionFromArray } from "./enums";
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import { zodEnumFromArray } from "./enums";
|
|||||||
import { createCustomErrorParams } from "./form/i18n";
|
import { createCustomErrorParams } from "./form/i18n";
|
||||||
|
|
||||||
// We always want the lowercase version of the username to compare it in a case-insensitive way
|
// We always want the lowercase version of the username to compare it in a case-insensitive way
|
||||||
const usernameSchema = z.string().trim().toLowerCase().min(3).max(255);
|
export const usernameSchema = z.string().trim().toLowerCase().min(3).max(255);
|
||||||
|
|
||||||
const regexCheck = (regex: RegExp) => (value: string) => regex.test(value);
|
const regexCheck = (regex: RegExp) => (value: string) => regex.test(value);
|
||||||
export const passwordRequirements = [
|
export const passwordRequirements = [
|
||||||
|
|||||||
3
pnpm-lock.yaml
generated
3
pnpm-lock.yaml
generated
@@ -783,6 +783,9 @@ importers:
|
|||||||
'@homarr/db':
|
'@homarr/db':
|
||||||
specifier: workspace:^0.1.0
|
specifier: workspace:^0.1.0
|
||||||
version: link:../db
|
version: link:../db
|
||||||
|
'@homarr/validation':
|
||||||
|
specifier: workspace:^0.1.0
|
||||||
|
version: link:../validation
|
||||||
dotenv:
|
dotenv:
|
||||||
specifier: ^16.4.7
|
specifier: ^16.4.7
|
||||||
version: 16.4.7
|
version: 16.4.7
|
||||||
|
|||||||
Reference in New Issue
Block a user