Merge pull request #1423 from FlowiseAI/bugfix/Credential-Decrypt

Bugfix/Credential Decrypt
This commit is contained in:
Henry Heng
2023-12-21 20:48:34 +00:00
committed by GitHub
2 changed files with 15 additions and 13 deletions
+12 -2
View File
@@ -428,7 +428,17 @@ export const getEnvironmentVariable = (name: string): string | undefined => {
* @returns {string}
*/
const getEncryptionKeyFilePath = (): string => {
const checkPaths = [path.join(getUserHome(), '.flowise', 'encryption.key')]
const checkPaths = [
path.join(__dirname, '..', '..', 'encryption.key'),
path.join(__dirname, '..', '..', 'server', 'encryption.key'),
path.join(__dirname, '..', '..', '..', 'encryption.key'),
path.join(__dirname, '..', '..', '..', 'server', 'encryption.key'),
path.join(__dirname, '..', '..', '..', '..', 'encryption.key'),
path.join(__dirname, '..', '..', '..', '..', 'server', 'encryption.key'),
path.join(__dirname, '..', '..', '..', '..', '..', 'encryption.key'),
path.join(__dirname, '..', '..', '..', '..', '..', 'server', 'encryption.key'),
path.join(getUserHome(), '.flowise', 'encryption.key')
]
for (const checkPath of checkPaths) {
if (fs.existsSync(checkPath)) {
return checkPath
@@ -437,7 +447,7 @@ const getEncryptionKeyFilePath = (): string => {
return ''
}
const getEncryptionKeyPath = (): string => {
export const getEncryptionKeyPath = (): string => {
return process.env.SECRETKEY_PATH ? path.join(process.env.SECRETKEY_PATH, 'encryption.key') : getEncryptionKeyFilePath()
}