const fs = require('fs-extra'); const path = require('path'); const sax = require('../../sax'); const utils = require('../../utils'); const ConvertHtml = require('./ConvertHtml'); class ConvertPdf extends ConvertHtml { check(data, opts) { const {inputFiles} = opts; return this.config.useExternalBookConverter && inputFiles.sourceFileType && inputFiles.sourceFileType.ext == 'pdf'; } async run(notUsed, opts) { if (!this.check(notUsed, opts)) return false; await this.checkExternalConverterPresent(); const {inputFiles, callback, abort, uploadFileName} = opts; const inpFile = inputFiles.sourceFile; const outFile = `${inputFiles.filesDir}/${utils.randomHexString(10)}.xml`; const pdfaltoPath = `${this.config.dataDir}/pdfalto/pdfalto`; if (!await fs.pathExists(pdfaltoPath)) throw new Error('Внешний конвертер pdfalto не найден'); //конвертируем в xml let perc = 0; await this.execConverter(pdfaltoPath, [inpFile, outFile], () => { perc = (perc < 80 ? perc + 10 : 40); callback(perc); }, abort); callback(80); const data = await fs.readFile(outFile); callback(90); //парсим xml let lines = []; let images = []; let loading = []; let title = ''; let prevTop = 0; let i = -1; const loadImage = async(image) => { const src = path.parse(image.src); let type = 'unknown'; switch (src.ext) { case '.jpg': type = 'image/jpeg'; break; case '.png': type = 'image/png'; break; } if (type != 'unknown') { image.data = (await fs.readFile(image.src)).toString('base64'); image.type = type; image.name = src.base; } } const putImage = (curTop) => { if (!isNaN(curTop) && images.length) { while (images.length && images[0].top < curTop) { i++; lines[i] = images[0]; images.shift(); } } } /* let tOpen = (bold ? '' : ''); tOpen += (italic ? '' : ''); let tClose = (italic ? '' : ''); tClose += (bold ? '' : ''); lines[i].text += `${tOpen}${text}${tClose} `;*/ const onStartNode = (tag, tail, singleTag, cutCounter, cutTag) => {// eslint-disable-line no-unused-vars if (tag == 'page') putImage(100000); if (tag == 'textline') { const attrs = sax.getAttrsSync(tail); const line = { text: '', top: parseInt((attrs.vpos && attrs.vpos.value ? attrs.vpos.value : null), 10), left: parseInt((attrs.hpos && attrs.hpos.value ? attrs.hpos.value : null), 10), width: parseInt((attrs.width && attrs.width.value ? attrs.width.value : null), 10), height: parseInt((attrs.height && attrs.height.value ? attrs.height.value : null), 10), }; if (line.width != 0 || line.height != 0) { if (isNaN(line.top) || isNaN(prevTop) || (Math.abs(prevTop - line.top) > 3)) { putImage(line.top); i++; lines[i] = line; } prevTop = line.top; } } if (tag == 'string') { const attrs = sax.getAttrsSync(tail); if (attrs.content && attrs.content.value) { lines[i].text += `${attrs.content.value} `; } } if (tag == 'illustration') { const attrs = sax.getAttrsSync(tail); if (attrs.type && attrs.type.value == 'image') { let src = (attrs.fileid && attrs.fileid.value ? attrs.fileid.value : ''); if (src) { const image = { isImage: true, src, data: '', type: '', top: parseInt((attrs.vpos && attrs.vpos.value ? attrs.vpos.value : null), 10) || 0, }; loading.push(loadImage(image)); images.push(image); images.sort((a, b) => a.top - b.top) } } } }; /* const onEndNode = (tag, tail, singleTag, cutCounter, cutTag) => {// eslint-disable-line no-unused-vars }; */ let buf = this.decode(data).toString(); sax.parseSync(buf, { onStartNode }); putImage(100000); await Promise.all(loading); //найдем параграфы и отступы const indents = []; for (const line of lines) { if (line.isImage) continue; if (!isNaN(line.left)) { indents[line.left] = 1; } } let j = 0; for (let i = 0; i < indents.length; i++) { if (indents[i]) { j++; indents[i] = j; } } indents[0] = 0; //формируем текст const limitSize = 2*this.config.maxUploadFileSize; if (!title && uploadFileName) title = uploadFileName; let text = `