Spaces:
Runtime error
Runtime error
File size: 3,154 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | import bcrypt from "bcryptjs";
import { getSettings, updateSettings } from "@/lib/db/settings";
const BCRYPT_HASH_PATTERN = /^\$2[aby]\$\d{2}\$[./A-Za-z0-9]{53}$/;
const MANAGEMENT_PASSWORD_SALT_ROUNDS = 12;
type JsonRecord = Record<string, unknown>;
type MigrationSource = "stored_hash" | "stored_plaintext" | "env" | "missing";
interface EnsureManagementPasswordOptions {
initialPassword?: string | null;
logger?: Pick<Console, "log">;
settings?: JsonRecord;
source?: string;
}
export interface EnsuredManagementPassword {
hash: string | null;
migrated: boolean;
settings: JsonRecord;
source: MigrationSource;
}
function getInitialPasswordValue(value: string | null | undefined) {
return typeof value === "string" && value.length > 0 ? value : null;
}
export function getStoredManagementPassword(settings: JsonRecord | null | undefined) {
return typeof settings?.password === "string" ? settings.password : "";
}
export function hasManagementPasswordConfigured(settings: JsonRecord | null | undefined) {
return (
getStoredManagementPassword(settings).length > 0 ||
getInitialPasswordValue(process.env.INITIAL_PASSWORD) !== null
);
}
export function isBcryptHash(value: unknown): value is string {
return typeof value === "string" && BCRYPT_HASH_PATTERN.test(value);
}
export async function hashManagementPassword(password: string) {
return bcrypt.hash(password, MANAGEMENT_PASSWORD_SALT_ROUNDS);
}
export async function verifyManagementPassword(password: string, hash: string) {
if (!isBcryptHash(hash)) return false;
return bcrypt.compare(password, hash);
}
export async function ensurePersistentManagementPasswordHash(
options: EnsureManagementPasswordOptions = {}
): Promise<EnsuredManagementPassword> {
const settings = options.settings ?? ((await getSettings()) as JsonRecord);
const storedPassword = getStoredManagementPassword(settings);
if (isBcryptHash(storedPassword)) {
return {
hash: storedPassword,
migrated: false,
settings,
source: "stored_hash",
};
}
const bootstrapPassword =
storedPassword ||
getInitialPasswordValue(options.initialPassword ?? process.env.INITIAL_PASSWORD);
if (!bootstrapPassword) {
return {
hash: null,
migrated: false,
settings,
source: "missing",
};
}
const passwordHash = await hashManagementPassword(bootstrapPassword);
const updates: JsonRecord = { password: passwordHash };
if (settings.setupComplete !== true) {
updates.setupComplete = true;
}
if (!storedPassword) {
updates.requireLogin = true;
}
const nextSettings = (await updateSettings(updates)) as JsonRecord;
if (options.logger) {
const context = options.source ? ` during ${options.source}` : "";
const migrationSource = storedPassword ? "stored plaintext password" : "INITIAL_PASSWORD";
options.logger.log(`[AUTH] Migrated ${migrationSource} to bcrypt hash${context}`);
}
return {
hash: getStoredManagementPassword(nextSettings) || passwordHash,
migrated: true,
settings: nextSettings,
source: storedPassword ? "stored_plaintext" : "env",
};
}
|