Skip to content

Commit

Permalink
Add frontend check for invalid attached files
Browse files Browse the repository at this point in the history
Signed-off-by: Knut Ahlers <[email protected]>
  • Loading branch information
Luzifer committed Oct 18, 2023
1 parent 46db5c8 commit 5c76e7a
Showing 1 changed file with 51 additions and 3 deletions.
54 changes: 51 additions & 3 deletions src/components/create.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,19 @@
type="file"
multiple
:accept="$root.customize.acceptedFileTypes"
@change="updateFileSize"
@change="updateFileMeta"
>
<div class="form-text">
{{ $t('text-max-filesize', { maxSize: bytesToHuman(maxFileSize) }) }}
</div>
<div
v-if="maxFileSizeExceeded"
v-if="invalidFilesSelected"
class="alert alert-danger"
>
{{ $t('text-invalid-files-selected') }}
</div>
<div
v-else-if="maxFileSizeExceeded"
class="alert alert-danger"
>
{{ $t('text-max-filesize-exceeded', { curSize: bytesToHuman(fileSize), maxSize: bytesToHuman(maxFileSize) }) }}
Expand Down Expand Up @@ -166,6 +172,30 @@ export default {
return choices
},
invalidFilesSelected() {
if (this.$root.customize.acceptedFileTypes === '') {
// No limitation configured, no need to check
return false
}
const accepted = this.$root.customize.acceptedFileTypes.split(',')
for (const fm of this.selectedFileMeta) {
let hasAccept = false
for (const a of accepted) {
if (this.isAcceptedBy(fm, a)) {
hasAccept = true
}
}
if (!hasAccept) {
return true
}
}
return false
},
maxFileSize() {
return this.$root.customize.maxAttachmentSizeTotal === 0 ? internalMaxFileSize : Math.min(internalMaxFileSize, this.$root.customize.maxAttachmentSizeTotal)
},
Expand All @@ -187,6 +217,7 @@ export default {
secret: '',
securePassword: null,
selectedExpiry: null,
selectedFileMeta: [],
}
},
Expand Down Expand Up @@ -275,13 +306,30 @@ export default {
return false
},
updateFileSize() {
isAcceptedBy(fileMeta, accept) {
if (/^(?:[a-z]+|\*)\/(?:[a-z.+-]+|\*)$/.test(accept)) {
// That's likely supposed to be a mime-type
return RegExp(`^${accept.replaceAll('*', '.*')}$`).test(fileMeta.type)
} else if (/^\.[a-z.]+$/.test(accept)) {
// That sould be a file extension
return fileMeta.name.endsWith(accept)
}
// What exactly is it then? At least it can't accept anything.
return false
},
updateFileMeta() {
let cumSize = 0
for (const f of [...this.$refs.createSecretFiles.files]) {
cumSize += f.size
}
this.fileSize = cumSize
this.selectedFileMeta = [...this.$refs.createSecretFiles.files].map(file => ({
name: file.name,
type: file.type,
}))
},
},
Expand Down

0 comments on commit 5c76e7a

Please sign in to comment.