forked from ksenmal/gulp-angular-translate-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
214 lines (195 loc) · 7.26 KB
/
index.js
File metadata and controls
214 lines (195 loc) · 7.26 KB
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
/* inspired by grunt-angular-translate
* https://github.com/angular-translate/grunt-angular-translate - grunt plugin
* Licensed under the MIT license.
*/
var through = require('through2'),
gutil = require('gulp-util'),
path = require('path'),
_ = require('lodash'),
fs = require('fs'),
stringify = require('json-stable-stringify'),
Translations = require('./lib/translations.js');
var _extractTranslation = function (regexName, regex, content, results) {
var r;
regex.lastIndex = 0;
while ((r = regex.exec(content)) !== null) {
// Result expected [STRING, KEY, SOME_REGEX_STUF]
// Except for plural hack [STRING, KEY, ARRAY_IN_STRING]
if (r.length >= 2) {
var translationKey, evalString;
var translationDefaultValue = "";
switch (regexName) {
case 'HtmlDirectivePluralFirst':
var tmp = r[1];
r[1] = r[2];
r[2] = tmp;
case 'HtmlDirectivePluralLast':
evalString = eval(r[2]);
if (_.isArray(evalString) && evalString.length >= 2) {
translationDefaultValue = "{NB, plural, one{" + evalString[0] + "} other{" + evalString[1] + "}" + (evalString[2] ? ' ' + evalString[2] : '');
}
translationKey = r[1].trim();
break;
default:
translationKey = r[1].trim();
}
// Avoid empty translation
if (translationKey === "") {
return;
}
switch (regexName) {
case "commentSimpleQuote":
case "HtmlFilterSimpleQuote":
case "JavascriptServiceSimpleQuote":
case "JavascriptServiceInstantSimpleQuote":
case "JavascriptFilterSimpleQuote":
case "HtmlNgBindHtml":
translationKey = translationKey.replace(/\\\'/g, "'");
break;
case "commentDoubleQuote":
case "HtmlFilterDoubleQuote":
case "JavascriptServiceDoubleQuote":
case "JavascriptServiceInstantDoubleQuote":
case "JavascriptFilterDoubleQuote":
translationKey = translationKey.replace(/\\\"/g, '"');
break;
}
results[translationKey] = translationDefaultValue;
}
}
};
var escapeRegExp = function (str) {
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
};
var customStringify = function (val, stringifyOptions) {
if (stringifyOptions) {
return stringify(val, _.isObject(stringifyOptions) ? stringifyOptions : {
space: ' ',
cmp: function (a, b) {
var lower = function (a) {
return a.toLowerCase();
};
return lower(a.key) < lower(b.key) ? -1 : 1;
}
});
}
return JSON.stringify(val, null, 4);
};
var mergeTranslations = function (results, lang, options) {
// Create translation object
var _translation = new Translations({
"safeMode": options.safeMode,
"tree": options.tree,
"nullEmpty": options.nullEmpty
}, results),
destFileName = options.dest + '/' + lang + '.json',
isDefaultLang = (options.defaultLang === lang),
translations = {},
json = {},
stats, statsString;
try {
var data = fs.readFileSync(destFileName);
json = JSON.parse(data);
translations = _translation.getMergedTranslations(Translations.flatten(json), isDefaultLang);
}
catch (err) {
translations = _translation.getMergedTranslations({}, isDefaultLang);
}
stats = _translation.getStats();
statsString = lang + " statistics: " +
" Updated: " + stats["updated"] +
" / Deleted: " + stats["deleted"] +
" / New: " + stats["new"];
gutil.log(statsString);
return translations;
};
function extract(options) {
options = _.assign({
startDelimiter: '{{',
endDelimiter: '}}',
defaultLang: 'en-US',
lang: ['en-US', 'ru-RU'],
dest: '.',
safeMode: false,
stringifyOptions: false
}, options);
var results = {}, firstFile,
regexs = {
commentSimpleQuote: '\\/\\*\\s*i18nextract\\s*\\*\\/\'((?:\\\\.|[^\'\\\\])*)\'',
commentDoubleQuote: '\\/\\*\\s*i18nextract\\s*\\*\\/"((?:\\\\.|[^"\\\\])*)"',
HtmlFilterSimpleQuote: escapeRegExp(options.startDelimiter) + '\\s*\'((?:\\\\.|[^\'\\\\])*)\'\\s*\\|\\s*translate(:.*?)?\\s*' + escapeRegExp(options.endDelimiter),
HtmlFilterDoubleQuote: escapeRegExp(options.startDelimiter) + '\\s*"((?:\\\\.|[^"\\\\\])*)"\\s*\\|\\s*translate(:.*?)?\\s*' + escapeRegExp(options.endDelimiter),
HtmlDirective: '<[^>]*translate[^{>]*>([^<]*)<\/[^>]*>',
HtmlDirectiveStandalone: 'translate="((?:\\\\.|[^"\\\\])*)"',
HtmlDirectivePluralLast: 'translate="((?:\\\\.|[^"\\\\])*)".*angular-plural-extract="((?:\\\\.|[^"\\\\])*)"',
HtmlDirectivePluralFirst: 'angular-plural-extract="((?:\\\\.|[^"\\\\])*)".*translate="((?:\\\\.|[^"\\\\])*)"',
HtmlNgBindHtml: 'ng-bind-html="\\s*\'((?:\\\\.|[^\'\\\\])*)\'\\s*\\|\\s*translate(:.*?)?\\s*"',
JavascriptServiceSimpleQuote: '\\$translate\\(\\s*\'((?:\\\\.|[^\'\\\\])*)\'[^\\)]*\\)',
JavascriptServiceDoubleQuote: '\\$translate\\(\\s*"((?:\\\\.|[^"\\\\])*)"[^\\)]*\\)',
JavascriptServiceInstantSimpleQuote: '\\$translate\\.instant\\(\\s*\'((?:\\\\.|[^\'\\\\])*)\'[^\\)]*\\)',
JavascriptServiceInstantDoubleQuote: '\\$translate\\.instant\\(\\s*"((?:\\\\.|[^"\\\\])*)"[^\\)]*\\)',
JavascriptFilterSimpleQuote: '\\$filter\\(\\s*\'translate\'\\s*\\)\\s*\\(\\s*\'((?:\\\\.|[^\'\\\\])*)\'[^\\)]*\\)',
JavascriptFilterDoubleQuote: '\\$filter\\(\\s*"translate"\\s*\\)\\s*\\(\\s*"((?:\\\\.|[^"\\\\\])*)"[^\\)]*\\)'
};
// gulp-related
return through.obj(function (file, enc, cb) {
if (file.isNull()) { // ignore empty files
cb();
return;
}
if (file.isStream()) {
cb();
return;
}
if (!firstFile) {
firstFile = file;
}
var content = file.contents.toString(), _regex;
for (var i in regexs) {
_regex = new RegExp(regexs[i], "gi");
switch (i) {
// Case filter HTML simple/double quoted
case "HtmlFilterSimpleQuote":
case "HtmlFilterDoubleQuote":
case "HtmlDirective":
case "HtmlDirectivePluralLast":
case "HtmlDirectivePluralFirst":
case "JavascriptFilterSimpleQuote":
case "JavascriptFilterDoubleQuote":
// Match all occurences
var matches = content.match(_regex);
if (_.isArray(matches) && matches.length) {
// Through each matches, we'll execute regex to get translation key
for (var index in matches) {
if (matches[index] !== "") {
_extractTranslation(i, _regex, matches[index], results);
}
}
}
break;
// Others regex
default:
_extractTranslation(i, _regex, content, results);
}
}
cb();
}, function (cb) {
if (!firstFile) {
cb();
return;
}
var _this = this,
translations = {};
options.lang.forEach(function (lang) {
translations = mergeTranslations(results, lang, options);
_this.push(new gutil.File({
cwd: firstFile.cwd,
base: firstFile.base,
path: path.join(firstFile.base, lang + '.json'),
contents: new Buffer(customStringify(translations, options.stringifyOptions))
}));
});
cb();
});
}
module.exports = extract;