From 31fb2b96a58492c3214197685787f42f305a42ad Mon Sep 17 00:00:00 2001 From: Damian Celico Date: Mon, 27 Jun 2022 16:43:21 +0200 Subject: Check certificate file extension Checking the file extension type of uploaded certificates to redfish. Sends the file only if the file type is correct, otherwise shows error. Signed-off-by: Damian Celico Change-Id: Idfc790bc8967333aed66c5c128334af4231dbea3 --- .../Certificates/Certificates.vue | 30 +++++++++++++++++----- 1 file changed, 23 insertions(+), 7 deletions(-) (limited to 'src/views/SecurityAndAccess/Certificates/Certificates.vue') diff --git a/src/views/SecurityAndAccess/Certificates/Certificates.vue b/src/views/SecurityAndAccess/Certificates/Certificates.vue index 0113b80a..677d19d9 100644 --- a/src/views/SecurityAndAccess/Certificates/Certificates.vue +++ b/src/views/SecurityAndAccess/Certificates/Certificates.vue @@ -29,6 +29,12 @@ }} + + + + @@ -136,6 +142,7 @@ export default { return { isBusy: true, modalCertificate: null, + fileTypeCorrect: undefined, fields: [ { key: 'certificate', @@ -258,19 +265,24 @@ export default { onModalOk({ addNew, file, type, location }) { if (addNew) { // Upload a new certificate - this.addNewCertificate(file, type); + this.fileTypeCorrect = this.getIsFileTypeCorrect(file); + if (this.fileTypeCorrect) { + this.addNewCertificate(file, type); + } } else { // Replace an existing certificate this.replaceCertificate(file, type, location); } }, addNewCertificate(file, type) { - this.startLoader(); - this.$store - .dispatch('certificates/addNewCertificate', { file, type }) - .then((success) => this.successToast(success)) - .catch(({ message }) => this.errorToast(message)) - .finally(() => this.endLoader()); + if (this.fileTypeCorrect === true) { + this.startLoader(); + this.$store + .dispatch('certificates/addNewCertificate', { file, type }) + .then((success) => this.successToast(success)) + .catch(({ message }) => this.errorToast(message)) + .finally(() => this.endLoader()); + } }, replaceCertificate(file, type, location) { this.startLoader(); @@ -317,6 +329,10 @@ export default { return 'warning'; } }, + getIsFileTypeCorrect(file) { + const fileTypeExtension = file.name.split('.').pop(); + return fileTypeExtension === 'pem'; + }, }, }; -- cgit v1.2.3