ngx-translate-extract/src/cli/extract.ts

105 lines
3.4 KiB
TypeScript
Raw Normal View History

2016-12-10 06:13:18 +03:00
import { Extractor } from '../utils/extractor';
import { TranslationCollection } from '../utils/translation.collection';
2016-12-10 05:29:03 +03:00
import { ParserInterface } from '../parsers/parser.interface';
import { PipeParser } from '../parsers/pipe.parser';
import { DirectiveParser } from '../parsers/directive.parser';
import { ServiceParser } from '../parsers/service.parser';
2017-01-13 11:02:01 +03:00
import { CompilerInterface } from '../compilers/compiler.interface';
2016-12-10 05:29:03 +03:00
import { JsonCompiler } from '../compilers/json.compiler';
2017-01-13 11:02:01 +03:00
import { NamespacedJsonCompiler } from '../compilers/namespaced-json.compiler';
2016-12-10 05:29:03 +03:00
import { PoCompiler } from '../compilers/po.compiler';
import * as fs from 'fs';
import * as path from 'path';
import * as cli from 'cli';
const options = cli.parse({
dir: ['d', 'Path you would like to extract strings from', 'dir', process.env.PWD],
output: ['o', 'Path you would like to save extracted strings to', 'dir', process.env.PWD],
2017-01-13 11:02:01 +03:00
format: ['f', 'Output format', ['json', 'namespaced-json', 'pot'], 'json'],
2016-12-20 18:02:56 +03:00
replace: ['r', 'Replace the contents of output file if it exists (Merges by default)', 'boolean', false],
sort: ['s', 'Sort translations in the output file in alphabetical order', 'boolean', false],
2016-12-20 18:02:56 +03:00
clean: ['c', 'Remove obsolete strings when merging', 'boolean', false]
2016-12-10 05:29:03 +03:00
});
2017-01-13 11:02:01 +03:00
const patterns: string[] = [
'/**/*.html',
'/**/*.ts',
'/**/*.js'
];
const parsers: ParserInterface[] = [
new PipeParser(),
new DirectiveParser(),
new ServiceParser()
];
let compiler: CompilerInterface;
let ext: string;
switch (options.format) {
case 'pot':
compiler = new PoCompiler();
ext = 'pot';
break;
case 'json':
compiler = new JsonCompiler();
ext = 'json';
break;
case 'namespaced-json':
compiler = new NamespacedJsonCompiler();
ext = 'json';
break;
}
const normalizedDir: string = path.resolve(options.dir);
const normalizedOutput: string = path.resolve(options.output);
let outputDir: string = normalizedOutput;
2017-01-13 11:02:01 +03:00
let outputFilename: string = `template.${ext}`;
if (!fs.existsSync(normalizedOutput) || !fs.statSync(normalizedOutput).isDirectory()) {
outputDir = path.dirname(normalizedOutput);
outputFilename = path.basename(normalizedOutput);
}
const outputPath: string = path.join(outputDir, outputFilename);
[normalizedDir, outputDir].forEach(dir => {
if (!fs.existsSync(dir) || !fs.statSync(dir).isDirectory()) {
cli.fatal(`The path you supplied was not found: '${dir}'`);
2016-12-10 05:29:03 +03:00
}
});
try {
const extractor: Extractor = new Extractor(parsers, patterns);
cli.info(`Extracting strings from '${normalizedDir}'`);
2016-12-20 18:02:56 +03:00
const extracted: TranslationCollection = extractor.process(normalizedDir);
2016-12-10 05:29:03 +03:00
cli.ok(`* Extracted ${extracted.count()} strings`);
let collection: TranslationCollection = extracted;
if (!options.replace && fs.existsSync(outputPath)) {
const existing: TranslationCollection = compiler.parse(fs.readFileSync(outputPath, 'utf-8'));
if (existing.count() > 0) {
collection = extracted.union(existing);
2016-12-20 18:02:56 +03:00
cli.ok(`* Merged with ${existing.count()} existing strings`);
}
2016-12-10 05:29:03 +03:00
if (options.clean) {
const collectionCount = collection.count();
collection = collection.intersect(extracted);
const removeCount = collectionCount - collection.count();
if (removeCount > 0) {
2016-12-20 18:02:56 +03:00
cli.ok(`* Removed ${removeCount} obsolete strings`);
2016-12-10 05:29:03 +03:00
}
}
}
if (options.sort) {
collection = collection.sort();
}
fs.writeFileSync(outputPath, compiler.compile(collection));
cli.ok(`* Saved to '${outputPath}'`);
2016-12-10 05:29:03 +03:00
} catch (e) {
cli.fatal(e.toString());
}