-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathDocxZipper.js
More file actions
225 lines (189 loc) · 7.96 KB
/
DocxZipper.js
File metadata and controls
225 lines (189 loc) · 7.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import JSZip from 'jszip';
import { getContentTypesFromXml } from './super-converter/helpers.js';
import { CONTENT_TYPES } from './super-converter/exporter-docx-defs.js';
/**
* Class to handle unzipping and zipping of docx files
*/
class DocxZipper {
constructor(params = {}) {
this.debug = params.debug || false;
this.zip = new JSZip();
this.files = [];
this.media = {};
this.mediaFiles = {};
this.fonts = {};
}
/**
* Get all docx data from the zipped docx
*
* [Content_Types].xml
* _rels/.rels
* word/document.xml
* word/_rels/document.xml.rels
* word/footnotes.xml
* word/endnotes.xml
* word/header1.xml
* word/theme/theme1.xml
* word/settings.xml
* word/styles.xml
* word/webSettings.xml
* word/fontTable.xml
* docProps/core.xml
* docProps/app.xml
* */
async getDocxData(file, isNode = false) {
const extractedFiles = await this.unzip(file);
const files = Object.entries(extractedFiles.files);
const mediaObjects = {};
const validTypes = ['xml', 'rels'];
for (const file of files) {
const [_, zipEntry] = file;
if (validTypes.some((validType) => zipEntry.name.endsWith(validType))) {
const content = await zipEntry.async('string');
this.files.push({
name: zipEntry.name,
content,
});
} else if (zipEntry.name.startsWith('word/media') && zipEntry.name !== 'word/media/') {
// If we are in node, we need to convert the buffer to base64
if (isNode) {
const buffer = await zipEntry.async('nodebuffer');
const fileBase64 = buffer.toString('base64');
mediaObjects[zipEntry.name] = fileBase64;
}
// If we are in the browser, we can use the base64 directly
else {
const blob = await zipEntry.async('blob');
const extension = this.getFileExtension(zipEntry.name);
const fileBase64 = await zipEntry.async('base64');
this.mediaFiles[zipEntry.name] = `data:image/${extension};base64,${fileBase64}`;
const file = new File([blob], zipEntry.name, { type: blob.type });
const imageUrl = URL.createObjectURL(file);
this.media[zipEntry.name] = imageUrl;
}
} else if (zipEntry.name.startsWith('word/fonts') && zipEntry.name !== 'word/fonts/') {
const uint8array = await zipEntry.async('uint8array');
this.fonts[zipEntry.name] = uint8array;
}
}
return this.files;
}
getFileExtension(fileName) {
return fileName.split('.').pop();
}
/**
* Update [Content_Types].xml with extensions of new Image annotations
*/
async updateContentTypes(docx, media) {
const newMediaTypes = Object.keys(media).map((name) => {
return this.getFileExtension(name);
});
const contentTypesPath = '[Content_Types].xml';
const contentTypesXml = await docx.file(contentTypesPath).async('string');
let typesString = '';
const defaultMediaTypes = getContentTypesFromXml(contentTypesXml);
// Update media types in content types
const seenTypes = new Set();
for (let type of newMediaTypes) {
// Current extension already presented in Content_Types
if (defaultMediaTypes.includes(type)) continue;
if (seenTypes.has(type)) continue;
const newContentType = `<Default Extension="${type}" ContentType="image/${type}"/>`;
typesString += newContentType;
seenTypes.add(type);
}
// Update for comments
if (docx.files['word/comments.xml']) {
const commentsDef = `<Override PartName="/word/comments.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml" />`;
if (!contentTypesXml.includes(commentsDef)) typesString += commentsDef;
};
if (docx.files['word/commentsExtended.xml']) {
const commentsExtendedDef = `<Override PartName="/word/commentsExtended.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml" />`;
if (!contentTypesXml.includes(commentsExtendedDef)) typesString += commentsExtendedDef;
};
if (docx.files['word/commentsIds.xml']) {
const commentsIdsDef = `<Override PartName="/word/commentsIds.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.commentsIds+xml" />`;
if (!contentTypesXml.includes(commentsIdsDef)) typesString += commentsIdsDef;
};
if (docx.files['word/commentsExtensible.xml']) {
const commentsExtendedDef = `<Override PartName="/word/commentsExtensible.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtensible+xml" />`;
if (!contentTypesXml.includes(commentsExtendedDef)) typesString += commentsExtendedDef;
};
const beginningString = '<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">';
const updatedContentTypesXml = contentTypesXml.replace(beginningString, `${beginningString}${typesString}`);
docx.file(contentTypesPath, updatedContentTypesXml);
}
async unzip(file) {
const zip = await this.zip.loadAsync(file);
return zip;
}
async updateZip({ docx, updatedDocs, originalDocxFile, media, fonts, isHeadless }) {
// We use a different re-zip process if we have the original docx vs the docx xml metadata
let zip;
if (originalDocxFile) {
zip = await this.exportFromOriginalFile(originalDocxFile, updatedDocs, media);
} else {
zip = await this.exportFromCollaborativeDocx(docx, updatedDocs, media, fonts);
}
// If we are headless we don't have 'blob' support, so export as 'nodebuffer'
const exportType = isHeadless ? 'nodebuffer' : 'blob';
return await zip.generateAsync({ type: exportType });
}
/**
* Export the Editor content to a docx file, updating changed docs
* @param {Object} docx An object containing the unzipped docx files (keys are relative file names)
* @param {Object} updatedDocs An object containing the updated docs (keys are relative file names)
* @returns {Promise<JSZip>} The unzipped but updated docx file ready for zipping
*/
async exportFromCollaborativeDocx(docx, updatedDocs, media, fonts) {
const zip = new JSZip();
// Rebuild original files
for (const file of docx) {
const content = file.content;
zip.file(file.name, content);
};
// Replace updated docs
Object.keys(updatedDocs).forEach((key) => {
const content = updatedDocs[key];
zip.file(key, content);
});
Object.keys(media).forEach((name) => {
const binaryData = Buffer.from(media[name], 'base64');
zip.file(`word/media/${name}`, binaryData);
});
// Export font files
for (const [fontName, fontUintArray] of Object.entries(fonts)) {
zip.file(fontName, fontUintArray);
}
await this.updateContentTypes(zip, media);
return zip;
}
/**
* Export the Editor content to a docx file, updating changed docs
* Requires the original docx file
* @param {File} originalDocxFile The original docx file
* @param {Object} updatedDocs An object containing the updated docs (keys are relative file names)
* @returns {Promise<JSZip>} The unzipped but updated docx file ready for zipping
*/
async exportFromOriginalFile(originalDocxFile, updatedDocs, media) {
const unzippedOriginalDocx = await this.unzip(originalDocxFile);
const filePromises = [];
unzippedOriginalDocx.forEach((relativePath, zipEntry) => {
const promise = zipEntry.async('string').then((content) => {
unzippedOriginalDocx.file(zipEntry.name, content);
});
filePromises.push(promise);
});
await Promise.all(filePromises);
// Make replacements of updated docs
Object.keys(updatedDocs).forEach((key) => {
unzippedOriginalDocx.file(key, updatedDocs[key]);
});
Object.keys(media).forEach((name) => {
unzippedOriginalDocx.file(`word/media/${name}`, media[name]);
});
await this.updateContentTypes(unzippedOriginalDocx, media);
return unzippedOriginalDocx;
}
}
export default DocxZipper;