-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsvReports.js
89 lines (89 loc) · 3.48 KB
/
csvReports.js
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
// eslint-disable-next-line @eslint-community/eslint-comments/disable-enable-pair
/* eslint-disable security/detect-object-injection */
import fs from 'node:fs';
import stringToNumeric from '@cityssm/string-to-numeric';
import Papa from 'papaparse';
import { w200s } from './csvReports/inventory/w200s.inventorySummary.js';
import { w223 } from './csvReports/inventory/w223.inventoryTransactionDetails.js';
import { w235 } from './csvReports/inventory/w235.inventorySnapshot.js';
import { w600 } from './csvReports/setup/w600.pickListValues.js';
import { w603 } from './csvReports/setup/w603.messageLogger.js';
/**
* Parses CSV files of Standard FASTER reports.
* @param pathToCsvFile - Path to a FASTER CSV file.
* @param parsingOptions - Parsing options, specific to the type of report.
* @returns - The parsed results.
*/
export async function parseFasterCsvReport(pathToCsvFile, parsingOptions) {
// eslint-disable-next-line security/detect-non-literal-fs-filename
const fileStream = fs.createReadStream(pathToCsvFile);
// eslint-disable-next-line promise/avoid-new
return await new Promise((resolve) => {
const results = {
data: [],
parameters: {},
version: {
report: '',
script: ''
}
};
let headerArray;
let loadMetadata = true;
Papa.parse(fileStream, {
step: (row) => {
const rawRowDataList = row.data;
if (headerArray === undefined) {
headerArray = rawRowDataList;
return;
}
const rawRowData = Object.fromEntries(headerArray.map((key, index) => [key.trim(), rawRowDataList[index]]));
const resultData = {};
// Load return values
for (const [rawColumnName, returnColumnName] of Object.entries(parsingOptions.columnReturnNames ?? {})) {
resultData[returnColumnName] = rawRowData[rawColumnName];
}
// Load numeric return values
for (const [rawColumnName, returnColumnName] of Object.entries(parsingOptions.columnNumericReturnNames ?? {})) {
resultData[returnColumnName] = stringToNumeric(rawRowData[rawColumnName]);
}
if (loadMetadata) {
for (const [rawParameterColumnName, returnParameterColumnName] of Object.entries(parsingOptions.columnParameterReturnNames ?? {})) {
results.parameters[returnParameterColumnName] =
rawRowData[rawParameterColumnName];
}
for (const [rawVersionColumnName, returnVersionColumnName] of Object.entries(parsingOptions.columnVersionReturnNames ?? {})) {
results.version[returnVersionColumnName] =
rawRowData[rawVersionColumnName];
}
}
loadMetadata = false;
results.data.push(resultData);
},
complete: () => {
resolve(results);
}
});
});
}
export const fasterCsvReportOptions = {
/**
* W200S - Inventory Summary Report
*/
w200s,
/**
* W223 - Inventory Transaction Details Report
*/
w223,
/**
* W235 - Inventory Snapshot
*/
w235,
/**
* W600 - Pick List Values Report
*/
w600,
/**
* W603 - Message Logger
*/
w603
};