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
|
import { readdirSync, writeFile, existsSync, mkdirSync } from "fs";
import * as path from "path";
import { red, cyan, yellow, green } from "colors";
import { Database } from "../../server/database";
import { Opt } from "../../new_fields/Doc";
import { Utils } from "../../Utils";
const StreamZip = require('node-stream-zip');
export interface DeviceDocument {
title: string;
shortDescription: string;
longDescription: string;
company: string;
year: number;
originalPrice: number;
degreesOfFreedom: number;
dimensions: string;
primaryKey: string;
secondaryKey: string;
}
interface AnalysisResult {
device?: DeviceDocument;
errors?: any;
}
type Converter<T> = (raw: string) => { transformed?: T, error?: string };
interface Processor<T> {
exp: RegExp;
matchIndex?: number;
transformer?: Converter<T>;
}
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: numberValue
}],
["primaryKey", {
exp: /Primary:\s+(.*)(Secondary|Additional):/,
transformer: collectUniqueTokens
}],
["secondaryKey", {
exp: /(Secondary|Additional):\s+([^\{\}]*)Links/,
transformer: collectUniqueTokens,
matchIndex: 2
}],
["originalPrice", {
exp: /Original Price \(USD\)\:\s+\$([0-9\.]+)/,
transformer: numberValue
}],
["degreesOfFreedom", {
exp: /Degrees of Freedom:\s+([0-9]+)/,
transformer: numberValue
}],
["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: {
length: Number(length),
width: Number(width),
height: Number(height),
unit: unit.replace(/[\(\)]+/g, "")
}
};
}
}],
["shortDescription", {
exp: /Short Description:\s+(.*)Bill Buxton[’']s Notes/,
transformer: correctSentences
}],
["longDescription", {
exp: /Bill Buxton[’']s Notes(.*)Device Details/,
transformer: correctSentences
}],
]);
function numberValue(raw: string) {
const transformed = Number(raw);
if (isNaN(transformed)) {
return { error: `${transformed} cannot be parsed to a numeric value.` };
}
return { transformed };
}
function collectUniqueTokens(raw: string) {
return { transformed: Array.from(new Set(raw.replace(/,|\s+and\s+/g, " ").split(/\s+/).map(token => token.toLowerCase().trim()))).map(capitalize).sort() };
}
function correctSentences(raw: string) {
raw = raw.replace(/\./g, ". ").replace(/\:/g, ": ").replace(/\,/g, ", ").replace(/\?/g, "? ").trimRight();
raw = raw.replace(/\s{2,}/g, " ");
return { transformed: raw };
}
const targetMongoCollection = "newDocuments";
const outDir = path.resolve(__dirname, "json");
const successOut = "buxton.json";
const failOut = "incomplete.json";
const deviceKeys = Array.from(RegexMap.keys());
function printEntries(zip: any) {
const { entriesCount } = zip;
console.log(`Recognized ${entriesCount} entr${entriesCount === 1 ? "y" : "ies"}.`);
for (const entry of Object.values<any>(zip.entries())) {
const desc = entry.isDirectory ? 'directory' : `${entry.size} bytes`;
console.log(`${entry.name}: ${desc}`);
}
}
export async function wordToPlainText(pathToDocument: string): Promise<string> {
const zip = new StreamZip({ file: pathToDocument, storeEntries: true });
const contents = await new Promise<string>((resolve, reject) => {
zip.on('ready', () => {
let body = "";
zip.stream("word/document.xml", (error: any, stream: any) => {
if (error) {
reject(error);
}
stream.on('data', (chunk: any) => body += chunk.toString());
stream.on('end', () => {
resolve(body);
zip.close();
});
});
});
});
let body = "";
const components = contents.toString().split('<w:t');
for (const component of components) {
const tags = component.split('>');
const content = tags[1].replace(/<.*$/, "");
body += content;
}
return body;
}
function tryGetValidCapture(matches: RegExpExecArray | null, matchIndex: number): Opt<string> {
let captured: string;
if (!matches || !(captured = matches[matchIndex])) {
return undefined;
}
const lower = captured.toLowerCase();
if (/to come/.test(lower)) {
return undefined;
}
if (lower.includes("xxx")) {
return undefined;
}
if (!captured.toLowerCase().replace(/[….\s]+/g, "").length) {
return undefined;
}
return captured;
}
function capitalize(word: string): string {
const clean = word.trim();
if (!clean.length) {
return word;
}
return word.charAt(0).toUpperCase() + word.slice(1);
}
export function analyze(path: string, body: string): AnalysisResult {
const device: any = {};
const segments = path.split("/");
const filename = segments[segments.length - 1].replace("Bill_Notes_", "");
const errors: any = { filename };
for (const key of deviceKeys) {
const { exp, transformer, matchIndex } = RegexMap.get(key)!;
const matches = exp.exec(body);
let captured = tryGetValidCapture(matches, matchIndex ?? 1);
if (!captured) {
errors[key] = `ERR__${key.toUpperCase()}__: outer match ${matches === null ? "wasn't" : "was"} captured.`;
continue;
}
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;
}
const errorKeys = Object.keys(errors);
if (errorKeys.length > 1) {
console.log(red(`\n@ ${cyan(filename.toUpperCase())}...`));
errorKeys.forEach(key => key !== "filename" && console.log(red(errors[key])));
return { errors };
}
return { device };
}
async function parseFiles(): Promise<DeviceDocument[]> {
const sourceDirectory = path.resolve(`${__dirname}/source`);
const candidates = readdirSync(sourceDirectory).filter(file => file.endsWith(".doc") || file.endsWith(".docx")).map(file => `${sourceDirectory}/${file}`);
const imported = await Promise.all(candidates.map(async path => ({ path, body: await wordToPlainText(path) })));
// const imported = [{ path: candidates[10], body: await extract(candidates[10]) }];
const data = imported.map(({ path, body }) => analyze(path, body));
const masterDevices: DeviceDocument[] = [];
const masterErrors: any[] = [];
data.forEach(({ device, errors }) => {
if (device) {
masterDevices.push(device);
} else {
masterErrors.push(errors);
}
});
const total = candidates.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();
return masterDevices;
}
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());
});
}
namespace Doc {
export async function create<T = any>(fields: T, viewType?: number) {
const dataDocId = Utils.GenerateGuid();
const dataDoc = {
_id: dataDocId,
fields: {
...fields,
isPrototype: true,
author: "Bill Buxton"
},
__type: "Doc"
};
const viewDocId = Utils.GenerateGuid();
const viewDoc = {
_id: viewDocId,
fields: {
proto: protofy(dataDocId),
x: 10,
y: 10,
_width: 900,
_height: 600,
_panX: 0,
_panY: 0,
zIndex: 2,
libraryBrush: false,
_viewType: viewType || 4,
_LODdisable: true
},
__type: "Doc"
};
await Database.Instance.insert(viewDoc, targetMongoCollection);
await Database.Instance.insert(dataDoc, targetMongoCollection);
return viewDocId;
}
export function protofy(id: string) {
return {
fieldId: id,
__type: "proxy"
};
}
export function proxifyGuids(ids: string[]) {
return ids.map(id => ({
fieldId: id,
__type: "proxy"
}));
}
export function listify(fields: any[]) {
return {
fields: fields,
__type: "list"
};
}
}
async function main() {
if (!existsSync(outDir)) {
mkdirSync(outDir);
}
const devices = await parseFiles();
await Database.tryInitializeConnection();
const { create, protofy, proxifyGuids, listify } = Doc;
const parentGuid = await Doc.create({
proto: protofy("collectionProto"),
title: "The Buxton Collection",
data: listify(proxifyGuids(await Promise.all(devices.map(create))))
});
const result = await Database.Instance.updateMany(
{ "fields.title": "Collection 1" },
{ $push: { "fields.data.fields": { fieldId: parentGuid, __type: "proxy" } } },
targetMongoCollection
);
console.log(result);
console.log(green(`\nSuccessfully inserted ${devices.length} devices into ${targetMongoCollection}.`));
Database.disconnect();
process.exit(0);
}
main();
|