2020-06-25 10:44:55 +02:00
const csv = require ( 'csv-parser' ) ;
const fs = require ( 'fs' ) ;
const axios = require ( 'axios' ) ;
2020-07-09 13:48:27 +02:00
const { Builder } = require ( 'selenium-webdriver' ) ; // selenium and the chrome driver must be installed and configured separately
2020-06-25 10:44:55 +02:00
const chrome = require ( 'selenium-webdriver/chrome' ) ;
const pdfReader = require ( 'pdfreader' ) ;
const iconv = require ( 'iconv-lite' ) ;
2020-07-17 10:41:19 +02:00
const _ = require ( 'lodash' ) ;
2020-06-25 10:44:55 +02:00
2020-07-20 16:31:48 +02:00
const stages = {
2020-07-22 10:53:45 +02:00
materials : true ,
2020-07-20 16:31:48 +02:00
samples : true ,
2020-07-22 10:53:45 +02:00
dpt : true
2020-07-20 16:31:48 +02:00
}
const docs = [
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata__AnP2.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata__AnP2_A.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata__AnP2_B.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_Ap.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_Bj.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_Eh.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_Eh_B.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_Eh_Duroplasten.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_Rng_aktuell.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_Rng_aktuell_A.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_Rng_aktuell_B.csv" ,
"C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\Metadata_WaP.csv" ,
] ;
const errors = [ ] ;
const nmDocs = 'C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\nmDocs' ; // NormMaster Documents
const dptFiles = 'C:\\Users\\vle2fe\\Documents\\Data\\All_200717\\DPT' ; // Spectrum files
2020-07-14 12:07:43 +02:00
const host = 'http://localhost:3000' ;
// const host = 'https://definma-api.apps.de1.bosch-iot-cloud.com';
2020-07-20 16:31:48 +02:00
const requiredProperties = [ 'samplenumber' , 'materialnumber' , 'materialname' , 'supplier' , 'reinforcementmaterial' , 'material' , 'granulate/part' , 'color' , 'charge/batch' , 'comments' ] ;
dict = { // dictionary
'Granulat' : 'granulate' ,
'Zugstab' : 'tension rod' ,
'Stecker' : 'plug'
} ;
2020-06-25 10:44:55 +02:00
let data = [ ] ; // metadata contents
let materials = { } ;
2020-07-20 16:31:48 +02:00
let numberToColor = { } ;
2020-06-25 10:44:55 +02:00
let samples = [ ] ;
let normMaster = { } ;
2020-07-09 13:48:27 +02:00
let sampleDevices = { } ;
2020-07-20 16:31:48 +02:00
const sampleReferences = [ ] ; // references to other samples in format {sample, referencedSample, relation}
2020-07-22 10:53:45 +02:00
let commentsLog = [ ] ;
let customFieldsLog = [ ] ;
const vzValues = { } ; // vz values from comments
const dptLog = [ ] ;
2020-06-25 10:44:55 +02:00
2020-07-09 13:48:27 +02:00
// TODO: conditions
2020-07-20 16:31:48 +02:00
2020-06-25 10:44:55 +02:00
main ( ) ;
async function main ( ) {
2020-07-20 16:31:48 +02:00
if ( stages . materials ) { // materials
2020-06-25 10:44:55 +02:00
await getNormMaster ( ) ;
2020-07-20 16:31:48 +02:00
for ( let i in docs ) {
await importCsv ( docs [ i ] ) ;
await allMaterials ( ) ;
await saveMaterials ( ) ;
}
fs . writeFileSync ( './data_import/numberToColor.json' , JSON . stringify ( numberToColor ) ) ;
2020-06-25 10:44:55 +02:00
}
2020-07-20 16:31:48 +02:00
if ( stages . samples ) { // samples
2020-07-09 13:48:27 +02:00
sampleDeviceMap ( ) ;
2020-07-20 16:31:48 +02:00
numberToColor = JSON . parse ( fs . readFileSync ( './data_import/numberToColor.json' ) , 'utf-8' ) ;
for ( let i in docs ) {
await importCsv ( docs [ i ] ) ;
2020-07-09 13:48:27 +02:00
await allSamples ( ) ;
await saveSamples ( ) ;
2020-07-22 10:53:45 +02:00
await allKfVz ( ) ;
}
// write logs
fs . writeFileSync ( './data_import/comments.txt' , commentsLog . join ( '\r\n' ) ) ;
fs . writeFileSync ( './data_import/customFields.txt' , customFieldsLog . join ( '\r\n' ) ) ;
fs . writeFileSync ( './data_import/sampleReferences.txt' , sampleReferences . map ( e => JSON . stringify ( e ) ) . join ( '\r\n' ) ) ;
fs . writeFileSync ( './data_import/sampleReferences.json' , JSON . stringify ( sampleReferences ) ) ;
await sampleReferencesSave ( ) ;
2020-06-25 10:44:55 +02:00
}
2020-07-20 16:31:48 +02:00
if ( stages . dpt ) { // DPT
2020-06-25 10:44:55 +02:00
await allDpts ( ) ;
2020-07-22 10:53:45 +02:00
fs . writeFileSync ( './data_import/sdptLog.txt' , dptLog . join ( '\r\n' ) ) ;
2020-06-25 10:44:55 +02:00
}
2020-07-09 13:48:27 +02:00
if ( 0 ) { // pdf test
2020-07-20 16:31:48 +02:00
console . log ( await readPdf ( 'N28_BN05-OX023_2019-07-16.pdf' ) ) ;
}
if ( errors . length ) {
// console.log(errors);
fs . writeFileSync ( './data_import/errors/errors_' + new Date ( ) . getTime ( ) + '.txt' , errors . join ( '\r\n' ) ) ;
2020-06-25 10:44:55 +02:00
}
}
2020-07-09 13:48:27 +02:00
async function importCsv ( doc ) {
2020-07-20 16:31:48 +02:00
// Uniform name samplenumber materialnumber materialname supplier material plastic reinforcingmaterial granulate/part color charge/batch comments vz(ml/g) kfingew% degradation(%) glassfibrecontent(%) stabwn
// Metadata__AnP2.csv Sample number,Material number,Material name,Supplier,Material,Plastic,Reinforcing material, granulate/Part,Color,Charge/ Batch, Comments
// Metadata__AnP2_A.csv Sample number,Material number,Material name,Supplier, Plastic,Reinforcing material, Granulate/Part, Comments, Humidity [ppm]
// Metadata__AnP2_B.csv Sample number,Material number,Material name,Supplier, Plastic,Reinforcing material, Granulate/Part, VZ [ml/g], glass fibre content
// Metadata_Ap.csv Sample number,Material number,Material name,Supplier, Plastic,Reinforcing material, Granulate/Part,Color,Charge/Batch, Comments
// Metadata_Bj.csv Sample number,Material number,Material name,Supplier,Material,Plastic,Reinforcing material, Granulate/Part,Color,Charge/batch granulate/part,Comments
// Metadata_Eh.csv Sample number,Material number,Material name,Supplier,Material, Reinforcing material, Granulate/Part,Color,Charge/Batch granulate/part,Comments, VZ [cm³/g], Spalte1
// Metadata_Eh_B.csv Sample number, Material name,Supplier, Plastic,Reinforcing material, Granulate/Part,Color, Comments, VZ [cm³/g]
// Metadata_Eh_Duroplasten.csv Sample number,Material number,Material name,Supplier,Material, Reinforcing material, Granulate/Part,Color,Charge/Batch granulate/part,Comments
// Metadata_Rng_aktuell.csv Sample number,Material number,Material name,Supplier,Material,Plastic,Reinforcing material, Granulate/Part,Color,Charge/batch granulate/part,Comments, VZ (ml/g), Degradation(%),Glas fibre content (%)
// Metadata_Rng_aktuell_A.csv Sample number,Material number,Material name,Supplier,Material,Plastic,Reinforcing material, Granulate/Part,Farbe,Charge/batch granulate/part,Comments, KF in Gew%, Stabwn
// Metadata_Rng_aktuell_B.csv Sample number, Material name,Supplier, Plastic,Reinforcing material (content in %),Granulate/Part, Comments, VZ (ml/g), Degradation (%), Alterungszeit in h
// Metadata_WaP.csv Probennummer, Name, Firma, Material, Teil/Rohstoff, Charge, Anmerkung,VZ (ml/g), Abbau (%), Verstärkungsstoffgehalt (%), Versuchsnummer
const nameCorrection = { // map to right column names
'probennummer' : 'samplenumber' ,
'name' : 'materialname' ,
'firma' : 'supplier' ,
'reinforcingmaterial(contentin%)' : 'reinforcingmaterial' ,
'teil/rohstoff' : 'granulate/part' ,
'charge/batchgranulate/part' : 'charge/batch' ,
'charge' : 'charge/batch' ,
'anmerkung' : 'comments' ,
'vz[ml/g]' : 'vz(ml/g)' ,
'vz[cm³/g]' : 'vz(ml/g)' ,
'abbau(%)' : 'degradation(%)' ,
'verstärkungsstoffgehalt(%)' : 'glassfibrecontent(%)'
} ;
const missingFieldsFill = [ // column names to fill if they do not exist
'color' ,
'charge/batch' ,
'comments' ,
'materialnumber' ,
'reinforcementmaterial'
]
console . log ( 'importing ' + doc ) ;
2020-07-09 13:48:27 +02:00
data = [ ] ;
2020-06-25 10:44:55 +02:00
await new Promise ( resolve => {
2020-07-09 13:48:27 +02:00
fs . createReadStream ( doc )
2020-06-25 10:44:55 +02:00
. pipe ( iconv . decodeStream ( 'win1252' ) )
. pipe ( csv ( ) )
. on ( 'data' , ( row ) => {
data . push ( row ) ;
} )
. on ( 'end' , ( ) => {
2020-07-20 16:31:48 +02:00
data = data . map ( e => {
const newE = { } ;
Object . keys ( e ) . forEach ( key => {
newE [ key . toLowerCase ( ) . replace ( / /g , '' ) ] = e [ key ] ;
} ) ;
// replace wrong column names
Object . keys ( newE ) . forEach ( key => {
if ( nameCorrection . hasOwnProperty ( key ) ) {
newE [ nameCorrection [ key ] ] = newE [ key ] ;
delete newE [ key ] ;
}
} ) ;
// add missing fields with empty values
missingFieldsFill . forEach ( field => {
if ( ! newE . hasOwnProperty ( field ) ) {
newE [ field ] = '' ;
}
} ) ;
if ( newE [ 'supplier' ] === '' ) { // empty supplier fields
newE [ 'supplier' ] = 'unknown' ;
}
if ( ! newE . hasOwnProperty ( 'material' ) ) {
newE [ 'material' ] = newE [ 'plastic' ] . indexOf ( ' GF' ) >= 0 ? newE [ 'plastic' ] . split ( ' ' ) [ 0 ] : newE [ 'plastic' ] ;
}
return newE ;
} ) . filter ( e => {
const missingProperties = requiredProperties . filter ( el => ! e . hasOwnProperty ( el ) ) ;
if ( e [ 'materialname' ] === '' ) {
missingProperties . push ( 'materialname' ) ;
}
if ( e [ 'samplenumber' ] === '' ) { // empty row
return false ;
}
else if ( missingProperties . length > 0 ) { // incomplete sample
errors . push ( ` ${ doc } : ${ JSON . stringify ( e ) } is missing the required properties ${ missingProperties } ` ) ;
return false ;
}
return true ;
} ) ;
2020-06-25 10:44:55 +02:00
console . info ( 'CSV file successfully processed' ) ;
resolve ( ) ;
} ) ;
} ) ;
}
async function allDpts ( ) {
let res = await axios ( {
method : 'get' ,
2020-07-09 13:48:27 +02:00
url : host + '/template/measurements' ,
2020-06-25 10:44:55 +02:00
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) ;
const measurement _template = res . data . find ( e => e . name === 'spectrum' ) . _id ;
res = await axios ( {
method : 'get' ,
2020-07-09 13:48:27 +02:00
url : host + '/samples?status=all' ,
2020-06-25 10:44:55 +02:00
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) ;
const sampleIds = { } ;
res . data . forEach ( sample => {
sampleIds [ sample . number ] = sample . _id ;
} ) ;
2020-07-22 10:53:45 +02:00
const dptRegex = /(.*?)_(.*?)_(\d+|\d+_\d+).DPT/ ;
2020-06-25 10:44:55 +02:00
const dpts = fs . readdirSync ( dptFiles ) ;
for ( let i in dpts ) {
2020-07-09 13:48:27 +02:00
const regexRes = dptRegex . exec ( dpts [ i ] )
2020-07-22 10:53:45 +02:00
if ( regexRes && sampleIds [ regexRes [ 2 ] ] ) { // found matching sample
console . log ( ` ${ dpts [ i ] } -> ${ regexRes [ 2 ] } ` ) ;
dptLog . push ( ` ${ dpts [ i ] } , ${ regexRes [ 2 ] } ` ) ;
2020-06-25 10:44:55 +02:00
const f = fs . readFileSync ( dptFiles + '\\' + dpts [ i ] , 'utf-8' ) ;
const data = {
2020-07-22 10:53:45 +02:00
sample _id : sampleIds [ regexRes [ 2 ] ] ,
2020-06-25 10:44:55 +02:00
values : { } ,
measurement _template
} ;
2020-07-22 10:53:45 +02:00
data . values . device = regexRes [ 1 ] ;
2020-06-25 10:44:55 +02:00
data . values . dpt = f . split ( '\r\n' ) . map ( e => e . split ( ',' ) ) ;
2020-07-14 12:07:43 +02:00
let rescale = false ;
for ( let i in data . values . dpt ) {
if ( data . values . dpt [ i ] [ 1 ] > 2 ) {
rescale = true ;
break ;
}
}
if ( rescale ) {
data . values . dpt = data . values . dpt . map ( e => [ e [ 0 ] , e [ 1 ] / 100 ] ) ;
}
2020-06-25 10:44:55 +02:00
await axios ( {
method : 'post' ,
2020-07-09 13:48:27 +02:00
url : host + '/measurement/new' ,
2020-06-25 10:44:55 +02:00
auth : {
username : 'admin' ,
password : 'Abc123!#'
} ,
data
} ) . catch ( err => {
console . log ( dpts [ i ] ) ;
2020-07-22 10:53:45 +02:00
if ( err . response ) {
console . error ( err . response . data ) ;
errors . push ( ` Could not upload ${ dpts [ i ] } for sample ${ regexRes [ 2 ] } : ${ err . response . data } ` ) ;
}
else {
console . error ( err ) ;
errors . push ( ` Could not upload ${ dpts [ i ] } for sample ${ regexRes [ 2 ] } : ${ JSON . stringify ( err ) } ` ) ;
}
2020-06-25 10:44:55 +02:00
} ) ;
}
2020-07-09 13:48:27 +02:00
else {
2020-07-22 10:53:45 +02:00
console . log ( ` Could not find sample for ${ dpts [ i ] } ` ) ;
errors . push ( ` Could not find sample for ${ dpts [ i ] } ` ) ;
2020-07-09 13:48:27 +02:00
}
2020-06-25 10:44:55 +02:00
}
}
async function allKfVz ( ) {
let res = await axios ( {
method : 'get' ,
2020-07-09 13:48:27 +02:00
url : host + '/template/measurements' ,
2020-06-25 10:44:55 +02:00
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) ;
const kf _template = res . data . find ( e => e . name === 'kf' ) . _id ;
const vz _template = res . data . find ( e => e . name === 'vz' ) . _id ;
res = await axios ( {
method : 'get' ,
2020-07-09 13:48:27 +02:00
url : host + '/samples?status=all' ,
2020-06-25 10:44:55 +02:00
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) ;
const sampleIds = { } ;
res . data . forEach ( sample => {
sampleIds [ sample . number ] = sample . _id ;
} ) ;
for ( let index in data ) {
2020-07-22 10:53:45 +02:00
console . info ( ` KF/VZ ${ index } / ${ data . length } ` ) ;
2020-06-25 10:44:55 +02:00
let sample = data [ index ] ;
2020-07-22 10:53:45 +02:00
let credentials = [ 'admin' , 'Abc123!#' ] ;
if ( sampleDevices [ sample [ 'samplenumber' ] ] ) {
credentials = [ sampleDevices [ sample [ 'samplenumber' ] ] , '2020DeFinMachen!' ]
}
if ( ! sample [ 'vz(ml/g)' ] && vzValues [ sample [ 'samplenumber' ] ] ) { // fill in VZ values from comments
sample [ 'vz(ml/g)' ] = vzValues [ sample [ 'samplenumber' ] ] ;
}
if ( sample [ 'kfingew%' ] ) {
await axios ( {
method : 'post' ,
url : host + '/measurement/new' ,
auth : {
username : credentials [ 0 ] ,
password : credentials [ 1 ]
} ,
data : {
sample _id : sampleIds [ sample [ 'samplenumber' ] ] ,
measurement _template : kf _template ,
values : {
'weight %' : sample [ 'kfingew%' ] ,
'standard deviation' : sample [ 'stabwn' ]
2020-06-25 10:44:55 +02:00
}
2020-07-22 10:53:45 +02:00
}
} ) . catch ( err => {
console . log ( sample [ 'samplenumber' ] ) ;
console . error ( err . response . data ) ;
errors . push ( ` KF/VZ upload for ${ JSON . stringify ( sample ) } failed: ${ JSON . stringify ( err . response . data ) } ` ) ;
} ) ;
}
if ( sample [ 'VZ (ml/g)' ] ) {
await axios ( {
method : 'post' ,
url : host + '/measurement/new' ,
auth : {
username : credentials [ 0 ] ,
password : credentials [ 1 ]
} ,
data : {
sample _id : sampleIds [ sample [ 'samplenumber' ] ] ,
measurement _template : vz _template ,
values : {
vz : sample [ 'vz(ml/g)' ]
2020-06-25 10:44:55 +02:00
}
2020-07-22 10:53:45 +02:00
}
} ) . catch ( err => {
console . log ( sample [ 'samplenumber' ] ) ;
console . error ( err . response . data ) ;
errors . push ( ` KF/VZ upload for ${ JSON . stringify ( sample ) } failed: ${ JSON . stringify ( err . response . data ) } ` ) ;
} ) ;
2020-06-25 10:44:55 +02:00
}
}
}
async function allSamples ( ) {
2020-07-09 13:48:27 +02:00
samples = [ ] ;
2020-06-25 10:44:55 +02:00
let res = await axios ( {
method : 'get' ,
2020-07-09 13:48:27 +02:00
url : host + '/materials?status=all' ,
2020-06-25 10:44:55 +02:00
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) ;
const dbMaterials = { }
res . data . forEach ( m => {
2020-07-17 10:41:19 +02:00
m . numbers = m . numbers . map ( e => ( { number : e , color : numberToColor [ e ] } ) ) ;
2020-06-25 10:44:55 +02:00
dbMaterials [ m . name ] = m ;
} )
res = await axios ( {
method : 'get' ,
2020-07-09 13:48:27 +02:00
url : host + '/samples?status=all' ,
2020-06-25 10:44:55 +02:00
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) ;
const sampleColors = { } ;
res . data . forEach ( sample => {
sampleColors [ sample . number ] = sample . color ;
} ) ;
for ( let index in data ) {
2020-07-22 10:53:45 +02:00
console . info ( ` SAMPLE LOAD ${ index } / ${ data . length } ` ) ;
2020-06-25 10:44:55 +02:00
let sample = data [ index ] ;
2020-07-20 16:31:48 +02:00
if ( sample [ 'granulate/Part' ] === '' ) { // empty supplier fields
sample [ 'granulate/Part' ] = 'unknown' ;
}
const material = dbMaterials [ trim ( sample [ 'materialname' ] ) ] ;
if ( ! material ) { // could not find material, skipping sample
errors . push ( ` Could not find a material for ${ JSON . stringify ( sample ) } ` ) ;
continue ;
}
samples . push ( {
number : sample [ 'samplenumber' ] ,
type : sampleType ( sample [ 'granulate/part' ] ) ,
batch : sample [ 'charge/batch' ] ,
material _id : material . _id ,
notes : {
custom _fields : customFields ( sample [ 'comments' ] , sample [ 'samplenumber' ] )
2020-06-25 10:44:55 +02:00
}
2020-07-20 16:31:48 +02:00
} ) ;
// if (sample['comments']) {
// comments.push(sample['samplenumber'] + ' ' + sample['comments']);
// }
const si = samples . length - 1 ; // sample index
if ( samples [ si ] . notes . custom _fields . hasOwnProperty ( 'xRest' ) ) { // reroute xRest property to comment
samples [ si ] . notes . comment = samples [ si ] . notes . custom _fields . xRest ;
2020-07-22 10:53:45 +02:00
commentsLog . push ( sample [ 'samplenumber' ] + ' ' + samples [ si ] . notes . comment ) ;
2020-07-20 16:31:48 +02:00
delete samples [ si ] . notes . custom _fields . xRest ;
}
2020-07-22 10:53:45 +02:00
if ( Object . keys ( samples [ si ] . notes . custom _fields ) . length === 0 ) { // delete empty custom fields
2020-07-20 16:31:48 +02:00
delete samples [ si ] . notes . custom _fields ;
}
2020-07-22 10:53:45 +02:00
else {
customFieldsLog . push ( sample [ 'samplenumber' ] + ' ' + JSON . stringify ( samples [ si ] . notes . custom _fields ) ) ;
}
2020-07-20 16:31:48 +02:00
if ( sample [ 'materialnumber' ] !== '' && material . numbers . find ( e => e . number === sample [ 'materialnumber' ] ) ) {
samples [ si ] . color = material . numbers . find ( e => e . number === sample [ 'materialnumber' ] ) . color ;
}
else if ( sample [ 'color' ] !== '' ) { // find color with all edge cases
let number = material . numbers . find ( e => e . color && e . color . indexOf ( trim ( sample [ 'color' ] ) ) >= 0 ) ;
if ( ! number && /black/ . test ( sample [ 'color' ] ) ) { // special case bk for black
2020-07-17 10:41:19 +02:00
console . log ( material ) ;
2020-07-20 16:31:48 +02:00
number = material . numbers . find ( e => e . color && e . color . toLowerCase ( ) . indexOf ( 'bk' ) >= 0 ) ;
if ( ! number ) { // try German word
number = material . numbers . find ( e => e . color && e . color . toLowerCase ( ) . indexOf ( 'schwarz' ) >= 0 ) ;
2020-07-17 10:41:19 +02:00
}
2020-06-25 10:44:55 +02:00
}
2020-07-20 16:31:48 +02:00
if ( number ) {
samples [ si ] . color = number . color ;
2020-06-25 10:44:55 +02:00
}
}
2020-07-20 16:31:48 +02:00
else if ( sampleColors [ sample [ 'samplenumber' ] . split ( '_' ) [ 0 ] ] ) { // derive color from main sample for kf/vz
samples [ si ] . color = sampleColors [ sample [ 'samplenumber' ] . split ( '_' ) [ 0 ] ] ;
}
if ( ! samples [ si ] . color ) {
samples [ si ] . color = sample [ 'color' ] ;
}
2020-06-25 10:44:55 +02:00
}
}
async function saveSamples ( ) {
for ( let i in samples ) {
2020-07-22 10:53:45 +02:00
console . info ( ` SAMPLE SAVE ${ i } / ${ samples . length } ` ) ;
2020-07-09 13:48:27 +02:00
let credentials = [ 'admin' , 'Abc123!#' ] ;
if ( sampleDevices [ samples [ i ] . number ] ) {
2020-07-20 16:31:48 +02:00
console . log ( sampleDevices [ samples [ i ] . number ] ) ;
2020-07-09 13:48:27 +02:00
credentials = [ sampleDevices [ samples [ i ] . number ] , '2020DeFinMachen!' ]
}
2020-06-25 10:44:55 +02:00
await axios ( {
method : 'post' ,
2020-07-09 13:48:27 +02:00
url : host + '/sample/new' ,
2020-06-25 10:44:55 +02:00
auth : {
2020-07-09 13:48:27 +02:00
username : credentials [ 0 ] ,
password : credentials [ 1 ]
2020-06-25 10:44:55 +02:00
} ,
data : samples [ i ]
} ) . catch ( err => {
2020-07-09 13:48:27 +02:00
if ( err . response . data . status && err . response . data . status !== 'Sample number already taken' ) {
console . log ( samples [ i ] ) ;
console . error ( err . response . data ) ;
2020-07-22 10:53:45 +02:00
errors . push ( ` Upload for ${ JSON . stringify ( samples [ i ] ) } failed: ${ JSON . stringify ( err . response . data ) } ` ) ;
2020-07-09 13:48:27 +02:00
}
2020-06-25 10:44:55 +02:00
} ) ;
}
console . info ( 'saved all samples' ) ;
}
2020-07-22 10:53:45 +02:00
async function sampleReferencesSave ( ) {
for ( let i in sampleReferences ) {
console . info ( ` SAMPLE REFERENCES ${ i } / ${ sampleReferences . length } ` ) ;
let refRes = await axios ( {
method : 'get' ,
url : host + '/sample/number/' + sampleReferences [ i ] . referencedSample ,
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) . catch ( err => {
console . log ( sampleReferences [ i ] . referencedSample ) ;
console . error ( err . response . data ) ;
errors . push ( ` Getting reference id for ${ JSON . stringify ( sampleReferences [ i ] ) } failed: ${ JSON . stringify ( err . response . data ) } ` ) ;
} ) ;
if ( ! refRes ) continue ;
let sampleRes = await axios ( {
method : 'get' ,
url : host + '/sample/number/' + sampleReferences [ i ] . sample ,
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) . catch ( err => {
console . log ( sampleReferences [ i ] . sample ) ;
console . error ( err . response . data ) ;
errors . push ( ` Getting sample id for ${ JSON . stringify ( sampleReferences [ i ] ) } failed: ${ JSON . stringify ( err . response . data ) } ` ) ;
} ) ;
if ( ! sampleRes ) continue ;
sampleRes . data . notes . sample _references . push ( { sample _id : refRes . data . _id , relation : sampleReferences [ i ] . relation } )
await axios ( {
method : 'put' ,
url : host + '/sample/' + sampleRes . data . _id ,
auth : {
username : 'admin' ,
password : 'Abc123!#'
} ,
data : { notes : { sample _references : sampleRes . data . notes . sample _references } }
} ) . catch ( err => {
console . log ( sampleRes . data . notes . sample _references ) ;
if ( err . response . data ) {
console . error ( err . response . data ) ;
errors . push ( ` Saving references for ${ JSON . stringify ( sampleRes . data ) } failed: ${ JSON . stringify ( err . response . data ) } ` ) ;
}
else {
console . error ( err . response ) ;
errors . push ( ` Saving references for ${ JSON . stringify ( sampleRes . data ) } failed: ${ JSON . stringify ( err . response ) } ` ) ;
}
} ) ;
}
}
2020-06-25 10:44:55 +02:00
async function allMaterials ( ) {
2020-07-20 16:31:48 +02:00
// materials = {};
let res = await axios ( {
method : 'get' ,
url : host + '/template/materials' ,
auth : {
username : 'admin' ,
password : 'Abc123!#'
}
} ) ;
const materialTemplate = res . data . find ( e => e . name === 'plastic' ) . _id ;
// process all samples
2020-06-25 10:44:55 +02:00
for ( let index in data ) {
let sample = data [ index ] ;
2020-07-20 16:31:48 +02:00
if ( sample [ 'supplier' ] === '' ) { // empty supplier fields
sample [ 'supplier' ] = 'unknown' ;
}
if ( sample [ 'materialname' ] === '' ) { // empty name fields
sample [ 'materialname' ] = sample [ 'material' ] ;
}
sample [ 'materialname' ] = trim ( sample [ 'materialname' ] ) ;
if ( materials . hasOwnProperty ( sample [ 'materialname' ] ) ) { // material already found at least once
if ( sample [ 'materialnumber' ] !== '' ) { // material number given
if ( materials [ sample [ 'materialname' ] ] . numbers . length === 0 || ! materials [ sample [ 'materialname' ] ] . numbers . find ( e => e . number === stripSpaces ( sample [ 'materialnumber' ] ) ) ) { // new material number
if ( materials [ sample [ 'materialname' ] ] . numbers . find ( e => e . color === sample [ 'color' ] && e . number === '' ) ) { // color already in list, only number missing
materials [ sample [ 'materialname' ] ] . numbers . find ( e => e . color === sample [ 'color' ] && e . number === '' ) . number = stripSpaces ( sample [ 'materialnumber' ] ) ;
2020-06-25 10:44:55 +02:00
}
2020-07-20 16:31:48 +02:00
else { // completely new number entry
materials [ sample [ 'materialname' ] ] . numbers . push ( { color : trim ( sample [ 'color' ] ) , number : stripSpaces ( sample [ 'materialnumber' ] ) } ) ;
2020-06-25 10:44:55 +02:00
}
}
}
2020-07-20 16:31:48 +02:00
else if ( sample [ 'color' ] !== '' ) { // color given
if ( ! materials [ sample [ 'materialname' ] ] . numbers . find ( e => e . color === stripSpaces ( sample [ 'color' ] ) ) ) { // new material color
materials [ sample [ 'materialname' ] ] . numbers . push ( { color : trim ( sample [ 'color' ] ) , number : '' } ) ;
}
2020-06-25 10:44:55 +02:00
}
}
2020-07-20 16:31:48 +02:00
else { // new material
2020-07-22 10:53:45 +02:00
console . info ( ` MATERIAL LOAD ${ index } / ${ data . length } ${ sample [ 'materialname' ] } ` ) ;
2020-07-20 16:31:48 +02:00
materials [ sample [ 'materialname' ] ] = {
name : trim ( sample [ 'materialname' ] ) ,
supplier : trim ( sample [ 'supplier' ] ) ,
group : trim ( sample [ 'material' ] )
} ;
materials [ sample [ 'materialname' ] ] . numbers = await numbersFetch ( sample ) ;
// material properties
materials [ sample [ 'materialname' ] ] . properties = { material _template : materialTemplate } ;
let tmp = /M(\d+)/ . exec ( sample [ 'reinforcingmaterial' ] ) ;
materials [ sample [ 'materialname' ] ] . properties . mineral = tmp ? tmp [ 1 ] : 0 ;
tmp = /GF(\d+)/ . exec ( sample [ 'reinforcingmaterial' ] ) ;
materials [ sample [ 'materialname' ] ] . properties . glass _fiber = tmp ? tmp [ 1 ] : 0 ;
tmp = /CF(\d+)/ . exec ( sample [ 'reinforcingmaterial' ] ) ;
materials [ sample [ 'materialname' ] ] . properties . carbon _fiber = tmp ? tmp [ 1 ] : 0 ;
}
2020-06-25 10:44:55 +02:00
}
2020-07-20 16:31:48 +02:00
// Fill numberToColor array
2020-07-17 10:41:19 +02:00
Object . keys ( materials ) . forEach ( mKey => {
materials [ mKey ] . numbers . forEach ( number => {
if ( number . number && number . color ) {
numberToColor [ number . number ] = number . color ;
}
} )
} ) ;
2020-06-25 10:44:55 +02:00
}
async function saveMaterials ( ) {
const mKeys = Object . keys ( materials )
for ( let i in mKeys ) {
2020-07-22 10:53:45 +02:00
console . info ( ` MATERIAL SAVE ${ i } / ${ mKeys . length } ` ) ;
2020-07-17 10:41:19 +02:00
const material = _ . cloneDeep ( materials [ mKeys [ i ] ] ) ;
material . numbers = material . numbers . map ( e => e . number ) . filter ( e => e !== '' ) . map ( e => e . replace ( / /g , '' ) ) ;
2020-06-25 10:44:55 +02:00
await axios ( {
method : 'post' ,
2020-07-09 13:48:27 +02:00
url : host + '/material/new' ,
2020-06-25 10:44:55 +02:00
auth : {
username : 'admin' ,
password : 'Abc123!#'
} ,
2020-07-17 10:41:19 +02:00
data : material
2020-06-25 10:44:55 +02:00
} ) . catch ( err => {
2020-07-09 13:48:27 +02:00
if ( err . response . data . status && err . response . data . status !== 'Material name already taken' ) {
2020-07-17 10:41:19 +02:00
console . info ( material ) ;
2020-07-09 13:48:27 +02:00
console . error ( err . response . data ) ;
2020-07-20 16:31:48 +02:00
errors . push ( ` Upload for ${ JSON . stringify ( material ) } failed: ${ JSON . stringify ( err . response . data ) } ` )
2020-07-09 13:48:27 +02:00
}
2020-06-25 10:44:55 +02:00
} ) ;
}
console . info ( 'saved all materials' ) ;
}
async function numbersFetch ( sample ) {
let nm = [ ] ;
let res = [ ] ;
2020-07-20 16:31:48 +02:00
if ( sample [ 'materialnumber' ] ) { // sample has a material number
nm = normMaster [ stripSpaces ( sample [ 'materialnumber' ] ) ] ? [ normMaster [ stripSpaces ( sample [ 'materialnumber' ] ) ] ] : [ ] ;
2020-06-25 10:44:55 +02:00
}
else { // try finding via material name
2020-07-20 16:31:48 +02:00
nm = Object . keys ( normMaster ) . filter ( e => normMaster [ e ] . nameSpaceless === stripSpaces ( sample [ 'materialnumber' ] ) ) . map ( e => normMaster [ e ] ) ;
2020-06-25 10:44:55 +02:00
}
if ( nm . length > 0 ) {
for ( let i in nm ) {
2020-07-20 16:31:48 +02:00
if ( ! fs . readdirSync ( nmDocs ) . find ( e => e . indexOf ( nm [ i ] . doc . replace ( / /g , '_' ) ) >= 0 ) ) { // document not loaded
await getNormMasterDoc ( nm [ i ] . url . replace ( / /g , '%20' ) ) ;
}
2020-06-25 10:44:55 +02:00
// if (!fs.readdirSync(nmDocs).find(e => e.indexOf(nm[i].doc.replace(/ /g, '_')) >= 0)) { // document not loaded
// console.info('Retrying download...');
// await getNormMasterDoc(nm[i].url.replace(/ /g, '%20'), 2.2);
// }
// if (!fs.readdirSync(nmDocs).find(e => e.indexOf(nm[i].doc.replace(/ /g, '_')) >= 0)) { // document not loaded
// console.info('Retrying download again...');
// await getNormMasterDoc(nm[i].url.replace(/ /g, '%20'), 5);
// }
if ( fs . readdirSync ( nmDocs ) . find ( e => e . indexOf ( nm [ i ] . doc . replace ( / /g , '_' ) ) >= 0 ) ) { // document loaded
res = await readPdf ( fs . readdirSync ( nmDocs ) . find ( e => e . indexOf ( nm [ i ] . doc . replace ( / /g , '_' ) ) >= 0 ) ) ;
}
if ( res . length > 0 ) { // no results
break ;
}
else if ( i + 1 >= nm . length ) {
2020-07-20 16:31:48 +02:00
errors . push ( ` Download of ${ nm [ i ] . url . replace ( / /g , '%20' ) } for material number ${ sample [ 'materialnumber' ] } failed ` ) ;
errors . push ( nm [ i ] . doc . replace ( / /g , '_' ) ) ;
2020-06-25 10:44:55 +02:00
}
}
}
if ( res . length === 0 ) { // no results
2020-07-20 16:31:48 +02:00
if ( sample [ 'color' ] !== '' || sample [ 'materialnumber' ] !== '' ) { // information in data available
return [ { color : trim ( sample [ 'color' ] ) , number : sample [ 'materialnumber' ] } ] ;
2020-06-25 10:44:55 +02:00
}
else {
return [ ] ;
}
}
else {
2020-07-20 16:31:48 +02:00
if ( ! res . find ( e => e . number === sample [ 'materialnumber' ] ) ) { // sometimes norm master does not include sample number even if listed
res . push ( { color : trim ( sample [ 'color' ] ) , number : sample [ 'materialnumber' ] } ) ;
2020-06-25 10:44:55 +02:00
}
return res ;
}
}
async function getNormMaster ( fetchAgain = false ) {
if ( fetchAgain ) {
console . info ( 'fetching norm master...' ) ;
const res = await axios ( {
method : 'get' ,
url : 'http://rb-normen.bosch.com/cgi-bin/searchRBNorm4TradeName'
} ) ;
console . info ( 'finding documents...' ) ;
let match ;
// const regex = /<tr>.*?<td>.*?<\/span>(.*?)<\/td><td>(\d+)<\/td>.*?<a href="(.*?)"/gm;
const regex = /<tr>.*?<td>.*?<\/span>(.*?)<\/td><td>(\d+)<\/td><td>40.*?<a href="(.*?)".*?<\/a>(.*?)<\/td>/gm ; // only valid materials
do {
match = regex . exec ( res . data ) ;
if ( match ) {
normMaster [ match [ 2 ] ] = { name : match [ 1 ] , nameSpaceless : stripSpaces ( match [ 1 ] ) , number : match [ 2 ] , url : match [ 3 ] , doc : match [ 4 ] } ;
}
} while ( match ) ;
fs . writeFileSync ( './data_import/normMaster.json' , JSON . stringify ( normMaster ) ) ;
}
else {
normMaster = JSON . parse ( fs . readFileSync ( './data_import/normMaster.json' ) , 'utf-8' ) ;
}
}
function getNormMasterDoc ( url , timing = 1 ) {
2020-07-09 13:48:27 +02:00
console . info ( url ) ;
2020-06-25 10:44:55 +02:00
return new Promise ( async resolve => {
const options = new chrome . Options ( ) ;
options . setUserPreferences ( {
"download.default_directory" : nmDocs ,
"download.prompt_for_download" : false ,
"download.directory_upgrade" : true ,
"plugins.always_open_pdf_externally" : true
} ) ;
let driver = await new Builder ( ) . forBrowser ( 'chrome' ) . setChromeOptions ( options ) . build ( ) ;
let timeout = 7000 * timing ;
try {
await driver . get ( url ) ;
if ( await driver . getCurrentUrl ( ) !== 'https://rb-wam-saml.bosch.com/tfim/sps/normmaster/saml20/login' ) { // got document selection page
timeout = 11000 * timing ;
await driver . executeScript ( 'Array.prototype.slice.call(document.querySelectorAll(\'.functionlink\')).filter(e => e.innerText === \'English\')[0].click()' ) . catch ( ( ) => { timeout = 0 ; } ) ;
}
}
finally {
setTimeout ( async ( ) => { // wait until download is finished
await driver . quit ( ) ;
resolve ( ) ;
} , timeout ) ;
}
} ) ;
}
function readPdf ( file ) {
return new Promise ( async resolve => {
const countdown = 100 ; // value for text timeout
let table = 0 ; // > 0 when in correct table area
let rows = [ ] ; // found table rows
let lastY = 0 ; // y of last row
let lastX = 0 ; // right x of last item
let lastText = '' ; // text of last item
let lastLastText = '' ; // text of last last item
await new pdfReader . PdfReader ( ) . parseFileItems ( nmDocs + '\\' + file , ( err , item ) => {
if ( item && item . text ) {
2020-07-20 16:31:48 +02:00
if ( ( stripSpaces ( lastLastText + lastText + item . text ) . toLowerCase ( ) . indexOf ( 'colordesignationsuppl' ) >= 0 ) || ( stripSpaces ( lastLastText + lastText + item . text ) . toLowerCase ( ) . indexOf ( 'colordesignatiomsupplier' ) >= 0 ) ) { // table area starts
2020-06-25 10:44:55 +02:00
table = countdown ;
}
if ( table > 0 ) {
// console.log(item);
// console.log(item.y - lastY);
// console.log(item.text);
if ( item . y - lastY > 0.8 && Math . abs ( item . x - lastX ) > 5 ) { // new row
lastY = item . y ;
rows . push ( item . text ) ;
}
else { // still the same row row
2020-07-09 13:48:27 +02:00
rows [ rows . length - 1 ] += ( item . x - lastX > 1.09 ? '$' : '' ) + item . text ; // push to row, detect if still same cell
2020-06-25 10:44:55 +02:00
}
lastX = ( item . w * 0.055 ) + item . x ;
if ( /\d \d\d\d \d\d\d \d\d\d/ . test ( item . text ) ) {
table = countdown ;
}
table -- ;
if ( table <= 0 || item . text . toLowerCase ( ) . indexOf ( 'release document' ) >= 0 || item . text . toLowerCase ( ) . indexOf ( 'normative references' ) >= 0 ) { // table area ended
table = - 1 ;
// console.log(rows);
rows = rows . filter ( e => / ^ \ d { 10 } / m . test ( stripSpaces ( e ) ) ) ; // filter non-table rows
2020-07-09 13:48:27 +02:00
resolve ( rows . map ( e => { return { color : trim ( e . split ( '$' ) [ 3 ] ) , number : stripSpaces ( e . split ( '$' ) [ 0 ] ) } ; } ) ) ;
2020-06-25 10:44:55 +02:00
}
}
lastLastText = lastText ;
lastText = item . text ;
}
if ( ! item && table !== - 1 ) { // document ended
rows = rows . filter ( e => / ^ \ d { 10 } / m . test ( stripSpaces ( e ) ) ) ; // filter non-table rows
2020-07-09 13:48:27 +02:00
resolve ( rows . map ( e => { return { color : trim ( e . split ( '$' ) [ 3 ] ) , number : stripSpaces ( e . split ( '$' ) [ 0 ] ) } ; } ) ) ;
2020-06-25 10:44:55 +02:00
}
} ) ;
} ) ;
}
2020-07-09 13:48:27 +02:00
function sampleDeviceMap ( ) {
const dpts = fs . readdirSync ( dptFiles ) ;
const regex = /(.*?)_(.*?)_(\d+|[^_]+_\d+).DPT/ ;
for ( let i in dpts ) {
const regexRes = regex . exec ( dpts [ i ] )
if ( regexRes ) { // found matching sample
sampleDevices [ regexRes [ 2 ] ] = regexRes [ 1 ] === 'plastics' ? 'rng01' : regexRes [ 1 ] . toLowerCase ( ) ;
}
}
}
2020-07-20 16:31:48 +02:00
function customFields ( comment , sampleNumber ) {
const customFields = [
2020-07-22 10:53:45 +02:00
{ docKey : 'Versuchsreihe' , dbKey : 'test series' , regex : /Versuchsreihe (\d+),/ , category : 'customField' } ,
{ docKey : 'Stillstand' , dbKey : 'idle' , regex : /Stillstand (\d+ min):/ , category : 'customField' } ,
{ docKey : 'Serienzyklus' , dbKey : 'cycle' , regex : /(\d+.) Serienzyklus (\(.*?\))/ , category : 'customField' } ,
{ docKey : 'Berstdruck' , dbKey : 'bursting pressure' , regex : /Berstdruck: (.*?bar);/ , category : 'customField' } ,
{ docKey : 'gemessen am' , dbKey : 'measured at' , regex : /gemessen am (.*20\d\d)/ , category : 'customField' } ,
{ docKey : 'used for' , dbKey : 'used for' , regex : /used for (.*)/ , category : 'customField' } ,
{ docKey : 'Stabilized' , dbKey : 'stabilized' , regex : /Stabilized, (.*)/ , category : 'customField' } ,
{ docKey : 'parts from field' , dbKey : 'parts from field' , regex : null , category : 'customField' } ,
{ docKey : 'side' , dbKey : 'side' , regex : /(\S*?) side/ , category : 'customField' } ,
{ docKey : 'Creep test' , dbKey : 'creep test' , regex : null , category : 'customField' } ,
{ docKey : 'Variante' , dbKey : 'variant' , regex : /(.*)/ , category : 'customField' } ,
{ docKey : 'Parameter' , dbKey : 'parameter' , regex : /Parameter (\d)/ , category : 'customField' } ,
{ docKey : 'days without cooling' , dbKey : 'days without cooling' , regex : /(\d+) days without cooling/ , category : 'customField' } ,
{ docKey : 'Zyklus' , dbKey : 'cycle' , regex : /Zyklus (\d+ s)/ , category : 'customField' } ,
{ docKey : 'fast cure' , dbKey : 'fast cure' , regex : null , category : 'customField' } ,
{ docKey : 'Stoff gesperrt' , dbKey : 'material blocked' , regex : null , category : 'customField' } ,
{ docKey : 'anwendungsbeschränkt' , dbKey : 'limited application' , regex : null , category : 'customField' } ,
{ docKey : 'für Neuanwendungen gesperrt' , dbKey : 'blocked for new applications' , regex : null , category : 'customField' } ,
{ docKey : 'V' , dbKey : 'test' , regex : /V(\d+-\d+);/ , category : 'customField' } ,
{ docKey : 'Twz' , dbKey : 'twz' , regex : /Twz \(°C\): (\d+);/ , category : 'customField' } ,
{ docKey : 'Pnach' , dbKey : 'pressure after' , regex : /Pnach \(bar\): (\d+);/ , category : 'customField' } ,
{ docKey : 'Vein' , dbKey : 'volume in' , regex : /Vein \(ccm\/s\): (\d+)/ , category : 'customField' } ,
{ docKey : 'low emission' , dbKey : 'low emission' , regex : /low emission (\S+)[;]?/ , category : 'customField' } ,
{ docKey : 'aus' , dbKey : 'from' , regex : /aus (.*)/ , category : 'customField' } ,
{ docKey : 'Erprobung' , dbKey : 'trial' , regex : /Erprobung (.*?);/ , category : 'customField' } ,
{ docKey : 'Auftragsnummer' , dbKey : 'job number' , regex : /Auftragsnummer: (\S+)[;]?/ , category : 'customField' } ,
{ docKey : 'Wärmealterung' , dbKey : 'heat aging' , regex : /Wärmealterung: (.*)/ , category : 'customField' } ,
{ docKey : 'A: Wandung außen / I: Wandung innen / S: Wandung Steg' , dbKey : 'outer wall' , regex : /Steg.*?A: (\d+)/ , category : 'customField' } ,
{ docKey : 'A: Wandung außen / I: Wandung innen / S: Wandung Steg' , dbKey : 'inner wall' , regex : /Steg.*?I: (\d+)/ , category : 'customField' } ,
{ docKey : 'A: Wandung außen / I: Wandung innen / S: Wandung Steg' , dbKey : 'support wall' , regex : /Steg.*?S: (\d+)/ , category : 'customField' } ,
{ docKey : 'A: Wandung außen / I: Wandung innen / S: Wandung Steg' , dbKey : 'outer wall degraded' , regex : /Degradation:.*?A: (\d+)/ , category : 'customField' } ,
{ docKey : 'A: Wandung außen / I: Wandung innen / S: Wandung Steg' , dbKey : 'inner wall degraded' , regex : /Degradation:.*?I: (\d+)/ , category : 'customField' } ,
{ docKey : 'A: Wandung außen / I: Wandung innen / S: Wandung Steg' , dbKey : 'support wall degraded' , regex : /Degradation:.*?S: (\d+)/ , category : 'customField' } ,
{ docKey : 'Reines Polymer' , dbKey : 'pure polymer' , regex : null , category : 'customField' } ,
{ docKey : 'Rücksendung erforderlich' , dbKey : 'return needed' , regex : /(.*?,) Rücksendung erforderlich, (.*)/ , category : 'customField' } ,
{ docKey : 'Prio' , dbKey : 'priority' , regex : /Prio (\d+)/ , category : 'customField' } ,
{ docKey : 'beanstandet' , dbKey : 'faulty' , regex : null , category : 'customField' } ,
{ docKey : 'aged' , dbKey : 'aged' , regex : /aged: (.*)/ , category : 'customField' } ,
{ docKey : 'DOPPELT!!' , dbKey : 'double' , regex : null , category : 'customField' } ,
{ docKey : 'Bauteil' , dbKey : 'construction part' , regex : /Bauteil (\S+)/ , category : 'customField' } ,
{ docKey : 'T =' , dbKey : 'temperature' , regex : /T = (\S+)/ , category : 'customField' } ,
{ docKey : 'nicht vorgealtert' , dbKey : 'not preaged' , regex : /nicht vorgealtert (.*)/ , category : 'customField' } ,
{ docKey : 'TS119' , dbKey : 'TS119' , regex : /TS119 (W\S+);/ , category : 'customField' } ,
{ docKey : 'GF vom Datenblatt' , dbKey : 'glass fibre from data sheet' , regex : null , category : 'customField' } ,
{ docKey : 'nach Datensatz' , dbKey : 'according to dataset' , regex : null , category : 'customField' } ,
{ docKey : 'Dosiergeschw' , dbKey : 'metering speed' , regex : /Dosiergeschw.*? (.*?min)/ , category : 'customField' } ,
{ docKey : 'Einspritzgeschw' , dbKey : 'injection speed' , regex : /Einspritzgeschw.*? (.*\/s)/ , category : 'customField' } ,
{ docKey : 'Heizbänder' , dbKey : 'heating lines' , regex : /Heizbänder (.*)/ , category : 'customField' } ,
{ docKey : 'Verweilzeit' , dbKey : 'dwell time' , regex : /Verweilzeit (.*?min)/ , category : 'customField' } ,
{ docKey : 'Probe' , dbKey : 'belongs to' , regex : /Probe (\S*\d+)/ , category : 'reference' } ,
{ docKey : 'zu' , dbKey : 'belongs to' , regex : /zu (\S*\d+)/ , category : 'reference' } ,
{ docKey : 'granulate zu' , dbKey : 'granulate to' , regex : /granulate zu.* (\S*\d+)/ , category : 'reference' } ,
{ docKey : 'construction part' , dbKey : 'construction part' , regex : /(?<!granulate)construction part.* (\S*\d+)/ , category : 'reference' } ,
{ docKey : 'VZ =' , dbKey : 'vz' , regex : /VZ = (\d+) cm³\/g/ , category : 'vz' } ,
{ docKey : 'VWZ' , dbKey : 'vwz' , regex : /(\d+ min) VWZ \// , category : 'customField' } ,
{ docKey : 'VZ:' , dbKey : 'vz' , regex : /VZ: ([0-9.,]+) mL\/g[;]?/ , category : 'vz' }
2020-07-20 16:31:48 +02:00
] ;
const res = { } ; // returned result
const usedParts = [ ] ; // all substrings used for custom fields, subtract at the end, as some parts are used multiple times
customFields . forEach ( cField => {
if ( comment . indexOf ( cField . docKey ) >= 0 ) { // comment contains docKey
if ( cField . regex !== null ) {
const regexRes = cField . regex . exec ( comment ) ;
if ( regexRes ) {
usedParts . push ( regexRes [ 0 ] ) ;
2020-07-22 10:53:45 +02:00
if ( cField . category === 'reference' ) {
2020-07-20 16:31:48 +02:00
sampleReferences . push ( { sample : sampleNumber , referencedSample : regexRes [ 1 ] , relation : cField . dbKey } ) ;
}
2020-07-22 10:53:45 +02:00
else if ( cField . category === 'vz' ) {
vzValues [ sampleNumber ] = regexRes [ 1 ] ;
}
2020-07-20 16:31:48 +02:00
else {
res [ cField . dbKey ] = regexRes . filter ( ( e , i ) => i > 0 ) . join ( ' ' ) ;
}
}
}
else {
usedParts . push ( cField . docKey ) ;
res [ cField . dbKey ] = true ;
}
}
} ) ;
usedParts . forEach ( part => {
const index = comment . indexOf ( part ) ;
if ( index >= 0 ) {
comment = comment . slice ( 0 , index ) + comment . slice ( index + part . length ) ;
}
} ) ;
if ( /\w+/ . test ( comment ) ) {
res . xRest = comment ;
}
return res ;
}
function sampleType ( type ) {
const allowedTypes = [ 'tension rod' , 'part' , 'granulate' ] ;
return allowedTypes . indexOf ( type ) >= 0 ? type : ( type === '' ? 'unknown' : 'other' ) ;
}
2020-06-25 10:44:55 +02:00
function stripSpaces ( s ) {
return s ? s . replace ( / /g , '' ) : '' ;
}
function trim ( s ) {
return s . replace ( /(^\s+|\s+$)/gm , '' ) ;
}