Merge pull request #15195 from Budibase/fix/ui-ask-for-password-enc-files

UI - always ask for password with encrypted app exports
This commit is contained in:
Michael Drury 2024-12-17 13:04:57 +00:00 committed by GitHub
commit c9bdf6fa3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 3 deletions

View File

@ -26,6 +26,7 @@
const values = writable({ name: "", url: null })
const validation = createValidationStore()
const encryptionValidation = createValidationStore()
const isEncryptedRegex = /^.*\.enc.*\.tar\.gz$/gm
$: {
const { url } = $values
@ -37,7 +38,9 @@
encryptionValidation.check({ ...$values })
}
$: encryptedFile = $values.file?.name?.endsWith(".enc.tar.gz")
// filename should be separated to avoid updates everytime any other form element changes
$: filename = $values.file?.name
$: encryptedFile = isEncryptedRegex.test(filename)
onMount(async () => {
const lastChar = $auth.user?.firstName
@ -171,7 +174,7 @@
try {
await createNewApp()
} catch (error) {
notifications.error("Error creating app")
notifications.error(`Error creating app - ${error.message}`)
}
}
},

View File

@ -139,7 +139,7 @@
await auth.setInitInfo({})
$goto(`/builder/app/${createdApp.instance._id}`)
} catch (error) {
notifications.error("Error creating app")
notifications.error(`Error creating app - ${error.message}`)
}
}

View File

@ -187,6 +187,10 @@ export async function importApp(
await decryptFiles(tmpPath, template.file.password)
}
const contents = await fsp.readdir(tmpPath)
const stillEncrypted = !!contents.find(name => name.endsWith(".enc"))
if (stillEncrypted) {
throw new Error("Files are encrypted but no password has been supplied.")
}
// have to handle object import
if (contents.length && opts.importObjStoreContents) {
let promises = []