Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: build/csv-export.js

Issue 29636585: Issue 6171 - create CSV exporter and importer for translations (Closed)
Patch Set: Removed mercurial commands Created May 17, 2018, 5:23 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« README.md ('K') | « README.md ('k') | package.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/csv-export.js
===================================================================
new file mode 100644
--- /dev/null
+++ b/build/csv-export.js
@@ -0,0 +1,326 @@
+/*
saroyanm 2018/05/24 17:00:59 In some stage of import/export This "\u00A0" speci
Thomas Greiner 2018/05/25 10:23:28 Based on what I see in https://gitlab.com/eyeo/adb
saroyanm 2018/05/28 13:37:08 Yes, it's there because I've added them manually.
Thomas Greiner 2018/05/28 17:12:46 No particular reason. It was just easier to write
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-present eyeo GmbH
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/* globals process */
+
+"use strict";
+
+const fs = require("fs");
+const path = require("path");
+const csv = require("csv");
+const {promisify} = require("util");
+const execFile = promisify(require("child_process").execFile);
+const csvParser = promisify(csv.parse);
+const readFile = promisify(fs.readFile);
+const glob = promisify(require("glob").glob);
+const readJsonPromised = promisify(readJson);
+
+const localesDir = "locale";
+const defaultLocale = "en_US";
+
+let headers = ["Filename", "StringID", "Description", "Placeholders",
+ defaultLocale];
+let outputFileName = "translations.csv";
+
+/**
+ * Export existing translation - files into CSV file
+ */
+function exportTranslations()
+{
+ glob(`${localesDir}/**/*.json`).then((filePaths) =>
+ {
+ // Reading all existing translations files
+ return Promise.all(filePaths.map((filePath) => readJsonPromised(filePath)));
+ }).then(csvFromJsonFileObjects);
+}
+
+/**
+ * Creating Matrix which reflects output CSV file
+ * @param {Object[]} fileObjects - array of file objects created by readJson
+ */
+function csvFromJsonFileObjects(fileObjects)
+{
+ let locales = [];
+ // Create Object tree from the Objects array, for easier search
+ // ex.: {dektop-options.json: {en_US: {...}, {de: {...}, {ru: {...}}}
+ let dataTreeObj = Object.create(null);
+ for (let fileObject of fileObjects)
+ {
+ const {fileName, locale, strings} = fileObject;
+
+ if (!locales.includes(locale))
+ locales.push(locale);
+
+ if (!dataTreeObj[fileName])
+ dataTreeObj[fileName] = {};
+ if (!dataTreeObj[fileName][locale])
+ dataTreeObj[fileName][locale] = {};
+ dataTreeObj[fileName][locale] = strings;
+ }
+
+ let fileNames = Object.keys(dataTreeObj);
+ if (filesFilter.length)
+ fileNames = fileNames.filter((item) => filesFilter.includes(item));
+
+ locales = locales.filter((locale) => locale != defaultLocale).sort();
Thomas Greiner 2018/06/12 14:50:41 Is there no need for sorting locales anymore?
saroyanm 2018/06/12 15:22:49 If you mean default strings: See -> https://gitlab
+ // Create two dimensional strings array that reflects CSV structure
+ let csvArray = [headers.concat(locales)];
+ for (let fileName of fileNames)
+ {
+ let strings = dataTreeObj[fileName][defaultLocale];
+ for (let stringID of Object.keys(strings))
+ {
+ let fileObj = dataTreeObj[fileName];
+ let {description, message, placeholders} = strings[stringID];
+ let row = [fileName, stringID, description || "",
+ JSON.stringify(placeholders), message];
+
+ for (let locale of locales)
+ {
+ let localeFileObj = fileObj[locale];
+ let isTranslated = !!(localeFileObj && localeFileObj[stringID]);
+ row.push(isTranslated ? localeFileObj[stringID].message : "");
+ }
+ csvArray.push(row);
+ }
+ }
+ arrayToCsv(csvArray);
+}
+
+/**
+ * Import strings from the CSV file
+ * @param {string} filePath - CSV file path to import from
+ */
+function importTranslations(filePath)
+{
+ readFile(filePath, "utf8").then((fileObjects) =>
+ {
+ return csvParser(fileObjects);
saroyanm 2018/05/24 16:40:02 I think there might a bug in csvParser -> https://
+ }).then((dataMatrix) =>
+ {
+ let headLocales = dataMatrix.shift().slice(4);
+ let dataTreeObj = {};
+ for (let rowId in dataMatrix)
+ {
+ let row = dataMatrix[rowId];
+ let [currentFilename, stringId, description, placeholder, ...messages] =
+ row;
+ if (!stringId)
+ continue;
+
+ stringId = stringId.trim();
+ // Check if it's the filename row
+ if (!dataTreeObj[currentFilename])
+ dataTreeObj[currentFilename] = {};
+
+ description = description.trim();
+ for (let i = 0; i < headLocales.length; i++)
+ {
+ let locale = headLocales[i].trim();
+ let message = messages[i].trim();
+ if (!message)
+ continue;
+
+ // Create Object tree from the Objects array, for easier search
+ // ex.: {dektop-options.json: {en_US: {...}, {de: {...}, {ru: {...}}}
+ if (!dataTreeObj[currentFilename][locale])
+ dataTreeObj[currentFilename][locale] = {};
+
+ let localeObj = dataTreeObj[currentFilename][locale];
+ localeObj[stringId] = {};
+ let stringObj = localeObj[stringId];
+
+ // We keep string descriptions only in default locale files
+ if (locale == defaultLocale)
saroyanm 2018/05/24 13:29:26 I've changed this into if (locale == defaultLocale
Thomas Greiner 2018/05/24 13:49:42 I think your suggested solution (i.e. only include
+ stringObj.description = description;
+
+ stringObj.message = message;
+ if (placeholder)
+ stringObj.placeholders = JSON.parse(placeholder);
+ }
+ }
+ writeJson(dataTreeObj);
+ });
+}
+
+/**
+ * Write locale files according to dataTreeObj
+ * @param {Object} dataTreeObj - ex.:
+ * {dektop-options.json: {en_US: {...}, {de: {...}, {ru: {...}}}
+ */
+function writeJson(dataTreeObj)
+{
+ for (let fileName in dataTreeObj)
+ {
+ for (let locale in dataTreeObj[fileName])
+ {
+ let filePath = path.join(localesDir, locale, fileName);
+ let sortedJSON = orderJSON(dataTreeObj[fileName][locale]);
saroyanm 2018/05/24 15:29:54 Sorting the Default locale produce an unreadable d
Thomas Greiner 2018/05/24 15:46:46 I understand. In that case let's sort the default
saroyanm 2018/06/05 15:03:47 I've created a gitlab issue in order to discuss th
+ let fileString = JSON.stringify(sortedJSON, null, 2);
+
+ // Newline at end of file to match Coding Style
+ if (locale == defaultLocale)
+ fileString += "\n";
+ fs.writeFile(filePath, fileString, "utf8", (err) =>
+ {
+ if (err)
+ {
+ console.error(err);
+ }
+ else
+ {
+ console.log(`Updated: ${filePath}`);
+ }
+ });
+ }
+ }
+}
+
+/**
+ * This function currently relies on V8 to sort the object by keys
+ * @param {Object} unordered - json object
+ * @returns {Object}
+ */
+function orderJSON(unordered)
+{
+ const ordered = {};
+ for (let key of Object.keys(unordered).sort())
+ {
+ ordered[key] = unordered[key];
+ if (unordered[key].placeholders)
+ ordered[key].placeholders = orderJSON(unordered[key].placeholders);
+
+ ordered[key] = unordered[key];
+ }
+ return ordered;
+}
+
+/**
+ * Convert two dimensional array to the CSV file
+ * @param {Object[]} csvArray - array to convert from
+ */
+function arrayToCsv(csvArray)
+{
+ csv.stringify(csvArray, (err, output) =>
+ {
+ fs.writeFile(outputFileName, output, "utf8", (error) =>
+ {
+ if (!error)
+ console.log(`${outputFileName} is created`);
+ else
+ console.error(error);
+ });
+ });
+}
+
+/**
+ * Reads JSON file and assign filename and locale to it
+ * @param {string} filePath - ex.: "locales/en_US/desktop-options.json"
+ * @param {function} callback - fileName, locale and strings of locale file
+ * Parameters:
+ * * Error message
+ * * Object containing fileName, locale and strings
+ */
+function readJson(filePath, callback)
+{
+ let {dir, base} = path.parse(filePath);
+ fs.readFile(filePath, "utf8", (err, data) =>
+ {
+ if (err)
+ {
+ callback(err);
+ }
+ else
+ {
+ let locale = dir.split(path.sep).pop();
+ let strings = JSON.parse(data);
+ callback(null, {fileName: base, locale, strings});
+ }
+ });
+}
+
+/**
+ * Exit process and log error message
+ * @param {String} error error message
+ */
+function exitProcess(error)
+{
+ console.error(error);
+ process.exit(1);
+}
+
+// CLI
+let helpText = `
+About: Converts locale files between CSV and JSON formats
+Usage: csv-export.js [option] [argument]
+Options:
+ -f [FILENAME] Name of the files to be exported ex.: -f firstRun.json
+ option can be used multiple times.
+ If omitted all files are being exported
+
+ -o [FILENAME] Output filename ex.:
+ -f firstRun.json -o {hash}-firstRun.csv
+ Placeholders:
+ {hash} - Mercurial current revision hash
+ {repo} - Name of the "Default" repository
Thomas Greiner 2018/05/22 17:22:50 Detail: These placeholders no longer exist.
saroyanm 2018/06/05 15:03:47 Done.
+ If omitted the output fileName is set to
+ translations-{repo}-{hash}.csv
+
+ -i [FILENAME] Import file path ex: -i issue-reporter.csv
+`;
+
+let argv = process.argv.slice(2);
+let stopExportScript = false;
+// Filter to be used export to the fileNames inside
+let filesFilter = [];
+
+for (let i = 0; i < argv.length; i++)
+{
+ switch (argv[i])
+ {
+ case "-h":
+ console.log(helpText);
+ stopExportScript = true;
+ break;
+ case "-f":
+ if (!argv[i + 1])
+ {
+ exitProcess("Please specify the input filename");
+ }
+ filesFilter.push(argv[i + 1]);
+ break;
+ case "-o":
+ if (!argv[i + 1])
+ {
+ exitProcess("Please specify the output filename");
+ }
+ outputFileName = argv[i + 1];
+ break;
+ case "-i":
+ if (!argv[i + 1])
+ {
+ exitProcess("Please specify the import file");
+ }
+ let importFile = argv[i + 1];
+ importTranslations(importFile);
+ stopExportScript = true;
+ break;
+ }
+}
+
+if (!stopExportScript)
+ exportTranslations(filesFilter);
« README.md ('K') | « README.md ('k') | package.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld