| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- const fs = require('fs');
- const path = require('path');
- const util = require('util');
- const gutil = require('gulp-util');
- const through = require('through2');
- const yaml = require('js-yaml');
- const readFile = util.promisify(fs.readFile);
- const readdir = util.promisify(fs.readdir);
- const transformers = {
- '.yml': data => yaml.safeLoad(data),
- '.json': data => JSON.parse(data),
- };
- class Locale {
- constructor(lang, basepath, basedir) {
- this.defaultLocale = 'messages.yml';
- this.lang = lang;
- this.basepath = basepath;
- this.basedir = basedir || '.';
- this.data = {};
- }
- load() {
- const localeDir = `${this.basedir}/${this.basepath}`;
- const data = {};
- return readdir(localeDir)
- .then(files => [this.defaultLocale].concat(files.filter(file => file !== this.defaultLocale)))
- .then(files => files.reduce((promise, file) => promise.then(() => {
- const ext = path.extname(file);
- const transformer = transformers[ext];
- if (transformer) {
- return readFile(`${localeDir}/${file}`, 'utf8')
- .then(res => { Object.assign(data, transformer(res)); }, err => {});
- }
- }), Promise.resolve()))
- .then(() => Object.keys(data).reduce((desc, key) => {
- this.data[key] = data[key].message;
- desc[key] = desc[key] || data[key].description;
- return desc;
- }, {}));
- }
- get(key, def) {
- return this.data[key] || def;
- }
- dump(data, ext) {
- if (ext === '.json') {
- data = JSON.stringify(data, null, 2);
- } else if (ext === '.yml') {
- data = yaml.safeDump(data);
- } else {
- throw 'Unknown extension name!';
- }
- return {
- path: `${this.basepath}/messages${ext}`,
- data,
- };
- }
- }
- class Locales {
- constructor(prefix, base) {
- this.defaultLang = 'en';
- this.newLocaleItem = 'NEW_LOCALE_ITEM';
- this.prefix = prefix || '.';
- this.base = base || '.';
- this.langs = [];
- this.data = {};
- this.desc = {};
- }
- getLanguages() {
- const localeDir = this.base + '/' + this.prefix;
- return new Promise((resolve, reject) => {
- fs.readdir(localeDir, (err, files) => err ? reject(err) : resolve(files));
- });
- }
- load() {
- return readdir(`${this.base}/${this.prefix}`)
- .then(langs => {
- this.langs = langs;
- return Promise.all(langs.map(lang => {
- const locale = this.data[lang] = new Locale(lang, `${this.prefix}/${lang}`, this.base);
- return locale.load();
- }));
- })
- .then(data => {
- const desc = data[this.langs.indexOf(this.defaultLang)];
- Object.keys(desc).forEach(key => {
- this.desc[key] = {
- touched: false,
- value: desc[key],
- };
- });
- });
- }
- getData(lang, options) {
- options = options || {};
- const data = {};
- const langData = this.data[lang];
- const defaultData = options.useDefaultLang && lang != this.defaultLang && this.data[this.defaultLang];
- Object.keys(this.desc).forEach(key => {
- if (options.touchedOnly && !this.desc[key].touched) return;
- data[key] = {
- description: this.desc[key].value || this.newLocaleItem,
- message: langData.get(key) || defaultData && defaultData.get(key) || '',
- };
- if (options.markUntouched && !this.desc[key].touched) data[key].touched = false;
- });
- return data;
- }
- dump(options) {
- return this.langs.map(lang => {
- const data = this.getData(lang, options);
- const locale = this.data[lang];
- const out = locale.dump(data, options.extension);
- return new gutil.File({
- base: '',
- path: out.path,
- contents: new Buffer(out.data),
- });
- });
- }
- touch(key) {
- let item = this.desc[key];
- if (!item) item = this.desc[key] = {
- value: this.newLocaleItem,
- };
- item.touched = true;
- }
- }
- function extract(options) {
- const keys = new Set();
- const patterns = {
- default: ['\\bi18n\\(\'(\\w+)\'', 1],
- json: ['__MSG_(\\w+)__', 1],
- };
- const types = {
- '.js': 'default',
- '.json': 'json',
- '.html': 'default',
- '.vue': 'default',
- };
- const locales = new Locales(options.prefix, options.base);
- function extract(data, types) {
- if (!Array.isArray(types)) types = [types];
- data = String(data);
- types.forEach(function (type) {
- const patternData = patterns[type];
- const pattern = new RegExp(patternData[0], 'g');
- const groupId = patternData[1];
- let groups;
- while (groups = pattern.exec(data)) {
- keys.add(groups[groupId]);
- }
- });
- }
- function bufferContents(file, enc, cb) {
- if (file.isNull()) return cb();
- if (file.isStream()) return this.emit('error', new gutil.PluginError('VM-i18n', 'Stream is not supported.'));
- const extname = path.extname(file.path);
- const type = types[extname];
- type && extract(file.contents, type);
- cb();
- }
- function endStream(cb) {
- locales.load()
- .then(() => {
- keys.forEach(key => {
- locales.touch(key);
- });
- return locales.dump({
- touchedOnly: options.touchedOnly,
- useDefaultLang: options.useDefaultLang,
- markUntouched: options.markUntouched,
- extension: options.extension,
- });
- })
- .then(files => {
- files.forEach(file => {
- this.push(file);
- });
- cb();
- })
- .catch(cb);
- }
- return through.obj(bufferContents, endStream);
- }
- module.exports = {
- extract,
- };
|