encrypt.js 2.21 KB
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveEncrypt = void 0;
const bcryptjs_1 = require("bcryptjs");
const resolveEncrypt = (encrypt) => {
    // handle global password
    if (encrypt.global)
        if (typeof encrypt.global === "string")
            encrypt.global = (0, bcryptjs_1.hashSync)(encrypt.global, 10);
        else if (Array.isArray(encrypt.global))
            encrypt.global = encrypt.global.map((globalPassword) => {
                if (typeof globalPassword === "string")
                    return (0, bcryptjs_1.hashSync)(globalPassword, 10);
                throw new Error(`[vuepress-theme-hope]: You config "themeConfig.encrypt.global", but your config is invalid. 

          All password MUST be string. But we found one’s type is ${typeof globalPassword}. Please fix it!`);
            });
        else
            throw new Error(`[vuepress-theme-hope]: You are asking for global encryption but you provide invalid "global" config. 

Please check "global" in your "themeConfig.encrypt" config. It can be string or string[], but you are providing ${typeof encrypt.global}. Please fix it!`);
    const passwordConfig = encrypt.config || {};
    Object.keys(passwordConfig).forEach((key) => {
        const password = passwordConfig[key];
        if (typeof password === "string")
            passwordConfig[key] = (0, bcryptjs_1.hashSync)(password, 10);
        else if (Array.isArray(password))
            passwordConfig[key] = password.map((configPassword) => {
                if (typeof configPassword === "string")
                    return (0, bcryptjs_1.hashSync)(configPassword, 10);
                throw new Error(`[vuepress-theme-hope]: You config "themeConfig.encrypt.config", but your config is invalid. 
        
Key ${key}’s value MUST be string or string[]. But it’s type is ${typeof configPassword}. Please fix it!`);
            });
        else
            throw new Error(`[vuepress-theme-hope]: You config "themeConfig.encrypt.config", but your config is invalid. 

The value of key ${key} MUST be string or string[]. But not it’s ${typeof password}. Please fix it!`);
    });
};
exports.resolveEncrypt = resolveEncrypt;
//# sourceMappingURL=encrypt.js.map