fix(auth): 处理空密码文件时使用默认密码
当密码文件存在但内容为空时,现在会正确使用默认密码。同时优化了错误日志信息,使其更清晰。
This commit is contained in:
parent
8bfa7e1dbf
commit
acb666d089
1 changed files with 10 additions and 4 deletions
|
|
@ -209,17 +209,23 @@ const DEFAULT_PASSWORD = 'admin123';
|
||||||
* 读取密码文件内容
|
* 读取密码文件内容
|
||||||
*/
|
*/
|
||||||
async function readPasswordFile() {
|
async function readPasswordFile() {
|
||||||
|
const pwdFilePath = path.join(process.cwd(), 'configs', 'pwd');
|
||||||
try {
|
try {
|
||||||
const pwdFilePath = path.join(process.cwd(), 'configs', 'pwd');
|
|
||||||
if (!existsSync(pwdFilePath)) {
|
if (!existsSync(pwdFilePath)) {
|
||||||
console.log('[Auth] 密码文件不存在,使用默认密码');
|
console.log('[Auth] 密码文件不存在,使用默认密码');
|
||||||
return DEFAULT_PASSWORD;
|
return DEFAULT_PASSWORD;
|
||||||
}
|
}
|
||||||
const password = await fs.readFile(pwdFilePath, 'utf8');
|
const password = await fs.readFile(pwdFilePath, 'utf8');
|
||||||
return password.trim();
|
const trimmedPassword = password.trim();
|
||||||
|
// 如果密码文件为空,使用默认密码
|
||||||
|
if (!trimmedPassword) {
|
||||||
|
console.log('[Auth] 密码文件为空,使用默认密码');
|
||||||
|
return DEFAULT_PASSWORD;
|
||||||
|
}
|
||||||
|
return trimmedPassword;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('读取密码文件失败:', error);
|
console.error('[Auth] 读取密码文件失败:', error.message);
|
||||||
console.log('[Auth] 读取密码文件失败,使用默认密码');
|
console.log('[Auth] 使用默认密码');
|
||||||
return DEFAULT_PASSWORD;
|
return DEFAULT_PASSWORD;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue