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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
|
import { readdirSync, writeFile, mkdirSync } from "fs";
import * as path from "path";
import { red, cyan, yellow } from "colors";
import { Utils } from "../../../Utils";
import rimraf = require("rimraf");
import { DashUploadUtils } from "../../../server/DashUploadUtils";
const StreamZip = require('node-stream-zip');
const createImageSizeStream = require("image-size-stream");
import { parseXml } from "libxmljs";
import { strictEqual } from "assert";
interface DocumentContents {
body: string;
imageUrls: string[];
hyperlinks: string[];
captions: string[];
embeddedFileNames: string[];
}
export interface DeviceDocument {
title: string;
shortDescription: string;
longDescription: string;
company: string;
year: number;
originalPrice?: number;
degreesOfFreedom?: number;
dimensions?: string;
primaryKey: string;
secondaryKey: string;
attribute: string;
__images: string[];
hyperlinks: string[];
captions: string[];
embeddedFileNames: string[];
}
export interface AnalysisResult {
device?: DeviceDocument;
errors?: { [key: string]: string };
}
type Transformer<T> = (raw: string) => { transformed?: T, error?: string };
export interface ImportResults {
deviceCount: number,
errorCount: number
}
type ResultCallback = (result: AnalysisResult) => void;
type TerminatorCallback = (result: ImportResults) => void;
interface Processor<T> {
exp: RegExp;
matchIndex?: number;
transformer?: Transformer<T>;
required?: boolean;
}
namespace Utilities {
export function numberValue(raw: string) {
const transformed = Number(raw);
if (isNaN(transformed)) {
return { error: `${raw} cannot be parsed to a numeric value.` };
}
return { transformed };
}
export function collectUniqueTokens(raw: string) {
const pieces = raw.replace(/,|\s+and\s+/g, " ").split(/\s+/).filter(piece => piece.length);
const unique = new Set(pieces.map(token => token.toLowerCase().trim()));
return { transformed: Array.from(unique).map(capitalize).sort() };
}
export function correctSentences(raw: string) {
raw = raw.replace(/\./g, ". ").replace(/\:/g, ": ").replace(/\,/g, ", ").replace(/\?/g, "? ").trimRight();
raw = raw.replace(/\s{2,}/g, " ");
return { transformed: raw };
}
export function capitalize(word: string): string {
const clean = word.trim();
if (!clean.length) {
return word;
}
return word.charAt(0).toUpperCase() + word.slice(1);
}
export async function readAndParseXml(zip: any, relativePath: string) {
console.log(`Text streaming ${relativePath}`);
const contents = await new Promise<string>((resolve, reject) => {
let body = "";
zip.stream(relativePath, (error: any, stream: any) => {
if (error) {
reject(error);
}
stream.on('data', (chunk: any) => body += chunk.toString());
stream.on('end', () => resolve(body));
});
});
return parseXml(contents);
}
}
const RegexMap = new Map<keyof DeviceDocument, Processor<any>>([
["title", {
exp: /contact\s+(.*)Short Description:/
}],
["company", {
exp: /Company:\s+([^\|]*)\s+\|/,
transformer: (raw: string) => ({ transformed: raw.replace(/\./g, "") })
}],
["year", {
exp: /Year:\s+([^\|]*)\s+\|/,
transformer: (raw: string) => Utilities.numberValue(/[0-9]{4}/.exec(raw)![0])
}],
["primaryKey", {
exp: /Primary:\s+(.*)(Secondary|Additional):/,
transformer: raw => ({ transformed: Utilities.collectUniqueTokens(raw).transformed[0] })
}],
["secondaryKey", {
exp: /(Secondary|Additional):\s+(.*)Attributes?:/,
transformer: raw => ({ transformed: Utilities.collectUniqueTokens(raw).transformed[0] }),
matchIndex: 2
}],
["attribute", {
exp: /Attributes?:\s+(.*)Links/,
transformer: raw => ({ transformed: Utilities.collectUniqueTokens(raw).transformed[0] }),
}],
["originalPrice", {
exp: /Original Price \(USD\)\:\s+(\$[0-9\,]+\.[0-9]+|NFS)/,
transformer: (raw: string) => {
raw = raw.replace(/\,/g, "");
if (raw === "NFS") {
return { transformed: -1 };
}
return Utilities.numberValue(raw.slice(1));
},
required: false
}],
["degreesOfFreedom", {
exp: /Degrees of Freedom:\s+([0-9]+)/,
transformer: Utilities.numberValue,
required: false
}],
["dimensions", {
exp: /Dimensions\s+\(L x W x H\):\s+([0-9\.]+\s+x\s+[0-9\.]+\s+x\s+[0-9\.]+\s\([A-Za-z]+\))/,
transformer: (raw: string) => {
const [length, width, group] = raw.split(" x ");
const [height, unit] = group.split(" ");
return {
transformed: {
dim_length: Number(length),
dim_width: Number(width),
dim_height: Number(height),
dim_unit: unit.replace(/[\(\)]+/g, "")
}
};
},
required: false
}],
["shortDescription", {
exp: /Short Description:\s+(.*)Bill Buxton[’']s Notes/,
transformer: Utilities.correctSentences
}],
["longDescription", {
exp: /Bill Buxton[’']s Notes(.*)Device Details/,
transformer: Utilities.correctSentences
}],
]);
const sourceDir = path.resolve(__dirname, "source");
const outDir = path.resolve(__dirname, "json");
const imageDir = path.resolve(__dirname, "../../../server/public/files/images/buxton");
const successOut = "buxton.json";
const failOut = "incomplete.json";
const deviceKeys = Array.from(RegexMap.keys());
export default async function executeImport(emitter: ResultCallback, terminator: TerminatorCallback) {
try {
const contents = readdirSync(sourceDir);
const wordDocuments = contents.filter(file => /.*\.docx?$/.test(file)).map(file => `${sourceDir}/${file}`);
[outDir, imageDir].forEach(dir => {
rimraf.sync(dir);
mkdirSync(dir);
});
return parseFiles(wordDocuments, emitter, terminator);
} catch (e) {
const message = [
"Unable to find a source directory.",
"Please ensure that the following directory exists and is populated with Word documents:",
`${sourceDir}`
].join('\n');
console.log(red(message));
return { error: message };
}
}
async function parseFiles(wordDocuments: string[], emitter: ResultCallback, terminator: TerminatorCallback): Promise<DeviceDocument[]> {
const results: AnalysisResult[] = [];
for (const filePath of wordDocuments) {
const fileName = path.basename(filePath).replace("Bill_Notes_", "");
console.log(cyan(`\nExtracting contents from ${fileName}...`));
const result = analyze(fileName, await extractFileContents(filePath));
emitter(result);
results.push(result);
}
const masterDevices: DeviceDocument[] = [];
const masterErrors: { [key: string]: string }[] = [];
results.forEach(({ device, errors }) => {
if (device) {
masterDevices.push(device);
} else if (errors) {
masterErrors.push(errors);
}
});
const total = wordDocuments.length;
if (masterDevices.length + masterErrors.length !== total) {
throw new Error(`Encountered a ${masterDevices.length} to ${masterErrors.length} mismatch in device / error split!`);
}
console.log();
await writeOutputFile(successOut, masterDevices, total, true);
await writeOutputFile(failOut, masterErrors, total, false);
console.log();
terminator({ deviceCount: masterDevices.length, errorCount: masterErrors.length });
return masterDevices;
}
const tableCellXPath = '//*[name()="w:tbl"]/*[name()="w:tr"]/*[name()="w:tc"]';
const hyperlinkXPath = '//*[name()="Relationship" and contains(@Type, "hyperlink")]';
async function extractFileContents(pathToDocument: string): Promise<DocumentContents> {
console.log('Extracting text...');
const zip = new StreamZip({ file: pathToDocument, storeEntries: true });
await new Promise<void>(resolve => zip.on('ready', resolve));
// extract the body of the document and, specifically, its captions
const document = await Utilities.readAndParseXml(zip, "word/document.xml");
const body = document.root()?.text() ?? "No body found. Check the import script's XML parser.";
const captions: string[] = [];
const embeddedFileNames: string[] = [];
const captionTargets = document.find(tableCellXPath).map(node => node.text());
const { length } = captionTargets;
strictEqual(length > 3, true, "No captions written.");
strictEqual(length % 3 === 0, true, "Improper caption formatting.");
for (let i = 3; i < captionTargets.length; i += 3) {
const row = captionTargets.slice(i, i + 3);
captions.push(row[1]);
embeddedFileNames.push(row[2]);
}
// extract all hyperlinks embedded in the document
const rels = await Utilities.readAndParseXml(zip, "word/_rels/document.xml.rels");
const hyperlinks = rels.find(hyperlinkXPath).map(el => el.attrs()[2].value());
console.log("Text extracted.");
console.log("Beginning image extraction...");
const imageUrls = await writeImages(zip);
console.log(`Extracted ${imageUrls.length} images.`);
zip.close();
return { body, imageUrls, captions, embeddedFileNames, hyperlinks };
}
const imageEntry = /^word\/media\/\w+\.(jpeg|jpg|png|gif)/;
interface Dimensions {
width: number;
height: number;
type: string;
}
async function writeImages(zip: any): Promise<string[]> {
const allEntries = Object.values<any>(zip.entries()).map(({ name }) => name);
const imageEntries = allEntries.filter(name => imageEntry.test(name));
const imageUrls: string[] = [];
for (const mediaPath of imageEntries) {
const streamImage = () => new Promise<any>((resolve, reject) => {
zip.stream(mediaPath, (error: any, stream: any) => error ? reject(error) : resolve(stream));
});
const { width, height, type } = await new Promise<Dimensions>(async resolve => {
const sizeStream = createImageSizeStream().on('size', (dimensions: Dimensions) => {
readStream.destroy();
resolve(dimensions)
});
const readStream = await streamImage();
readStream.pipe(sizeStream);
});
if (Math.abs(width - height) < 10) {
continue;
}
const ext = `.${type}`.toLowerCase();
const generatedFileName = `upload_${Utils.GenerateGuid()}${ext}`;
await DashUploadUtils.outputResizedImages(streamImage, imageDir, generatedFileName, ext);
imageUrls.push(`/files/images/buxton/${generatedFileName}`);
}
return imageUrls;
}
function analyze(fileName: string, contents: DocumentContents): AnalysisResult {
const { body, imageUrls, captions, hyperlinks, embeddedFileNames } = contents;
const device: any = {
hyperlinks,
captions,
embeddedFileNames,
__images: imageUrls
};
const errors: { [key: string]: string } = { fileName };
for (const key of deviceKeys) {
const { exp, transformer, matchIndex, required } = RegexMap.get(key)!;
const matches = exp.exec(body);
let captured: string;
if (matches && (captured = matches[matchIndex ?? 1])) {
captured = captured.replace(/\s{2,}/g, " ");
if (transformer) {
const { error, transformed } = transformer(captured);
if (error) {
errors[key] = `__ERR__${key.toUpperCase()}__TRANSFORM__: ${error}`;
continue;
}
captured = transformed;
}
device[key] = captured;
} else if (required ?? true) {
errors[key] = `ERR__${key.toUpperCase()}__: outer match ${matches === null ? "wasn't" : "was"} captured.`;
continue;
}
}
const errorKeys = Object.keys(errors);
if (errorKeys.length > 1) {
console.log(red(`@ ${cyan(fileName.toUpperCase())}...`));
errorKeys.forEach(key => key !== "filename" && console.log(red(errors[key])));
return { errors };
}
return { device };
}
async function writeOutputFile(relativePath: string, data: any[], total: number, success: boolean) {
console.log(yellow(`Encountered ${data.length} ${success ? "valid" : "invalid"} documents out of ${total} candidates. Writing ${relativePath}...`));
return new Promise<void>((resolve, reject) => {
const destination = path.resolve(outDir, relativePath);
const contents = JSON.stringify(data, undefined, 4);
writeFile(destination, contents, err => err ? reject(err) : resolve());
});
}
|