-
Notifications
You must be signed in to change notification settings - Fork 69
/
gulpfile.js
450 lines (414 loc) · 14.8 KB
/
gulpfile.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
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
'use strict';
const gulp = require('gulp');
const fs = require('fs');
const replace = require('gulp-replace');
const pkg = require('./package.json');
const iopackage = require('./io-package.json');
const version = (pkg && pkg.version) ? pkg.version : iopackage.common.version;
/*const appName = getAppName();
function getAppName() {
const parts = __dirname.replace(/\\/g, '/').split('/');
return parts[parts.length - 1].split('.')[0].toLowerCase();
}
*/
const fileName = 'words.js';
const languages = {
en: {},
de: {},
ru: {},
pt: {},
nl: {},
fr: {},
it: {},
es: {},
pl: {},
'zh-cn': {}
};
const srcDir = __dirname + '/';
function lang2data(lang, isFlat) {
let str = isFlat ? '' : '{\n';
let count = 0;
for (const w in lang) {
if (lang.hasOwnProperty(w)) {
count++;
if (isFlat) {
str += (lang[w] === '' ? (isFlat[w] || w) : lang[w]) + '\n';
} else {
const key = ' "' + w.replace(/"/g, '\\"') + '": ';
str += key + '"' + lang[w].replace(/"/g, '\\"') + '",\n';
}
}
}
if (!count) return isFlat ? '' : '{\n}';
if (isFlat) {
return str;
} else {
return str.substring(0, str.length - 2) + '\n}';
}
}
function readWordJs(src) {
try {
let words;
if (fs.existsSync(`${src}js/${fileName}`)) {
words = fs.readFileSync(`${src}js/${fileName}`).toString();
} else {
words = fs.readFileSync(src + fileName).toString();
}
words = words.replace(/\\x0A/g, '<br/>');
const lines = words.split(/\r\n|\r|\n/g);
let i = 0;
while (!lines[i].includes('$.extend(systemDictionary,') && !lines[i].includes('systemDictionary =')) {
i++;
}
lines.splice(0, i);
// remove last empty lines
i = lines.length - 1;
while (!lines[i]) {
i--;
}
if (i < lines.length - 1) {
lines.splice(i + 1);
}
lines[0] = lines[0].replace('$.extend(systemDictionary, ', '');
lines[0] = lines[0].replace('systemDictionary = {', '{');
lines[lines.length - 1] = lines[lines.length - 1].trim().replace(/}\);$/, '}');
lines[lines.length - 1] = lines[lines.length - 1].trim().replace(/};$/, '}');
words = lines.join('\n');
const resultFunc = new Function(`return ${words};`);
return resultFunc();
} catch (e) {
return null;
}
}
function padRight(text, totalLength) {
return text + (text.length < totalLength ? new Array(totalLength - text.length).join(' ') : '');
}
function writeWordJs(data, src) {
let text =
'/**\n' +
' * ioBroker.vis\n' +
' * https://github.com/ioBroker/ioBroker.vis\n' +
' *\n' +
' * Copyright (c) 2013-2018 bluefox https://github.com/GermanBluefox, hobbyquaker https://github.com/hobbyquaker\n' +
' * Creative Common Attribution-NonCommercial (CC BY-NC)\n' +
' *\n' +
' * http://creativecommons.org/licenses/by-nc/4.0/\n' +
' *\n' +
' * Short content:\n' +
' * Licensees may copy, distribute, display and perform the work and make derivative works based on it only if they give the author or licensor the credits in the manner specified by these.\n' +
' * Licensees may copy, distribute, display, and perform the work and make derivative works based on it only for noncommercial purposes.\n' +
' * (Free for non-commercial use).\n' +
' */\n' +
'/* jshint browser:true */\n' +
'/* jshint -W097 */// jshint strict:false\n' +
'/* global $ */\n' +
'/* global systemDictionary */\n' +
'\n' +
'// DO NOT EDIT THIS FILE!!! IT WILL BE AUTOMATICALLY GENERATED FROM src/i18n\n';
text += '/*global systemDictionary:true */\n';
text += '\'use strict\';\n\n';
text += '$.extend(systemDictionary, {\n';
for (const word in data) {
if (data.hasOwnProperty(word)) {
text += ' ' + padRight('"' + word.replace(/"/g, '\\"') + '": {', 50);
let line = '';
for (const lang in data[word]) {
if (data[word].hasOwnProperty(lang)) {
line += '"' + lang + '": "' + padRight(data[word][lang].replace(/"/g, '\\"') + '",', 50) + ' ';
}
}
if (line) {
line = line.trim();
line = line.substring(0, line.length - 1);
}
text += line + '},\n';
}
}
text += '});';
if (fs.existsSync(src + 'js/' + fileName)) {
fs.writeFileSync(src + 'js/' + fileName, text);
} else {
fs.writeFileSync(src + '' + fileName, text);
}
}
const EMPTY = '';
function words2languages(src) {
const langs = Object.assign({}, languages);
const data = readWordJs(src);
if (data) {
for (const word in data) {
if (data.hasOwnProperty(word)) {
for (const lang in data[word]) {
if (data[word].hasOwnProperty(lang)) {
if (!langs[lang]) {
console.error(`No data for ${lang} and ${word}`);
}
langs[lang][word] = data[word][lang];
// pre-fill all other languages
for (const j in langs) {
if (langs.hasOwnProperty(j)) {
langs[j][word] = langs[j][word] || EMPTY;
}
}
}
}
}
}
if (!fs.existsSync(`${src}i18n/`)) {
fs.mkdirSync(`${src}i18n/`);
}
for (const l in langs) {
if (!langs.hasOwnProperty(l)) continue;
const keys = Object.keys(langs[l]);
//keys.sort();
const obj = {};
for (let k = 0; k < keys.length; k++) {
obj[keys[k]] = langs[l][keys[k]];
}
if (!fs.existsSync(`${src}i18n/${l}`)) {
fs.mkdirSync(`${src}i18n/${l}`);
}
fs.writeFileSync(`${src}i18n/${l}/translations.json`, lang2data(obj));
}
} else {
console.error(`Cannot read or parse ${fileName}`);
}
}
function words2languagesFlat(src) {
const langs = Object.assign({}, languages);
const data = readWordJs(src);
if (data) {
for (const word in data) {
if (data.hasOwnProperty(word)) {
for (const lang in data[word]) {
if (data[word].hasOwnProperty(lang)) {
if (!langs[lang]) {
console.error(`No data for ${lang} and ${word}`);
}
langs[lang][word] = data[word][lang];
// pre-fill all other languages
for (const j in langs) {
if (langs.hasOwnProperty(j)) {
langs[j][word] = (langs[j][word] || EMPTY).replace(/\\x0A/g, '<br\\/>');
}
}
}
}
}
}
const keys = Object.keys(langs.en);
// keys.sort();
for (const l in langs) {
if (!langs.hasOwnProperty(l)) continue;
const obj = {};
for (let k = 0; k < keys.length; k++) {
obj[keys[k]] = langs[l][keys[k]];
}
langs[l] = obj;
}
if (!fs.existsSync(src + 'i18n/')) {
fs.mkdirSync(src + 'i18n/');
}
for (const ll in langs) {
if (!langs.hasOwnProperty(ll)) continue;
if (!fs.existsSync(src + 'i18n/' + ll)) {
fs.mkdirSync(src + 'i18n/' + ll);
}
fs.writeFileSync(`${src}i18n/${ll}/flat.txt`, lang2data(langs[ll], langs.en));
}
fs.writeFileSync(src + 'i18n/flat.txt', keys.join('\n'));
} else {
console.error('Cannot read or parse ' + fileName);
}
}
function languagesFlat2words(src) {
const dirs = fs.readdirSync(`${src}i18n/`);
const langs = {};
const bigOne = {};
const order = Object.keys(languages);
dirs.sort(function (a, b) {
const posA = order.indexOf(a);
const posB = order.indexOf(b);
if (posA === -1 && posB === -1) {
if (a > b) return 1;
if (a < b) return -1;
return 0;
} else if (posA === -1) {
return -1;
} else if (posB === -1) {
return 1;
} else {
if (posA > posB) return 1;
if (posA < posB) return -1;
return 0;
}
});
const keys = fs.readFileSync(`${src}i18n/flat.txt`).toString().split('\n');
for (let l = 0; l < dirs.length; l++) {
if (dirs[l] === 'flat.txt') continue;
const lang = dirs[l];
const values = fs.readFileSync(`${src}i18n/${lang}/flat.txt`).toString().split('\n');
langs[lang] = {};
keys.forEach((word, i) => langs[lang][word] = values[i]);
const words = langs[lang];
for (const word in words) {
if (words.hasOwnProperty(word)) {
bigOne[word] = bigOne[word] || {};
if (words[word] !== EMPTY) {
bigOne[word][lang] = words[word].replace(/<br\/>/g, '\\x0A');
}
}
}
}
// read actual words.js
const aWords = readWordJs();
const temporaryIgnore = ['pt', 'fr', 'nl', 'flat.txt'];
if (aWords) {
// Merge words together
for (const w in aWords) {
if (aWords.hasOwnProperty(w)) {
if (!bigOne[w]) {
console.warn(`Take from actual words.js: ${w}`);
bigOne[w] = aWords[w]
}
dirs.forEach(function (lang) {
if (temporaryIgnore.indexOf(lang) !== -1) return;
if (!bigOne[w][lang]) {
console.warn(`Missing "${lang}": ${w}`);
}
});
}
}
}
writeWordJs(bigOne, src);
}
function languages2words(src) {
const dirs = fs.readdirSync(`${src}i18n/`);
const langs = {};
const bigOne = {};
const order = Object.keys(languages);
dirs.sort(function (a, b) {
const posA = order.indexOf(a);
const posB = order.indexOf(b);
if (posA === -1 && posB === -1) {
if (a > b) return 1;
if (a < b) return -1;
return 0;
} else if (posA === -1) {
return -1;
} else if (posB === -1) {
return 1;
} else {
if (posA > posB) return 1;
if (posA < posB) return -1;
return 0;
}
});
for (let l = 0; l < dirs.length; l++) {
if (dirs[l] === 'flat.txt') continue;
const lang = dirs[l];
langs[lang] = fs.readFileSync(`${src}i18n/${lang}/translations.json`).toString();
try {
langs[lang] = JSON.parse(langs[lang]);
} catch (e) {
console.error(`Cannot parse ${src}i18n/${lang}/translations.json: ${e}`);
}
const words = langs[lang];
for (const word in words) {
if (words.hasOwnProperty(word)) {
bigOne[word] = bigOne[word] || {};
if (words[word] !== EMPTY) {
bigOne[word][lang] = words[word].replace(/<br\/>/g, '\\x0A');
}
}
}
}
// read actual words.js
const aWords = readWordJs();
const temporaryIgnore = ['pt', 'fr', 'nl', 'it', 'es', 'pl'];
if (aWords) {
// Merge words together
for (const w in aWords) {
if (aWords.hasOwnProperty(w)) {
if (!bigOne[w]) {
console.warn(`Take from actual words.js: ${w}`);
bigOne[w] = aWords[w]
}
dirs.forEach(function (lang) {
if (temporaryIgnore.indexOf(lang) !== -1) return;
if (!bigOne[w][lang]) {
console.warn(`Missing "${lang}": ${w}`);
}
});
}
}
}
writeWordJs(bigOne, src);
}
gulp.task('wwwWords2languages', done => {
words2languages('./www/');
done();
});
gulp.task('wwwWords2languagesFlat', done => {
words2languagesFlat('./www/');
done();
});
gulp.task('wwwLanguagesFlat2words', done => {
languagesFlat2words('./www/');
done();
});
gulp.task('wwwLanguages2words', done => {
languages2words('./www/');
done();
});
gulp.task('adminWords2languages', done => {
words2languages('./admin/');
done();
});
gulp.task('adminWords2languagesFlat', done => {
words2languagesFlat('./admin/');
done();
});
gulp.task('adminLanguagesFlat2words', done => {
languagesFlat2words('./admin/');
done();
});
gulp.task('adminLanguages2words', done => {
languages2words('./admin/');
done();
});
gulp.task('replacePkg', () =>
gulp.src([
srcDir + 'package.json',
srcDir + 'io-package.json'
])
.pipe(replace(/"version": *"[.0-9]*",/g, `"version": "${version}",`))
.pipe(gulp.dest(srcDir)));
gulp.task('replaceVis', () =>
gulp.src([
`${srcDir}www/js/vis.js`
])
.pipe(replace(/const version = *'[.0-9]*';/g, `const version = "${version}";`))
.pipe(replace(/"version": *"[.0-9]*",/g, `"version": "${version}",`))
.pipe(replace(/version: *"[.0-9]*",/g, `version: "${version}",`))
.pipe(replace(/version: *'[.0-9]*',/g, `version: '${version}',`))
.pipe(replace(/<!-- vis Version [.0-9]+ -->/g, `<!-- vis Version ${version} -->`))
.pipe(replace(/# vis Version [.0-9]+/g, `# vis Version ${version}`))
.pipe(replace(/ dev build [.0-9]+/g, '# dev build 0'))
.pipe(gulp.dest( `${srcDir}/www/js`)));
gulp.task('replaceHtml', () =>
gulp.src([
srcDir + 'www/cache.manifest',
srcDir + 'www/index.html',
srcDir + 'www/edit.html'
])
.pipe(replace(/<!-- vis Version [.0-9]+ -->/g, `<!-- vis Version ${version} -->`))
.pipe(replace(/const version = *'[.0-9]*';/g, `const version = '${version}';`))
.pipe(replace(/"version": *"[.0-9]*",/g, `"version": "${version}",`))
.pipe(replace(/version: *"[.0-9]*",/g, `version: "${version}",`))
.pipe(replace(/version: *'[.0-9]*',/g, `version: '${version}',`))
.pipe(replace(/# vis Version [.0-9]+/g, `# vis Version ${version}`))
.pipe(replace(/# dev build [.0-9]+/g, '# dev build 0'))
.pipe(gulp.dest(`${srcDir}/www`)));
gulp.task('replace', gulp.series('replacePkg', 'replaceVis', 'replaceHtml'));
gulp.task('default', gulp.series('replace'));