Make sure password is always requested when working with encrypted files - if the enc file has been copied the name may change format, we should handle if this happens.

This commit is contained in:
mike12345567 2024-12-17 12:28:22 +00:00
parent c905d64f31
commit 2e7f75e93c
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 = []