From 290c47df305edc56ac08ff1e593cc85f247b1a2c Mon Sep 17 00:00:00 2001 From: AuroraHuang22 Date: Mon, 18 Mar 2024 21:22:40 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E2=9C=A8=20Define=20book=20cover=20for=20P?= =?UTF-8?q?DF=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/IscnRegisterForm.vue | 8 ++-- components/IscnUploadForm.vue | 75 +++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 4 deletions(-) diff --git a/components/IscnRegisterForm.vue b/components/IscnRegisterForm.vue index e8dfb03e..d2203c6b 100644 --- a/components/IscnRegisterForm.vue +++ b/components/IscnRegisterForm.vue @@ -1067,12 +1067,12 @@ export default class IscnRegisterForm extends Vue { this.uploadStatus = 'loading' if (this.epubMetadata) { - this.name = this.epubMetadata.title + this.name = this.epubMetadata.title || '' this.description = this.extractText(this.epubMetadata.description) - this.author.name = this.epubMetadata.author + this.author.name = this.epubMetadata.author || '' this.author.authorDescription = 'Author' - this.language = this.epubMetadata.language - this.tags = this.epubMetadata.tags + this.language = this.epubMetadata.language || '' + this.tags = this.epubMetadata.tags || [] this.thumbnailUrl = this.formatArweave( this.epubMetadata.thumbnailArweaveId, ) as string diff --git a/components/IscnUploadForm.vue b/components/IscnUploadForm.vue index c8c88ac8..8040809b 100644 --- a/components/IscnUploadForm.vue +++ b/components/IscnUploadForm.vue @@ -266,6 +266,13 @@ const MODE = { EDIT: 'edit', } +const IMAGE_MIME_TYPES = [ + 'image/jpeg', + 'image/png', + 'image/gif', + 'image/webp', +] + @Component export default class IscnUploadForm extends Vue { @Prop(Number) readonly step: number | undefined @@ -813,8 +820,76 @@ export default class IscnUploadForm extends Vue { } } + checkUploadFileTypeIsPDF() { + let hasPDF = false; + // eslint-disable-next-line no-restricted-syntax + for (const file of this.fileRecords) { + if (file.fileType === 'application/epub+zip') { + return false; + } + if (file.fileType === 'application/pdf') { + hasPDF = true; + } + } + return hasPDF; + } + + + addToEpubMetadataList(ipfsHash: string, arweaveId: string) { + this.epubMetadataList.push({ + thumbnailIpfsHash: ipfsHash, + thumbnailArweaveId: arweaveId, + }) + } + + // eslint-disable-next-line class-methods-use-this + async uploadFileAndGetArweaveId(file: any, txHash: string) { + const arrayBuffer = await file.fileBlob.arrayBuffer() + const buffer = Buffer.from(arrayBuffer) + return uploadSingleFileToBundlr(buffer, { + fileSize: file.fileBlob?.size || 0, + ipfsHash: file.ipfsHash, + fileType: file.fileType, + txHash, + }) + } + + async setEbookCoverFromImages() { + if ( + this.epubMetadataList[0] && + this.epubMetadataList[0].thumbnailArweaveId + ) { + return + } + // eslint-disable-next-line no-restricted-syntax + for (const file of this.fileRecords) { + if (IMAGE_MIME_TYPES.includes(file.fileType)) { + const existingData = + this.sentArweaveTransactionInfo.get(file.ipfsHash) || {} + const { transactionHash, arweaveId: uploadArweaveId } = existingData + if (uploadArweaveId) { + this.addToEpubMetadataList(transactionHash as string, uploadArweaveId) + return + } + // eslint-disable-next-line no-await-in-loop + const arweaveId = await this.uploadFileAndGetArweaveId( + file, + transactionHash as string, + ) + if (arweaveId) { + this.addToEpubMetadataList(file.ipfsHash, arweaveId) + return + } + return + } + } + } + async onSubmit() { if (IS_CHAIN_UPGRADING) return + if (this.checkUploadFileTypeIsPDF()) { + await this.setEbookCoverFromImages() + } logTrackerEvent(this, 'ISCNCreate', 'ClickUpload', '', 1); this.uploadStatus = 'uploading' this.error = '' From e3c74aa15d6adc2d56ee9519ef5fd8ddeb381965 Mon Sep 17 00:00:00 2001 From: AuroraHuang22 Date: Tue, 19 Mar 2024 10:32:29 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9B=20Fix=20the=20missing=20txHash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/IscnUploadForm.vue | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/components/IscnUploadForm.vue b/components/IscnUploadForm.vue index 8040809b..d70f72b7 100644 --- a/components/IscnUploadForm.vue +++ b/components/IscnUploadForm.vue @@ -765,8 +765,6 @@ export default class IscnUploadForm extends Vue { // TODO: Handle error // eslint-disable-next-line no-console console.error(err); - } finally { - this.uploadStatus = ''; } return ''; } @@ -866,16 +864,19 @@ export default class IscnUploadForm extends Vue { if (IMAGE_MIME_TYPES.includes(file.fileType)) { const existingData = this.sentArweaveTransactionInfo.get(file.ipfsHash) || {} - const { transactionHash, arweaveId: uploadArweaveId } = existingData - if (uploadArweaveId) { - this.addToEpubMetadataList(transactionHash as string, uploadArweaveId) + if (existingData.arweaveId) { + this.addToEpubMetadataList(file.ipfsHash, existingData.arweaveId) return } + const transactionHash = + // eslint-disable-next-line no-await-in-loop + existingData.transactionHash || (await this.sendArweaveFeeTx(file)) // eslint-disable-next-line no-await-in-loop const arweaveId = await this.uploadFileAndGetArweaveId( file, - transactionHash as string, + transactionHash, ) + if (arweaveId) { this.addToEpubMetadataList(file.ipfsHash, arweaveId) return @@ -887,9 +888,6 @@ export default class IscnUploadForm extends Vue { async onSubmit() { if (IS_CHAIN_UPGRADING) return - if (this.checkUploadFileTypeIsPDF()) { - await this.setEbookCoverFromImages() - } logTrackerEvent(this, 'ISCNCreate', 'ClickUpload', '', 1); this.uploadStatus = 'uploading' this.error = '' @@ -912,6 +910,11 @@ export default class IscnUploadForm extends Vue { try { this.uploadStatus = 'uploading'; + + if (this.checkUploadFileTypeIsPDF()) { + await this.setEbookCoverFromImages() + } + // eslint-disable-next-line no-restricted-syntax this.numberOfSignNeeded = this.modifiedFileRecords.length; this.signProgress = 0;