Odt template with images (#9)
* Add a test about image preservation * Image preserving odt generation
This commit is contained in:
parent
c937294fdc
commit
e7fc82fb6c
@ -1,11 +1,10 @@
|
|||||||
import { ZipReader, ZipWriter, BlobReader, BlobWriter, TextReader, Uint8ArrayReader, TextWriter, Uint8ArrayWriter } from '@zip.js/zip.js';
|
import { ZipReader, ZipWriter, BlobReader, BlobWriter, TextReader, Uint8ArrayReader, TextWriter, Uint8ArrayWriter } from '@zip.js/zip.js';
|
||||||
|
|
||||||
import {traverse} from '../DOMUtils.js'
|
import {traverse} from '../DOMUtils.js'
|
||||||
import makeManifestFile from './makeManifestFile.js';
|
import {makeManifestFile, getManifestFileData} from './manifest.js';
|
||||||
|
|
||||||
// fillOdtTemplate, getOdtTemplate, getOdtTextContent
|
/** @import {Reader, ZipWriterAddDataOptions} from '@zip.js/zip.js' */
|
||||||
|
/** @import {ODFManifest} from './manifest.js' */
|
||||||
/** @import {ODFManifest} from './makeManifestFile.js' */
|
|
||||||
|
|
||||||
/** @typedef {ArrayBuffer} ODTFile */
|
/** @typedef {ArrayBuffer} ODTFile */
|
||||||
|
|
||||||
@ -329,6 +328,18 @@ function fillTemplatedOdtElement(rootElement, data, Node){
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const keptFiles = new Set(['content.xml', 'styles.xml', 'mimetype', 'META-INF/manifest.xml'])
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {string} filename
|
||||||
|
* @returns {boolean}
|
||||||
|
*/
|
||||||
|
function keepFile(filename){
|
||||||
|
return keptFiles.has(filename) || filename.startsWith('Pictures/')
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ODTFile} odtTemplate
|
* @param {ODTFile} odtTemplate
|
||||||
@ -349,26 +360,24 @@ export default async function _fillOdtTemplate(odtTemplate, data, parseXML, seri
|
|||||||
const writer = new ZipWriter(new Uint8ArrayWriter());
|
const writer = new ZipWriter(new Uint8ArrayWriter());
|
||||||
|
|
||||||
/** @type {ODFManifest} */
|
/** @type {ODFManifest} */
|
||||||
const manifestFileData = {
|
let manifestFileData;
|
||||||
mediaType: ODTMimetype,
|
|
||||||
version: '1.3', // default, but may be changed
|
|
||||||
fileEntries: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const keptFiles = new Set(['content.xml', 'styles.xml', 'mimetype'])
|
|
||||||
|
|
||||||
|
/** @type {{filename: string, content: Reader, options?: ZipWriterAddDataOptions}[]} */
|
||||||
|
const zipEntriesToAdd = []
|
||||||
|
|
||||||
// Parcourir chaque entrée du fichier ODT
|
// Parcourir chaque entrée du fichier ODT
|
||||||
for await (const entry of entries) {
|
for await (const entry of entries) {
|
||||||
const filename = entry.filename
|
const filename = entry.filename
|
||||||
|
|
||||||
|
//console.log('entry', filename, entry.directory)
|
||||||
|
|
||||||
// remove other files
|
// remove other files
|
||||||
if(!keptFiles.has(filename)){
|
if(!keepFile(filename)){
|
||||||
// ignore, do not create a corresponding entry in the new zip
|
// ignore, do not create a corresponding entry in the new zip
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
let content;
|
let content
|
||||||
let options;
|
let options
|
||||||
|
|
||||||
switch(filename){
|
switch(filename){
|
||||||
case 'mimetype':
|
case 'mimetype':
|
||||||
@ -379,49 +388,65 @@ export default async function _fillOdtTemplate(odtTemplate, data, parseXML, seri
|
|||||||
dataDescriptor: false,
|
dataDescriptor: false,
|
||||||
extendedTimestamp: false,
|
extendedTimestamp: false,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
zipEntriesToAdd.push({filename, content, options})
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case 'content.xml':
|
case 'content.xml':
|
||||||
|
// @ts-ignore
|
||||||
const contentXml = await entry.getData(new TextWriter());
|
const contentXml = await entry.getData(new TextWriter());
|
||||||
const contentDocument = parseXML(contentXml);
|
const contentDocument = parseXML(contentXml);
|
||||||
fillTemplatedOdtElement(contentDocument, data, Node)
|
fillTemplatedOdtElement(contentDocument, data, Node)
|
||||||
const updatedContentXml = serializeToString(contentDocument)
|
const updatedContentXml = serializeToString(contentDocument)
|
||||||
|
|
||||||
const docContentElement = contentDocument.getElementsByTagName('office:document-content')[0]
|
|
||||||
const version = docContentElement.getAttribute('office:version')
|
|
||||||
|
|
||||||
//console.log('version', version)
|
|
||||||
manifestFileData.version = version
|
|
||||||
manifestFileData.fileEntries.push({
|
|
||||||
fullPath: filename,
|
|
||||||
mediaType: 'text/xml'
|
|
||||||
})
|
|
||||||
|
|
||||||
content = new TextReader(updatedContentXml)
|
content = new TextReader(updatedContentXml)
|
||||||
options = {
|
options = {
|
||||||
lastModDate: entry.lastModDate,
|
lastModDate: entry.lastModDate,
|
||||||
level: 9
|
level: 9
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zipEntriesToAdd.push({filename, content, options})
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'META-INF/manifest.xml':
|
||||||
|
// @ts-ignore
|
||||||
|
const manifestXml = await entry.getData(new TextWriter());
|
||||||
|
const manifestDocument = parseXML(manifestXml);
|
||||||
|
manifestFileData = getManifestFileData(manifestDocument)
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
case 'styles.xml':
|
case 'styles.xml':
|
||||||
|
default:
|
||||||
const blobWriter = new BlobWriter();
|
const blobWriter = new BlobWriter();
|
||||||
|
// @ts-ignore
|
||||||
await entry.getData(blobWriter);
|
await entry.getData(blobWriter);
|
||||||
const blob = await blobWriter.getData();
|
const blob = await blobWriter.getData();
|
||||||
|
|
||||||
manifestFileData.fileEntries.push({
|
|
||||||
fullPath: filename,
|
|
||||||
mediaType: 'text/xml'
|
|
||||||
})
|
|
||||||
|
|
||||||
content = new BlobReader(blob)
|
content = new BlobReader(blob)
|
||||||
|
zipEntriesToAdd.push({filename, content})
|
||||||
break;
|
break;
|
||||||
default:
|
}
|
||||||
throw new Error(`Unexpected file (${filename})`)
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
for(const {filename, content, options} of zipEntriesToAdd){
|
||||||
await writer.add(filename, content, options);
|
await writer.add(filename, content, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const newZipFilenames = new Set(zipEntriesToAdd.map(ze => ze.filename))
|
||||||
|
|
||||||
|
if(!manifestFileData){
|
||||||
|
throw new Error(`'META-INF/manifest.xml' zip entry missing`)
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove ignored files from manifest.xml
|
||||||
|
for(const filename of manifestFileData.fileEntries.keys()){
|
||||||
|
if(!newZipFilenames.has(filename)){
|
||||||
|
manifestFileData.fileEntries.delete(filename)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const manifestFileXml = makeManifestFile(manifestFileData)
|
const manifestFileXml = makeManifestFile(manifestFileData)
|
||||||
|
|||||||
@ -1,44 +0,0 @@
|
|||||||
|
|
||||||
/*
|
|
||||||
As specified by https://docs.oasis-open.org/office/OpenDocument/v1.3/os/part2-packages/OpenDocument-v1.3-os-part2-packages.html#__RefHeading__752825_826425813
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @typedef {'application/vnd.oasis.opendocument.text' | 'application/vnd.oasis.opendocument.spreadsheet'} ODFMediaType */
|
|
||||||
|
|
||||||
/** @typedef {'1.2' | '1.3' | '1.4'} ODFVersion */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @typedef ODFManifestFileEntry
|
|
||||||
* @prop {string} fullPath
|
|
||||||
* @prop {string} mediaType
|
|
||||||
* @prop {string} [version]
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @typedef ODFManifest
|
|
||||||
* @prop {ODFMediaType} mediaType
|
|
||||||
* @prop {ODFVersion} version
|
|
||||||
* @prop {ODFManifestFileEntry[]} fileEntries
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param {ODFManifestFileEntry} fileEntry
|
|
||||||
* @returns {string}
|
|
||||||
*/
|
|
||||||
function makeFileEntry({fullPath, mediaType}){
|
|
||||||
return `<manifest:file-entry manifest:full-path="${fullPath}" manifest:media-type="${mediaType}"/>`
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param {ODFManifest} odfManifest
|
|
||||||
* @returns {string}
|
|
||||||
*/
|
|
||||||
export default function makeManifestFile({fileEntries, mediaType, version}){
|
|
||||||
return `<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="${version}">
|
|
||||||
<manifest:file-entry manifest:full-path="/" manifest:version="${version}" manifest:media-type="${mediaType}"/>
|
|
||||||
${fileEntries.map(makeFileEntry).join('\n')}
|
|
||||||
</manifest:manifest>`
|
|
||||||
}
|
|
||||||
103
scripts/odf/manifest.js
Normal file
103
scripts/odf/manifest.js
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
As specified by https://docs.oasis-open.org/office/OpenDocument/v1.3/os/part2-packages/OpenDocument-v1.3-os-part2-packages.html#__RefHeading__752825_826425813
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** @typedef {'application/vnd.oasis.opendocument.text' | 'application/vnd.oasis.opendocument.spreadsheet'} ODFMediaType */
|
||||||
|
|
||||||
|
/** @typedef {'1.2' | '1.3' | '1.4'} ODFVersion */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef ODFManifestFileEntry
|
||||||
|
* @prop {string} fullPath
|
||||||
|
* @prop {string} mediaType
|
||||||
|
* @prop {string} [version]
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef ODFManifest
|
||||||
|
* @prop {ODFMediaType} mediaType
|
||||||
|
* @prop {ODFVersion} version
|
||||||
|
* @prop {Map<ODFManifestFileEntry['fullPath'], ODFManifestFileEntry>} fileEntries
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {ODFManifestFileEntry} fileEntry
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
function makeFileEntry({fullPath, mediaType}){
|
||||||
|
return `<manifest:file-entry manifest:full-path="${fullPath}" manifest:media-type="${mediaType}"/>`
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {ODFManifest} odfManifest
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
export function makeManifestFile({fileEntries, mediaType, version}){
|
||||||
|
return `<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="${version}">
|
||||||
|
<manifest:file-entry manifest:full-path="/" manifest:version="${version}" manifest:media-type="${mediaType}"/>
|
||||||
|
${[...fileEntries.values()].map(makeFileEntry).join('\n')}
|
||||||
|
</manifest:manifest>`
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {Document} manifestDoc
|
||||||
|
* @returns {ODFManifest}
|
||||||
|
*/
|
||||||
|
export function getManifestFileData(manifestDoc){
|
||||||
|
/** @type {Partial<ReturnType<getManifestFileData>>} */
|
||||||
|
const manifestData = {
|
||||||
|
fileEntries: new Map()
|
||||||
|
}
|
||||||
|
|
||||||
|
const manifestEl = manifestDoc.getElementsByTagName('manifest:manifest')[0]
|
||||||
|
/** @type {ODFVersion} */
|
||||||
|
// @ts-ignore
|
||||||
|
const version = manifestEl.getAttribute('manifest:version');
|
||||||
|
if(!version){
|
||||||
|
throw new Error(`Missing version attibute in manifest:manifest element of manifest.xml file`)
|
||||||
|
}
|
||||||
|
|
||||||
|
manifestData.version = version
|
||||||
|
|
||||||
|
const manifestEntryEls = manifestEl.getElementsByTagName('manifest:file-entry')
|
||||||
|
|
||||||
|
for(const manifestEntryEl of Array.from(manifestEntryEls)){
|
||||||
|
/** @type {ODFManifestFileEntry} */
|
||||||
|
const odfManifestFileEntry = {
|
||||||
|
fullPath: '',
|
||||||
|
mediaType: ''
|
||||||
|
}
|
||||||
|
|
||||||
|
const fullPath = manifestEntryEl.getAttribute('manifest:full-path')
|
||||||
|
if(!fullPath){
|
||||||
|
throw new Error(`Missing manifest:full-path attribute in manifest entry`)
|
||||||
|
}
|
||||||
|
odfManifestFileEntry.fullPath = fullPath
|
||||||
|
|
||||||
|
const mediaType = manifestEntryEl.getAttribute('manifest:media-type')
|
||||||
|
if(!mediaType){
|
||||||
|
throw new Error(`Missing manifest:media-type attribute in manifest entry for '${fullPath}'`)
|
||||||
|
}
|
||||||
|
odfManifestFileEntry.mediaType = mediaType
|
||||||
|
|
||||||
|
if(fullPath === '/'){
|
||||||
|
// @ts-ignore
|
||||||
|
manifestData.mediaType = mediaType
|
||||||
|
}
|
||||||
|
|
||||||
|
const version = manifestEntryEl.getAttribute('manifest:version')
|
||||||
|
if(version){
|
||||||
|
odfManifestFileEntry.version = version
|
||||||
|
}
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
manifestData.fileEntries.set(fullPath, odfManifestFileEntry)
|
||||||
|
}
|
||||||
|
|
||||||
|
//@ts-ignore
|
||||||
|
return manifestData
|
||||||
|
}
|
||||||
11
tests/_helpers/zip-analysis.js
Normal file
11
tests/_helpers/zip-analysis.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import { ZipReader, Uint8ArrayReader } from '@zip.js/zip.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {ArrayBuffer} odtTemplate
|
||||||
|
* @returns {ReturnType<typeof ZipReader.prototype.getEntries>}
|
||||||
|
*/
|
||||||
|
export async function listZipEntries(odtTemplate){
|
||||||
|
const reader = new ZipReader(new Uint8ArrayReader(new Uint8Array(odtTemplate)));
|
||||||
|
return reader.getEntries();
|
||||||
|
}
|
||||||
BIN
tests/data/template-avec-image.odt
Normal file
BIN
tests/data/template-avec-image.odt
Normal file
Binary file not shown.
@ -4,6 +4,7 @@ import {join} from 'node:path';
|
|||||||
import {getOdtTemplate, getOdtTextContent} from '../scripts/odf/odtTemplate-forNode.js'
|
import {getOdtTemplate, getOdtTextContent} from '../scripts/odf/odtTemplate-forNode.js'
|
||||||
|
|
||||||
import {fillOdtTemplate} from '../scripts/node.js'
|
import {fillOdtTemplate} from '../scripts/node.js'
|
||||||
|
import { listZipEntries } from './_helpers/zip-analysis.js';
|
||||||
|
|
||||||
|
|
||||||
test('basic template filling with variable substitution', async t => {
|
test('basic template filling with variable substitution', async t => {
|
||||||
@ -312,3 +313,32 @@ Année
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
test('template filling preserves images', async t => {
|
||||||
|
const templatePath = join(import.meta.dirname, './data/template-avec-image.odt')
|
||||||
|
|
||||||
|
const data = {
|
||||||
|
commentaire : `J'adooooooore 🤩 West covinaaaaaaaaaaa 🎶`
|
||||||
|
}
|
||||||
|
|
||||||
|
const odtTemplate = await getOdtTemplate(templatePath)
|
||||||
|
const templateEntries = await listZipEntries(odtTemplate)
|
||||||
|
|
||||||
|
//console.log('templateEntries', templateEntries.map(({filename, directory}) => ({filename, directory})))
|
||||||
|
|
||||||
|
t.assert(
|
||||||
|
templateEntries.find(entry => entry.filename.startsWith('Pictures/')),
|
||||||
|
`One zip entry of the template is expected to have a name that starts with 'Pictures/'`
|
||||||
|
)
|
||||||
|
|
||||||
|
const odtResult = await fillOdtTemplate(odtTemplate, data)
|
||||||
|
const resultEntries = await listZipEntries(odtResult)
|
||||||
|
|
||||||
|
//console.log('resultEntries', resultEntries.map(({filename, directory}) => ({filename, directory})))
|
||||||
|
|
||||||
|
|
||||||
|
t.assert(
|
||||||
|
resultEntries.find(entry => entry.filename.startsWith('Pictures/')),
|
||||||
|
`One zip entry of the result is expected to have a name that starts with 'Pictures/'`
|
||||||
|
)
|
||||||
|
|
||||||
|
})
|
||||||
@ -1,3 +1,4 @@
|
|||||||
|
import {writeFile} from 'node:fs/promises'
|
||||||
import {join} from 'node:path';
|
import {join} from 'node:path';
|
||||||
|
|
||||||
import {getOdtTemplate} from '../scripts/odf/odtTemplate-forNode.js'
|
import {getOdtTemplate} from '../scripts/odf/odtTemplate-forNode.js'
|
||||||
@ -38,6 +39,8 @@ const data = {
|
|||||||
]
|
]
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
const templatePath = join(import.meta.dirname, '../tests/data/tableau-simple.odt')
|
const templatePath = join(import.meta.dirname, '../tests/data/tableau-simple.odt')
|
||||||
const data = {
|
const data = {
|
||||||
annéeConsos : [
|
annéeConsos : [
|
||||||
@ -49,9 +52,15 @@ const data = {
|
|||||||
{ année: 2020, conso: 37859.246},
|
{ année: 2020, conso: 37859.246},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
const templatePath = join(import.meta.dirname, '../tests/data/template-avec-image.odt')
|
||||||
|
|
||||||
|
const data = {
|
||||||
|
commentaire : `J'adooooooore 🤩 West covinaaaaaaaaaaa 🎶`
|
||||||
|
}
|
||||||
|
|
||||||
const odtTemplate = await getOdtTemplate(templatePath)
|
const odtTemplate = await getOdtTemplate(templatePath)
|
||||||
const odtResult = await fillOdtTemplate(odtTemplate, data)
|
const odtResult = await fillOdtTemplate(odtTemplate, data)
|
||||||
|
|
||||||
process.stdout.write(new Uint8Array(odtResult))
|
writeFile('yo.odt', new Uint8Array(odtResult))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user