-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.js
executable file
·567 lines (468 loc) · 16.9 KB
/
index.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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
'use strict';
const fs = require('fs');
const path = require('path');
const _chalk = require('chalk');
const globby = require('globby');
const BabelParser = require('@babel/parser');
const traverse = require('@babel/traverse').default;
const Glimmer = require('@glimmer/syntax');
const Emblem = require('emblem').default;
const YAML = require('yaml');
const DEFAULT_EXTENSIONS = ['.js', '.hbs', '.emblem', '.gjs'];
const { Preprocessor } = require('content-tag');
let contentTag = new Preprocessor();
async function run(rootDir, options = {}) {
let log = options.log || console.log;
let writeToFile = options.writeToFile || fs.writeFileSync;
let shouldFix = options.fix || false;
let chalkOptions = {};
if (options.color === false) {
chalkOptions.level = 0;
}
let chalk = new _chalk.Instance(chalkOptions);
const NUM_STEPS = 4;
const step = num => chalk.dim(`[${num}/${NUM_STEPS}]`);
let config = options.config || readConfig(rootDir);
let analyzeConcatExpression = options.analyzeConcatExpression || config.analyzeConcatExpression;
let userPlugins = config.babelParserPlugins || [];
let userExtensions = config.extensions || [];
let customHelpers = config.helpers || [];
let includeGtsExtension = userExtensions.includes('.gts');
userExtensions = userExtensions.map(extension =>
extension.startsWith('.') ? extension : `.${extension}`
);
let analyzeOptions = {
analyzeConcatExpression,
userPlugins,
userExtensions,
includeGtsExtension,
helpers: customHelpers,
};
log(`${step(1)} 🔍 Finding JS and HBS files...`);
let appFiles = await findAppFiles(rootDir, userExtensions);
let inRepoFiles = await findInRepoFiles(rootDir, userExtensions);
let files = [...appFiles, ...inRepoFiles];
log(`${step(2)} 🔍 Searching for translations keys in JS and HBS files...`);
let usedTranslationKeys = await analyzeFiles(rootDir, files, analyzeOptions);
log(`${step(3)} ⚙️ Checking for unused translations...`);
let ownTranslationFiles = await findOwnTranslationFiles(rootDir, config);
let externalTranslationFiles = await findExternalTranslationFiles(rootDir, config);
let existingOwnTranslationKeys = await analyzeTranslationFiles(rootDir, ownTranslationFiles);
let existingExternalTranslationKeys = await analyzeTranslationFiles(
rootDir,
externalTranslationFiles
);
let existingTranslationKeys = mergeMaps(
existingOwnTranslationKeys,
existingExternalTranslationKeys
);
let whitelist = config.whitelist || [];
let usedWhitelistEntries = new Set();
let errorOnUnusedWhitelistEntries = config.errorOnUnusedWhitelistEntries || false;
let unusedTranslations = findDifferenceInTranslations(
existingOwnTranslationKeys,
usedTranslationKeys,
whitelist,
usedWhitelistEntries
);
log(`${step(4)} ⚙️ Checking for missing translations...`);
log();
let missingTranslations = findDifferenceInTranslations(
usedTranslationKeys,
existingTranslationKeys,
whitelist,
usedWhitelistEntries
);
let unusedWhitelistEntries = new Set(whitelist);
for (let entry of usedWhitelistEntries) {
unusedWhitelistEntries.delete(entry);
}
if (unusedTranslations.size === 0) {
log(' 👏 No unused translations were found!');
} else {
log(` ⚠️ Found ${chalk.bold.yellow(unusedTranslations.size)} unused translations!`);
if (!shouldFix) {
log(' You can use --fix to remove all unused translations.');
}
log();
for (let [key, files] of unusedTranslations) {
log(` - ${key} ${chalk.dim(`(used in ${generateFileList(files)})`)}`);
}
}
log();
if (missingTranslations.size === 0) {
log(' 👏 No missing translations were found!');
} else {
log(` ⚠️ Found ${chalk.bold.yellow(missingTranslations.size)} missing translations!`);
log();
for (let [key, files] of missingTranslations) {
log(` - ${key} ${chalk.dim(`(used in ${generateFileList(files)})`)}`);
}
}
if (unusedWhitelistEntries.size > 0) {
log();
log(
` ⚠️ Found ${chalk.bold.yellow(unusedWhitelistEntries.size)} unused whitelist ${
unusedWhitelistEntries.size === 1 ? 'entry' : 'entries'
}! Please remove ${unusedWhitelistEntries.size === 1 ? 'it' : 'them'} from the whitelist:`
);
log();
for (let entry of unusedWhitelistEntries) {
log(` - ${entry}`);
}
}
let totalErrors =
missingTranslations.size +
unusedTranslations.size +
(errorOnUnusedWhitelistEntries ? unusedWhitelistEntries.size : 0);
if (shouldFix) {
removeUnusedTranslations(writeToFile, rootDir, ownTranslationFiles, unusedTranslations);
log();
log(' 👏 All unused translations were removed');
}
return totalErrors > 0 && !shouldFix ? 1 : 0;
}
function readConfig(cwd) {
let configPath = `${cwd}/config/ember-intl-analyzer.js`;
let config = {};
if (fs.existsSync(configPath)) {
let requireESM = require('esm')(module, { cjs: { dedefault: true } });
config = requireESM(configPath);
}
return config;
}
async function findAppFiles(cwd, userExtensions) {
let extensions = [...DEFAULT_EXTENSIONS, ...userExtensions];
let pathsWithExtensions = extensions.map(extension => 'app/**/*' + extension);
return globby(pathsWithExtensions, { cwd });
}
async function findInRepoFiles(cwd, userExtensions) {
let inRepoPaths = findInRepoPaths(cwd);
let inRepoFolders = joinPaths(inRepoPaths, ['addon', 'app']);
let extensions = [...DEFAULT_EXTENSIONS, ...userExtensions];
let pathsWithExtensions = extensions.map(extension => `**/*${extension}`);
return globby(joinPaths(inRepoFolders, pathsWithExtensions), { cwd });
}
async function findOwnTranslationFiles(cwd, config) {
return findTranslationFiles(cwd, ['', ...findInRepoPaths(cwd)], config);
}
async function findExternalTranslationFiles(cwd, config) {
if (!config.externalPaths) {
return [];
}
return findTranslationFiles(cwd, joinPaths('node_modules', config.externalPaths), config);
}
async function findTranslationFiles(cwd, inputFolders, config) {
let translationPaths = joinPaths(inputFolders, ['translations']);
return globby(
joinPaths(translationPaths, config.translationFiles || ['**/*.json', '**/*.yaml', '**/*.yml']),
{
cwd,
}
);
}
function findInRepoPaths(cwd) {
let pkgJSONPath = path.join(cwd, 'package.json');
if (!fs.existsSync(pkgJSONPath)) return [];
let pkgJSON = JSON.parse(fs.readFileSync(path.join(cwd, 'package.json')));
let inRepoPaths = pkgJSON && pkgJSON['ember-addon'] && pkgJSON['ember-addon']['paths'];
return inRepoPaths || [];
}
function joinPaths(inputPathOrPaths, outputPaths) {
if (Array.isArray(inputPathOrPaths)) {
return inputPathOrPaths.map(inputPath => joinPaths(inputPath, outputPaths)).flat();
} else {
return outputPaths.map(directory => path.join(inputPathOrPaths, directory));
}
}
async function analyzeFiles(cwd, files, options) {
let allTranslationKeys = new Map();
for (let file of files) {
let translationKeys = await analyzeFile(cwd, file, options);
for (let key of translationKeys) {
if (allTranslationKeys.has(key)) {
allTranslationKeys.get(key).add(file);
} else {
allTranslationKeys.set(key, new Set([file]));
}
}
}
return allTranslationKeys;
}
async function analyzeFile(cwd, file, options) {
let content = fs.readFileSync(`${cwd}/${file}`, 'utf8');
let extension = path.extname(file).toLowerCase();
let { includeGtsExtension } = options;
if ('.gjs' === extension || (includeGtsExtension && '.gts' === extension)) {
return analyzeGJSFile(content, options);
} else if (['.js', ...options.userExtensions].includes(extension)) {
return analyzeJsFile(content, options.userPlugins);
} else if (extension === '.hbs') {
return analyzeHbsFile(content, options);
} else if (extension === '.emblem') {
let hbs = Emblem.compile(content, { quiet: true });
return analyzeHbsFile(hbs, options);
} else {
throw new Error(`Unknown extension: ${extension} (${file})`);
}
}
async function analyzeGJSFile(gjsGtsContent, options) {
const jsTsContent = contentTag.process(gjsGtsContent);
const ast = BabelParser.parse(jsTsContent, {
sourceType: 'module',
plugins: [
'decorators-legacy',
'dynamicImport',
'classProperties',
'classStaticBlock',
...options.userPlugins,
],
});
let templates = [];
traverse(ast, {
CallExpression(path) {
const { node } = path;
let { callee } = node;
if (callee.name !== 'template') {
return;
}
const callScopeBinding = path.scope.getBinding('template');
if (
callScopeBinding.kind === 'module' &&
callScopeBinding.path.parent.source.value === '@ember/template-compiler'
) {
const { start, end } = node.arguments[0];
const templateContent = jsTsContent.substring(start + 1, end - 1);
templates.push(templateContent);
}
},
});
const keysFromJs = await analyzeJsFile(jsTsContent, options.userPlugins);
let keysFromHbs = [];
for (let template of templates) {
let keys = await analyzeHbsFile(template, options);
keysFromHbs = [...keysFromHbs, ...keys];
}
return new Set([...keysFromJs, ...keysFromHbs]);
}
async function analyzeJsFile(content, userPlugins) {
let translationKeys = new Set();
// parse the JS file
let ast = BabelParser.parse(content, {
sourceType: 'module',
plugins: ['decorators-legacy', 'dynamicImport', 'classProperties', ...userPlugins],
});
// find translation keys in the syntax tree
traverse(ast, {
CallExpression({ node }) {
let { callee } = node;
if (node.arguments.length === 0) return;
if (callee.type === 'MemberExpression') {
// handle this.intl.t('foo') case
if (callee.property.type !== 'Identifier') return;
if (callee.property.name !== 't') return;
} else if (callee.type === 'Identifier') {
// handle t('foo') case
if (callee.name !== 't') return;
} else return;
let firstParam = node.arguments[0];
if (firstParam.type === 'StringLiteral') {
translationKeys.add(firstParam.value);
} else if (firstParam.type === 'ConditionalExpression') {
if (firstParam.alternate.type === 'StringLiteral') {
translationKeys.add(firstParam.alternate.value);
}
if (firstParam.consequent.type === 'StringLiteral') {
translationKeys.add(firstParam.consequent.value);
}
}
},
});
return translationKeys;
}
async function analyzeHbsFile(content, { analyzeConcatExpression = false, helpers = [] }) {
let translationKeys = new Set();
// parse the HBS file
let ast = Glimmer.preprocess(content);
function findKeysInIfExpression(node) {
let keysInFirstParam = findKeysInNode(node.params[1]);
let keysInSecondParam = node.params.length > 2 ? findKeysInNode(node.params[2]) : [''];
return [...keysInFirstParam, ...keysInSecondParam];
}
function findKeysInConcatExpression(node) {
let potentialKeys = [''];
for (let param of node.params) {
let keysInParam = findKeysInNode(param);
if (keysInParam.length === 0) return [];
potentialKeys = potentialKeys.reduce((newPotentialKeys, potentialKey) => {
for (let key of keysInParam) {
newPotentialKeys.push(potentialKey + key);
}
return newPotentialKeys;
}, []);
}
return potentialKeys;
}
function findKeysInNode(node) {
if (!node) return [];
if (node.type === 'StringLiteral') {
return [node.value];
} else if (node.type === 'SubExpression' && node.path.original === 'if') {
return findKeysInIfExpression(node);
} else if (
analyzeConcatExpression &&
node.type === 'SubExpression' &&
node.path.original === 'concat'
) {
return findKeysInConcatExpression(node);
}
return [];
}
function processNode(node, helpers) {
let pathNames = ['t', ...helpers];
if (node.path.type !== 'PathExpression') return;
if (!pathNames.includes(node.path.original)) return;
if (node.params.length === 0) return;
for (let key of findKeysInNode(node.params[0])) {
translationKeys.add(key);
}
}
// find translation keys in the syntax tree
Glimmer.traverse(ast, {
// handle {{t "foo"}} case
MustacheStatement(node) {
processNode(node, helpers);
},
// handle {{some-component foo=(t "bar")}} case
SubExpression(node) {
processNode(node, helpers);
},
});
return translationKeys;
}
async function analyzeTranslationFiles(cwd, files) {
let existingTranslationKeys = new Map();
for (let file of files) {
let content = fs.readFileSync(`${cwd}/${file}`, 'utf8');
let translations = YAML.parse(content); // json is valid yaml
forEachTranslation(translations, key => {
if (!existingTranslationKeys.has(key)) {
existingTranslationKeys.set(key, new Set());
}
existingTranslationKeys.get(key).add(file);
});
}
return existingTranslationKeys;
}
function forEachTranslation(json, callback, prefix = '') {
for (let key of Object.keys(json)) {
let fullKey = prefix + key;
let value = json[key];
let typeOfValue = typeof value;
if (typeOfValue === 'string') {
callback(fullKey, value);
} else if (typeOfValue === 'object') {
forEachTranslation(value, callback, `${fullKey}.`);
} else {
throw new Error(`Unknown value type: ${typeOfValue} (for ${fullKey})`);
}
}
}
// Find all translation keys that appear in translation map A, but not
// in translation map B
function findDifferenceInTranslations(mapA, mapB, whitelist, usedWhitelistEntries) {
let missingTranslations = new Map();
for (let [key, files] of mapA) {
const keyTrimmed = key.trim();
const isKeyMissing = !mapB.has(keyTrimmed);
if (!isKeyMissing) continue;
const whitelistKey = whitelist.find(regex => regex.test(keyTrimmed));
const isKeyWhitelisted = whitelistKey != null;
if (isKeyWhitelisted) {
usedWhitelistEntries.add(whitelistKey);
} else {
missingTranslations.set(keyTrimmed, files);
}
}
return missingTranslations;
}
function generateFileList(files) {
let filesWithoutPrefix = Array.from(files)
.map(file => (file.startsWith('translations/') ? file.substring(13) : file))
.sort();
if (filesWithoutPrefix.length === 0) {
throw new Error('Unexpected empty file list');
} else if (filesWithoutPrefix.length === 1) {
return filesWithoutPrefix[0];
} else if (filesWithoutPrefix.length === 2) {
return `${filesWithoutPrefix[0]} and ${filesWithoutPrefix[1]}`;
} else {
let lastFile = filesWithoutPrefix.pop();
return `${filesWithoutPrefix.join(', ')} and ${lastFile}`;
}
}
function removeUnusedTranslations(writeToFile, cwd, files, unusedTranslations) {
for (let file of files) {
let translationsToRemove = [];
for (let [key, files] of unusedTranslations) {
if (files.has(file)) {
translationsToRemove.push(key);
}
}
let content = fs.readFileSync(`${cwd}/${file}`, 'utf8');
let translations = YAML.parse(content); // json is valid yaml
translationsToRemove.forEach(translation => {
if (translations[translation]) {
delete translations[translation];
} else {
deleteNestedTranslation(translations, translation, true);
}
});
let updatedTranslations;
if (file.includes('.json')) {
updatedTranslations = JSON.stringify(translations, null, 2);
}
if (file.includes('.yaml') || file.includes('.yml')) {
updatedTranslations = YAML.stringify(translations);
}
writeToFile(`${cwd}/${file}`, updatedTranslations, 'utf-8');
}
}
function deleteNestedTranslation(file, translationKey, isFullPath = false) {
let objectKeys = translationKey.split('.');
let attributeKey = objectKeys[objectKeys.length - 1];
let translationParentKeys = objectKeys.slice(0, -1);
let translationParent = translationParentKeys.length
? getNestedAttribute(file, translationParentKeys)
: file;
//Check if this object has another translations if not delete the key.
if (Object.keys(translationParent[attributeKey]).length === 0 || isFullPath) {
delete translationParent[attributeKey];
if (objectKeys.length > 0 && translationParentKeys.length > 0) {
let parentKey = translationParentKeys.join('.');
//continue to travel up parents to remove empty translation key objects.
deleteNestedTranslation(file, parentKey);
}
}
}
function getNestedAttribute(parent, keys) {
let attribute = parent[keys[0]];
if (keys.length > 1) {
let childKeys = keys.slice(1);
return getNestedAttribute(attribute, childKeys);
}
return attribute;
}
function mergeMaps(mapA, mapB) {
let resultMap = new Map([...mapA]);
for (let [key, bFiles] of mapB) {
if (!resultMap.has(key)) {
resultMap.set(key, bFiles);
} else {
let aFiles = resultMap.get(key);
resultMap.set(key, new Set([...aFiles, ...bFiles]));
}
}
return resultMap;
}
module.exports = { run, generateFileList };