-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathglossariesCsvParser.js
47 lines (42 loc) · 1.65 KB
/
glossariesCsvParser.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
// Copyright 2025 DeepL SE (https://www.deepl.com)
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
const csvParser = require('csv-parser');
const { Readable } = require('stream');
const util = require('./util');
function convertGlossaryEntriesCsvToList(entriesCsv, glossarySourceLang, glossaryTargetLang) {
if (entriesCsv.length === 0) {
throw new util.HttpError('Bad request', 400, 'Missing or invalid argument: entries');
}
const glossaryLangPair = {
sourceLang: glossarySourceLang,
targetLang: glossaryTargetLang,
};
return new Promise(((resolve, reject) => {
const readable = Readable.from([entriesCsv]);
const results = [];
readable.pipe(csvParser({ headers: false }))
.on('data', (data) => {
const sourceEntry = data[0];
const targetEntry = data[1];
const langPair = { sourceLang: data[2], targetLang: data[3] };
// Ignore empty lines
if (sourceEntry === undefined || targetEntry === undefined) return;
// Ignore lines where the source lang or target lang do not match glossary lang
if (langPair.sourceLang !== undefined && langPair.targetLang !== undefined
&& !util.langPairMatches(langPair, glossaryLangPair)
) return;
results.push({ source: sourceEntry, target: targetEntry });
})
.on('end', () => {
if (results.length === 0) {
return reject(new util.HttpError('Invalid glossary entries provided', 400));
}
return resolve(results);
})
.on('error', (err) => reject(err));
}));
}
module.exports = {
convertGlossaryEntriesCsvToList,
};