i18n.ts 36.9 KB
Newer Older
D
Dirk Baeumer 已提交
1 2 3 4 5 6 7 8
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import * as path from 'path';
import * as fs from 'fs';

D
Dirk Baeumer 已提交
9
import { through, readable, ThroughStream } from 'event-stream';
D
Dirk Baeumer 已提交
10 11
import File = require('vinyl');
import * as Is from 'is';
12
import * as xml2js from 'xml2js';
13
import * as glob from 'glob';
14
import * as https from 'https';
D
Dirk Baeumer 已提交
15
import * as gulp from 'gulp';
D
Dirk Baeumer 已提交
16 17

var util = require('gulp-util');
18
var iconv = require('iconv-lite');
J
Joao Moreno 已提交
19

20 21
const NUMBER_OF_CONCURRENT_DOWNLOADS = 1;

D
Dirk Baeumer 已提交
22
function log(message: any, ...rest: any[]): void {
J
Joao Moreno 已提交
23
	util.log(util.colors.green('[i18n]'), message, ...rest);
D
Dirk Baeumer 已提交
24 25
}

D
Dirk Baeumer 已提交
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
export interface Language {
	id: string; // laguage id, e.g. zh-tw, de
	transifexId?: string; // language id used in transifex, e.g zh-hant, de (optional, if not set, the id is used)
	folderName?: string; // language specific folder name, e.g. cht, deu  (optional, if not set, the id is used)
}

export interface InnoSetup {
	codePage: string; //code page for encoding (http://www.jrsoftware.org/ishelp/index.php?topic=langoptionssection)
	defaultInfo?: {
		name: string; // inno setup language name
		id: string; // locale identifier (https://msdn.microsoft.com/en-us/library/dd318693.aspx)
	};
}

export const defaultLanguages: Language[] = [
	{ id: 'zh-tw', folderName: 'cht', transifexId: 'zh-hant' },
	{ id: 'zh-cn', folderName: 'chs', transifexId: 'zh-hans' },
	{ id: 'ja', folderName: 'jpn' },
	{ id: 'ko', folderName: 'kor' },
	{ id: 'de', folderName: 'deu' },
	{ id: 'fr', folderName: 'fra' },
	{ id: 'es', folderName: 'esn' },
	{ id: 'ru', folderName: 'rus' },
	{ id: 'it', folderName: 'ita' }
];

// languages requested by the community to non-stable builds
export const extraLanguages: Language[] = [
	{ id: 'pt-br', folderName: 'ptb' },
	{ id: 'hu', folderName: 'hun' },
	{ id: 'tr', folderName: 'trk' }
];

export const pseudoLanguage: Language = { id: 'pseudo', folderName: 'pseudo', transifexId: 'pseudo' };

D
Dirk Baeumer 已提交
61 62 63 64
interface Map<V> {
	[key: string]: V;
}

65 66 67 68 69 70
interface Item {
	id: string;
	message: string;
	comment: string;
}

71
export interface Resource {
72 73 74 75
	name: string;
	project: string;
}

76 77 78 79 80 81
interface ParsedXLF {
	messages: Map<string>;
	originalFilePath: string;
	language: string;
}

D
Dirk Baeumer 已提交
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
interface LocalizeInfo {
	key: string;
	comment: string[];
}

module LocalizeInfo {
	export function is(value: any): value is LocalizeInfo {
		let candidate = value as LocalizeInfo;
		return Is.defined(candidate) && Is.string(candidate.key) && (Is.undef(candidate.comment) || (Is.array(candidate.comment) && candidate.comment.every(element => Is.string(element))));
	}
}

interface BundledFormat {
	keys: Map<(string | LocalizeInfo)[]>;
	messages: Map<string[]>;
	bundles: Map<string[]>;
}

module BundledFormat {
	export function is(value: any): value is BundledFormat {
		if (Is.undef(value)) {
			return false;
		}

		let candidate = value as BundledFormat;
		let length = Object.keys(value).length;

		return length === 3 && Is.defined(candidate.keys) && Is.defined(candidate.messages) && Is.defined(candidate.bundles);
	}
}

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
interface ValueFormat {
	message: string;
	comment: string[];
}

interface PackageJsonFormat {
	[key: string]: string | ValueFormat;
}

module PackageJsonFormat {
	export function is(value: any): value is PackageJsonFormat {
		if (Is.undef(value) || !Is.object(value)) {
			return false;
		}
		return Object.keys(value).every(key => {
			let element = value[key];
			return Is.string(element) || (Is.object(element) && Is.defined(element.message) && Is.defined(element.comment));
		});
	}
}

interface ModuleJsonFormat {
	messages: string[];
	keys: (string | LocalizeInfo)[];
}

module ModuleJsonFormat {
	export function is(value: any): value is ModuleJsonFormat {
		let candidate = value as ModuleJsonFormat;
		return Is.defined(candidate)
			&& Is.array(candidate.messages) && candidate.messages.every(message => Is.string(message))
			&& Is.array(candidate.keys) && candidate.keys.every(key => Is.string(key) || LocalizeInfo.is(key));
	}
}

D
Dirk Baeumer 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161
interface BundledExtensionHeaderFormat {
	id: string;
	type: string;
	hash: string;
	outDir: string;
}

interface BundledExtensionFormat {
	[key: string]: {
		messages: string[];
		keys: (string | LocalizeInfo)[];
	};
}

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
export class Line {
	private buffer: string[] = [];

	constructor(private indent: number = 0) {
		if (indent > 0) {
			this.buffer.push(new Array(indent + 1).join(' '));
		}
	}

	public append(value: string): Line {
		this.buffer.push(value);
		return this;
	}

	public toString(): string {
		return this.buffer.join('');
	}
}

class TextModel {
	private _lines: string[];

	constructor(contents: string) {
		this._lines = contents.split(/\r\n|\r|\n/);
	}

	public get lines(): string[] {
		return this._lines;
	}
}

export class XLF {
J
Joao Moreno 已提交
194
	private buffer: string[];
195 196
	private files: Map<Item[]>;

J
Joao Moreno 已提交
197 198
	constructor(public project: string) {
		this.buffer = [];
199 200 201
		this.files = Object.create(null);
	}

J
Joao Moreno 已提交
202 203
	public toString(): string {
		this.appendHeader();
204 205 206 207 208 209

		for (let file in this.files) {
			this.appendNewLine(`<file original="${file}" source-language="en" datatype="plaintext"><body>`, 2);
			for (let item of this.files[file]) {
				this.addStringItem(item);
			}
J
Joao Moreno 已提交
210
			this.appendNewLine('</body></file>', 2);
211 212 213 214 215 216
		}

		this.appendFooter();
		return this.buffer.join('\r\n');
	}

D
Dirk Baeumer 已提交
217 218 219 220
	public addFile(original: string, keys: (string | LocalizeInfo)[], messages: string[]) {
		if (keys.length !== messages.length) {
			throw new Error(`Unmatching keys(${keys.length}) and messages(${messages.length}).`);
		}
221
		this.files[original] = [];
D
Dirk Baeumer 已提交
222 223 224 225 226
		let existingKeys = new Set<string>();
		for (let i = 0; i < keys.length; i++) {
			let key = keys[i];
			let realKey: string;
			let comment: string;
227
			if (Is.string(key)) {
D
Dirk Baeumer 已提交
228 229 230 231 232 233
				realKey = key;
				comment = undefined;
			} else if (LocalizeInfo.is(key)) {
				realKey = key.key;
				if (key.comment && key.comment.length > 0) {
					comment = key.comment.map(comment => encodeEntities(comment)).join('\r\n');
234 235
				}
			}
D
Dirk Baeumer 已提交
236 237 238 239 240 241
			if (!realKey || existingKeys.has(realKey)) {
				continue;
			}
			existingKeys.add(realKey);
			let message: string = encodeEntities(messages[i]);
			this.files[original].push({ id: realKey, message: message, comment: comment });
242 243 244
		}
	}

J
Joao Moreno 已提交
245 246
	private addStringItem(item: Item): void {
		if (!item.id || !item.message) {
D
Dirk Baeumer 已提交
247
			throw new Error(`No item ID or value specified: ${JSON.stringify(item)}`);
J
Joao Moreno 已提交
248
		}
249

J
Joao Moreno 已提交
250 251
		this.appendNewLine(`<trans-unit id="${item.id}">`, 4);
		this.appendNewLine(`<source xml:lang="en">${item.message}</source>`, 6);
252

J
Joao Moreno 已提交
253 254 255
		if (item.comment) {
			this.appendNewLine(`<note>${item.comment}</note>`, 6);
		}
256

J
Joao Moreno 已提交
257
		this.appendNewLine('</trans-unit>', 4);
258 259
	}

J
Joao Moreno 已提交
260 261 262
	private appendHeader(): void {
		this.appendNewLine('<?xml version="1.0" encoding="utf-8"?>', 0);
		this.appendNewLine('<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">', 0);
263 264
	}

J
Joao Moreno 已提交
265 266 267
	private appendFooter(): void {
		this.appendNewLine('</xliff>', 0);
	}
268

J
Joao Moreno 已提交
269 270 271 272 273
	private appendNewLine(content: string, indent?: number): void {
		let line = new Line(indent);
		line.append(content);
		this.buffer.push(line.toString());
	}
274

J
Joao Moreno 已提交
275
	static parse = function (xlfString: string): Promise<ParsedXLF[]> {
276 277 278 279 280
		return new Promise((resolve, reject) => {
			let parser = new xml2js.Parser();

			let files: { messages: Map<string>, originalFilePath: string, language: string }[] = [];

J
Joao Moreno 已提交
281
			parser.parseString(xlfString, function (err, result) {
282
				if (err) {
D
Dirk Baeumer 已提交
283
					reject(new Error(`XLF parsing error: Failed to parse XLIFF string. ${err}`));
284 285 286 287
				}

				const fileNodes: any[] = result['xliff']['file'];
				if (!fileNodes) {
D
Dirk Baeumer 已提交
288
					reject(new Error(`XLF parsing error: XLIFF file does not contain "xliff" or "file" node(s) required for parsing.`));
289 290 291 292 293
				}

				fileNodes.forEach((file) => {
					const originalFilePath = file.$.original;
					if (!originalFilePath) {
D
Dirk Baeumer 已提交
294
						reject(new Error(`XLF parsing error: XLIFF file node does not contain original attribute to determine the original location of the resource file.`));
295
					}
D
Dirk Baeumer 已提交
296
					const language = file.$['target-language'];
297
					if (!language) {
D
Dirk Baeumer 已提交
298
						reject(new Error(`XLF parsing error: XLIFF file node does not contain target-language attribute to determine translated language.`));
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
					}

					let messages: Map<string> = {};
					const transUnits = file.body[0]['trans-unit'];

					transUnits.forEach(unit => {
						const key = unit.$.id;
						if (!unit.target) {
							return; // No translation available
						}

						const val = unit.target.toString();
						if (key && val) {
							messages[key] = decodeEntities(val);
						} else {
D
Dirk Baeumer 已提交
314
							reject(new Error(`XLF parsing error: XLIFF file does not contain full localization data. ID or target translation for one of the trans-unit nodes is not present.`));
315 316 317
						}
					});

D
Dirk Baeumer 已提交
318
					files.push({ messages: messages, originalFilePath: originalFilePath, language: language.toLowerCase() });
319 320 321 322 323 324 325 326
				});

				resolve(files);
			});
		});
	};
}

327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
export interface ITask<T> {
	(): T;
}

interface ILimitedTaskFactory<T> {
	factory: ITask<Promise<T>>;
	c: (value?: T | Thenable<T>) => void;
	e: (error?: any) => void;
}

export class Limiter<T> {
	private runningPromises: number;
	private outstandingPromises: ILimitedTaskFactory<any>[];

	constructor(private maxDegreeOfParalellism: number) {
		this.outstandingPromises = [];
		this.runningPromises = 0;
	}

	queue(factory: ITask<Promise<T>>): Promise<T> {
		return new Promise<T>((c, e) => {
D
Dirk Baeumer 已提交
348
			this.outstandingPromises.push({ factory, c, e });
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
			this.consume();
		});
	}

	private consume(): void {
		while (this.outstandingPromises.length && this.runningPromises < this.maxDegreeOfParalellism) {
			const iLimitedTask = this.outstandingPromises.shift();
			this.runningPromises++;

			const promise = iLimitedTask.factory();
			promise.then(iLimitedTask.c).catch(iLimitedTask.e);
			promise.then(() => this.consumed()).catch(() => this.consumed());
		}
	}

	private consumed(): void {
		this.runningPromises--;
		this.consume();
	}
}

D
Dirk Baeumer 已提交
370 371 372
function sortLanguages(languages: Language[]): Language[] {
	return languages.sort((a: Language, b: Language): number => {
		return a.id < b.id ? -1 : (a.id > b.id ? 1 : 0);
D
Dirk Baeumer 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
	});
}

function stripComments(content: string): string {
	/**
	* First capturing group matches double quoted string
	* Second matches single quotes string
	* Third matches block comments
	* Fourth matches line comments
	*/
	var regexp: RegExp = /("(?:[^\\\"]*(?:\\.)?)*")|('(?:[^\\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;
	let result = content.replace(regexp, (match, m1, m2, m3, m4) => {
		// Only one of m1, m2, m3, m4 matches
		if (m3) {
			// A block comment. Replace with nothing
			return '';
		} else if (m4) {
			// A line comment. If it ends in \r?\n then keep it.
			let length = m4.length;
			if (length > 2 && m4[length - 1] === '\n') {
J
Joao Moreno 已提交
393
				return m4[length - 2] === '\r' ? '\r\n' : '\n';
D
Dirk Baeumer 已提交
394 395 396 397 398 399 400 401 402
			} else {
				return '';
			}
		} else {
			// We match a string
			return match;
		}
	});
	return result;
403
}
D
Dirk Baeumer 已提交
404

J
Joao Moreno 已提交
405 406
function escapeCharacters(value: string): string {
	var result: string[] = [];
D
Dirk Baeumer 已提交
407 408
	for (var i = 0; i < value.length; i++) {
		var ch = value.charAt(i);
J
Joao Moreno 已提交
409
		switch (ch) {
D
Dirk Baeumer 已提交
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
			case '\'':
				result.push('\\\'');
				break;
			case '"':
				result.push('\\"');
				break;
			case '\\':
				result.push('\\\\');
				break;
			case '\n':
				result.push('\\n');
				break;
			case '\r':
				result.push('\\r');
				break;
			case '\t':
				result.push('\\t');
				break;
			case '\b':
				result.push('\\b');
				break;
			case '\f':
				result.push('\\f');
				break;
			default:
				result.push(ch);
		}
	}
	return result.join('');
}

D
Dirk Baeumer 已提交
441
function processCoreBundleFormat(fileHeader: string, languages: Language[], json: BundledFormat, emitter: ThroughStream) {
D
Dirk Baeumer 已提交
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
	let keysSection = json.keys;
	let messageSection = json.messages;
	let bundleSection = json.bundles;

	let statistics: Map<number> = Object.create(null);

	let total: number = 0;
	let defaultMessages: Map<Map<string>> = Object.create(null);
	let modules = Object.keys(keysSection);
	modules.forEach((module) => {
		let keys = keysSection[module];
		let messages = messageSection[module];
		if (!messages || keys.length !== messages.length) {
			emitter.emit('error', `Message for module ${module} corrupted. Mismatch in number of keys and messages.`);
			return;
		}
		let messageMap: Map<string> = Object.create(null);
		defaultMessages[module] = messageMap;
		keys.map((key, i) => {
			total++;
D
Dirk Baeumer 已提交
462
			if (typeof key === 'string') {
D
Dirk Baeumer 已提交
463 464 465 466 467 468 469 470
				messageMap[key] = messages[i];
			} else {
				messageMap[key.key] = messages[i];
			}
		});
	});

	let languageDirectory = path.join(__dirname, '..', '..', 'i18n');
D
Dirk Baeumer 已提交
471 472
	let sortedLanguages = sortLanguages(languages);
	sortedLanguages.forEach((language) => {
J
Joao Moreno 已提交
473
		if (process.env['VSCODE_BUILD_VERBOSE']) {
D
Dirk Baeumer 已提交
474
			log(`Generating nls bundles for: ${language.id}`);
J
Joao Moreno 已提交
475 476
		}

D
Dirk Baeumer 已提交
477
		statistics[language.id] = 0;
D
Dirk Baeumer 已提交
478
		let localizedModules: Map<string[]> = Object.create(null);
D
Dirk Baeumer 已提交
479 480
		let languageFolderName = language.folderName || language.id;
		let cwd = path.join(languageDirectory, languageFolderName, 'src');
D
Dirk Baeumer 已提交
481 482 483 484 485 486 487 488
		modules.forEach((module) => {
			let order = keysSection[module];
			let i18nFile = path.join(cwd, module) + '.i18n.json';
			let messages: Map<string> = null;
			if (fs.existsSync(i18nFile)) {
				let content = stripComments(fs.readFileSync(i18nFile, 'utf8'));
				messages = JSON.parse(content);
			} else {
J
Joao Moreno 已提交
489 490 491
				if (process.env['VSCODE_BUILD_VERBOSE']) {
					log(`No localized messages found for module ${module}. Using default messages.`);
				}
D
Dirk Baeumer 已提交
492
				messages = defaultMessages[module];
D
Dirk Baeumer 已提交
493
				statistics[language.id] = statistics[language.id] + Object.keys(messages).length;
D
Dirk Baeumer 已提交
494 495 496 497
			}
			let localizedMessages: string[] = [];
			order.forEach((keyInfo) => {
				let key: string = null;
D
Dirk Baeumer 已提交
498
				if (typeof keyInfo === 'string') {
D
Dirk Baeumer 已提交
499 500 501 502 503 504
					key = keyInfo;
				} else {
					key = keyInfo.key;
				}
				let message: string = messages[key];
				if (!message) {
J
Joao Moreno 已提交
505 506 507
					if (process.env['VSCODE_BUILD_VERBOSE']) {
						log(`No localized message found for key ${key} in module ${module}. Using default message.`);
					}
D
Dirk Baeumer 已提交
508
					message = defaultMessages[module][key];
D
Dirk Baeumer 已提交
509
					statistics[language.id] = statistics[language.id] + 1;
D
Dirk Baeumer 已提交
510 511 512 513 514 515 516 517
				}
				localizedMessages.push(message);
			});
			localizedModules[module] = localizedMessages;
		});
		Object.keys(bundleSection).forEach((bundle) => {
			let modules = bundleSection[bundle];
			let contents: string[] = [
A
Alex Dima 已提交
518
				fileHeader,
D
Dirk Baeumer 已提交
519
				`define("${bundle}.nls.${language.id}", {`
D
Dirk Baeumer 已提交
520 521 522 523 524 525 526 527 528
			];
			modules.forEach((module, index) => {
				contents.push(`\t"${module}": [`);
				let messages = localizedModules[module];
				if (!messages) {
					emitter.emit('error', `Didn't find messages for module ${module}.`);
					return;
				}
				messages.forEach((message, index) => {
J
Joao Moreno 已提交
529
					contents.push(`\t\t"${escapeCharacters(message)}${index < messages.length ? '",' : '"'}`);
D
Dirk Baeumer 已提交
530 531 532 533
				});
				contents.push(index < modules.length - 1 ? '\t],' : '\t]');
			});
			contents.push('});');
D
Dirk Baeumer 已提交
534
			emitter.queue(new File({ path: bundle + '.nls.' + language.id + '.js', contents: new Buffer(contents.join('\n'), 'utf-8') }));
D
Dirk Baeumer 已提交
535 536 537 538
		});
	});
	Object.keys(statistics).forEach(key => {
		let value = statistics[key];
J
Joao Moreno 已提交
539
		log(`${key} has ${value} untranslated strings.`);
D
Dirk Baeumer 已提交
540
	});
D
Dirk Baeumer 已提交
541 542 543 544
	sortedLanguages.forEach(language => {
		let stats = statistics[language.id];
		if (Is.undef(stats)) {
			log(`\tNo translations found for language ${language.id}. Using default language instead.`);
D
Dirk Baeumer 已提交
545 546 547 548
		}
	});
}

D
Dirk Baeumer 已提交
549 550
export function processNlsFiles(opts: { fileHeader: string; languages: Language[] }): ThroughStream {
	return through(function (this: ThroughStream, file: File) {
D
Dirk Baeumer 已提交
551 552 553 554
		let fileName = path.basename(file.path);
		if (fileName === 'nls.metadata.json') {
			let json = null;
			if (file.isBuffer()) {
555
				json = JSON.parse((<Buffer>file.contents).toString('utf8'));
D
Dirk Baeumer 已提交
556
			} else {
J
Joao Moreno 已提交
557
				this.emit('error', `Failed to read component file: ${file.relative}`);
D
Dirk Baeumer 已提交
558
				return;
D
Dirk Baeumer 已提交
559 560
			}
			if (BundledFormat.is(json)) {
561
				processCoreBundleFormat(opts.fileHeader, opts.languages, json, this);
D
Dirk Baeumer 已提交
562 563
			}
		}
D
Dirk Baeumer 已提交
564
		this.queue(file);
D
Dirk Baeumer 已提交
565
	});
566 567
}

568
const editorProject: string = 'vscode-editor',
569
	workbenchProject: string = 'vscode-workbench',
570
	extensionsProject: string = 'vscode-extensions',
571
	setupProject: string = 'vscode-setup';
572

573
export function getResource(sourceFile: string): Resource {
574 575
	let resource: string;

J
Joao Moreno 已提交
576
	if (/^vs\/platform/.test(sourceFile)) {
577
		return { name: 'vs/platform', project: editorProject };
J
Joao Moreno 已提交
578
	} else if (/^vs\/editor\/contrib/.test(sourceFile)) {
579
		return { name: 'vs/editor/contrib', project: editorProject };
J
Joao Moreno 已提交
580
	} else if (/^vs\/editor/.test(sourceFile)) {
581
		return { name: 'vs/editor', project: editorProject };
J
Joao Moreno 已提交
582
	} else if (/^vs\/base/.test(sourceFile)) {
583
		return { name: 'vs/base', project: editorProject };
J
Joao Moreno 已提交
584
	} else if (/^vs\/code/.test(sourceFile)) {
585
		return { name: 'vs/code', project: workbenchProject };
J
Joao Moreno 已提交
586
	} else if (/^vs\/workbench\/parts/.test(sourceFile)) {
587 588
		resource = sourceFile.split('/', 4).join('/');
		return { name: resource, project: workbenchProject };
J
Joao Moreno 已提交
589
	} else if (/^vs\/workbench\/services/.test(sourceFile)) {
590 591
		resource = sourceFile.split('/', 4).join('/');
		return { name: resource, project: workbenchProject };
J
Joao Moreno 已提交
592
	} else if (/^vs\/workbench/.test(sourceFile)) {
593 594 595
		return { name: 'vs/workbench', project: workbenchProject };
	}

J
Joao Moreno 已提交
596
	throw new Error(`Could not identify the XLF bundle for ${sourceFile}`);
597 598 599
}


D
Dirk Baeumer 已提交
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
export function createXlfFilesForCoreBundle(): ThroughStream {
	return through(function (this: ThroughStream, file: File) {
		const basename = path.basename(file.path);
		if (basename === 'nls.metadata.json') {
			if (file.isBuffer()) {
				const xlfs: Map<XLF> = Object.create(null);
				const json: BundledFormat = JSON.parse((file.contents as Buffer).toString('utf8'));
				for (let coreModule in json.keys) {
					const projectResource = getResource(coreModule);
					const resource = projectResource.name;
					const project = projectResource.project;

					const keys = json.keys[coreModule];
					const messages = json.messages[coreModule];
					if (keys.length !== messages.length) {
						this.emit('error', `There is a mismatch between keys and messages in ${file.relative} for module ${coreModule}`);
						return;
					} else {
						let xlf = xlfs[resource];
						if (!xlf) {
							xlf = new XLF(project);
							xlfs[resource] = xlf;
						}
						xlf.addFile(`src/${coreModule}`, keys, messages);
					}
				}
				for (let resource in xlfs) {
					const xlf = xlfs[resource];
					const filePath = `${xlf.project}/${resource.replace(/\//g, '_')}.xlf`;
					const xlfFile = new File({
						path: filePath,
						contents: new Buffer(xlf.toString(), 'utf8')
					});
					this.queue(xlfFile);
				}
			} else {
				this.emit('error', new Error(`File ${file.relative} is not using a buffer content`));
				return;
			}
		} else {
			this.emit('error', new Error(`File ${file.relative} is not a core meta data file.`));
			return;
642
		}
D
Dirk Baeumer 已提交
643
	});
644 645
}

D
Dirk Baeumer 已提交
646 647 648 649 650 651 652 653
export function createXlfFilesForExtensions(): ThroughStream {
	let counter: number = 0;
	let folderStreamEnded: boolean = false;
	let folderStreamEndEmitted: boolean = false;
	return through(function (this: ThroughStream, extensionFolder: File) {
		const folderStream = this;
		const stat = fs.statSync(extensionFolder.path);
		if (!stat.isDirectory()) {
654 655
			return;
		}
D
Dirk Baeumer 已提交
656 657
		let extensionName = path.basename(extensionFolder.path);
		if (extensionName === 'node_modules') {
658 659
			return;
		}
D
Dirk Baeumer 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
		counter++;
		let _xlf: XLF;
		function getXlf() {
			if (!_xlf) {
				_xlf = new XLF(extensionsProject);
			}
			return _xlf;
		}
		gulp.src([`./extensions/${extensionName}/package.nls.json`, `./extensions/${extensionName}/**/nls.metadata.json`]).pipe(through(function (file: File) {
			if (file.isBuffer()) {
				const buffer: Buffer = file.contents as Buffer;
				const basename = path.basename(file.path);
				if (basename === 'package.nls.json') {
					const json: PackageJsonFormat = JSON.parse(buffer.toString('utf8'));
					const keys = Object.keys(json);
					const messages = keys.map((key) => {
						const value = json[key];
						if (Is.string(value)) {
							return value;
						} else if (value) {
							return value.message;
						} else {
							return `Unknown message for key: ${key}`;
						}
					});
					getXlf().addFile(`extensions/${extensionName}/package`, keys, messages);
				} else if (basename === 'nls.metadata.json') {
					const json: BundledExtensionFormat = JSON.parse(buffer.toString('utf8'));
					const relPath = path.relative(`./extensions/${extensionName}`, path.dirname(file.path));
					for (let file in json) {
						const fileContent = json[file];
						getXlf().addFile(`extensions/${extensionName}/${relPath}/${file}`, fileContent.keys, fileContent.messages);
					}
				} else {
					this.emit('error', new Error(`${file.path} is not a valid extension nls file`));
					return;
				}
			}
		}, function () {
			if (_xlf) {
				let xlfFile = new File({
					path: path.join(extensionsProject, extensionName + '.xlf'),
					contents: new Buffer(_xlf.toString(), 'utf8')
				});
				folderStream.queue(xlfFile);
			}
			this.queue(null);
			counter--;
			if (counter === 0 && folderStreamEnded && !folderStreamEndEmitted) {
				folderStreamEndEmitted = true;
				folderStream.queue(null);
711
			}
D
Dirk Baeumer 已提交
712 713 714 715 716 717
		}));
	}, function () {
		folderStreamEnded = true;
		if (counter === 0) {
			folderStreamEndEmitted = true;
			this.queue(null);
718 719
		}
	});
D
Dirk Baeumer 已提交
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
}

export function createXlfFilesForIsl(): ThroughStream {
	return through(function (this: ThroughStream, file: File) {
		let projectName: string,
			resourceFile: string;
		if (path.basename(file.path) === 'Default.isl') {
			projectName = setupProject;
			resourceFile = 'setup_default.xlf';
		} else {
			projectName = workbenchProject;
			resourceFile = 'setup_messages.xlf';
		}

		let xlf = new XLF(projectName),
			keys: string[] = [],
			messages: string[] = [];

		let model = new TextModel(file.contents.toString());
		let inMessageSection = false;
		model.lines.forEach(line => {
			if (line.length === 0) {
				return;
			}
			let firstChar = line.charAt(0);
			switch (firstChar) {
				case ';':
					// Comment line;
					return;
				case '[':
					inMessageSection = '[Messages]' === line || '[CustomMessages]' === line;
					return;
			}
			if (!inMessageSection) {
				return;
			}
			let sections: string[] = line.split('=');
			if (sections.length !== 2) {
				throw new Error(`Badly formatted message found: ${line}`);
			} else {
				let key = sections[0];
				let value = sections[1];
				if (key.length > 0 && value.length > 0) {
					keys.push(key);
					messages.push(value);
				}
			}
		});
768

D
Dirk Baeumer 已提交
769 770
		const originalPath = file.path.substring(file.cwd.length + 1, file.path.split('.')[0].length).replace(/\\/g, '/');
		xlf.addFile(originalPath, keys, messages);
771

D
Dirk Baeumer 已提交
772 773 774 775 776
		// Emit only upon all ISL files combined into single XLF instance
		const newFilePath = path.join(projectName, resourceFile);
		const xlfFile = new File({ path: newFilePath, contents: new Buffer(xlf.toString(), 'utf-8') });
		this.queue(xlfFile);
	});
777 778
}

779
export function pushXlfFiles(apiHostname: string, username: string, password: string): ThroughStream {
780 781 782
	let tryGetPromises = [];
	let updateCreatePromises = [];

D
Dirk Baeumer 已提交
783
	return through(function (this: ThroughStream, file: File) {
784 785 786
		const project = path.dirname(file.relative);
		const fileName = path.basename(file.path);
		const slug = fileName.substr(0, fileName.length - '.xlf'.length);
787
		const credentials = `${username}:${password}`;
788 789

		// Check if resource already exists, if not, then create it.
790
		let promise = tryGetResource(project, slug, apiHostname, credentials);
791 792
		tryGetPromises.push(promise);
		promise.then(exists => {
793
			if (exists) {
794
				promise = updateResource(project, slug, file, apiHostname, credentials);
795
			} else {
796
				promise = createResource(project, slug, file, apiHostname, credentials);
797
			}
798 799 800
			updateCreatePromises.push(promise);
		});

J
Joao Moreno 已提交
801
	}, function () {
802 803 804
		// End the pipe only after all the communication with Transifex API happened
		Promise.all(tryGetPromises).then(() => {
			Promise.all(updateCreatePromises).then(() => {
D
Dirk Baeumer 已提交
805
				this.queue(null);
806 807
			}).catch((reason) => { throw new Error(reason); });
		}).catch((reason) => { throw new Error(reason); });
808 809 810
	});
}

811
function tryGetResource(project: string, slug: string, apiHostname: string, credentials: string): Promise<boolean> {
812
	return new Promise((resolve, reject) => {
813 814 815 816 817 818 819
		const options = {
			hostname: apiHostname,
			path: `/api/2/project/${project}/resource/${slug}/?details`,
			auth: credentials,
			method: 'GET'
		};

820
		const request = https.request(options, (response) => {
821 822 823 824 825
			if (response.statusCode === 404) {
				resolve(false);
			} else if (response.statusCode === 200) {
				resolve(true);
			} else {
826
				reject(`Failed to query resource ${project}/${slug}. Response: ${response.statusCode} ${response.statusMessage}`);
827
			}
828 829
		});
		request.on('error', (err) => {
830
			reject(`Failed to get ${project}/${slug} on Transifex: ${err}`);
831
		});
832 833

		request.end();
834 835 836
	});
}

837 838 839 840 841 842 843 844
function createResource(project: string, slug: string, xlfFile: File, apiHostname: string, credentials: any): Promise<any> {
	return new Promise((resolve, reject) => {
		const data = JSON.stringify({
			'content': xlfFile.contents.toString(),
			'name': slug,
			'slug': slug,
			'i18n_type': 'XLIFF'
		});
845
		const options = {
846 847 848 849 850
			hostname: apiHostname,
			path: `/api/2/project/${project}/resources`,
			headers: {
				'Content-Type': 'application/json',
				'Content-Length': Buffer.byteLength(data)
851
			},
852 853
			auth: credentials,
			method: 'POST'
854
		};
855

856
		let request = https.request(options, (res) => {
857 858 859
			if (res.statusCode === 201) {
				log(`Resource ${project}/${slug} successfully created on Transifex.`);
			} else {
860
				reject(`Something went wrong in the request creating ${slug} in ${project}. ${res.statusCode}`);
861
			}
862 863
		});
		request.on('error', (err) => {
864
			reject(`Failed to create ${project}/${slug} on Transifex: ${err}`);
865
		});
866 867 868

		request.write(data);
		request.end();
869 870 871 872 873 874 875
	});
}

/**
 * The following link provides information about how Transifex handles updates of a resource file:
 * https://dev.befoolish.co/tx-docs/public/projects/updating-content#what-happens-when-you-update-files
 */
J
Joao Moreno 已提交
876
function updateResource(project: string, slug: string, xlfFile: File, apiHostname: string, credentials: string): Promise<any> {
877 878
	return new Promise((resolve, reject) => {
		const data = JSON.stringify({ content: xlfFile.contents.toString() });
879
		const options = {
880 881 882 883 884 885 886 887
			hostname: apiHostname,
			path: `/api/2/project/${project}/resource/${slug}/content`,
			headers: {
				'Content-Type': 'application/json',
				'Content-Length': Buffer.byteLength(data)
			},
			auth: credentials,
			method: 'PUT'
888
		};
889

890
		let request = https.request(options, (res) => {
891
			if (res.statusCode === 200) {
892 893 894 895 896 897 898 899 900 901 902
				res.setEncoding('utf8');

				let responseBuffer: string = '';
				res.on('data', function (chunk) {
					responseBuffer += chunk;
				});
				res.on('end', () => {
					const response = JSON.parse(responseBuffer);
					log(`Resource ${project}/${slug} successfully updated on Transifex. Strings added: ${response.strings_added}, updated: ${response.strings_added}, deleted: ${response.strings_added}`);
					resolve();
				});
903
			} else {
904
				reject(`Something went wrong in the request updating ${slug} in ${project}. ${res.statusCode}`);
905
			}
906 907
		});
		request.on('error', (err) => {
908
			reject(`Failed to update ${project}/${slug} on Transifex: ${err}`);
909
		});
910 911 912

		request.write(data);
		request.end();
913 914 915
	});
}

D
Dirk Baeumer 已提交
916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
// cache resources
let _buildResources: Resource[];

export function pullBuildXlfFiles(apiHostname: string, username: string, password: string, language: Language): NodeJS.ReadableStream {
	if (!_buildResources) {
		_buildResources = [];
		// editor and workbench
		const json = JSON.parse(fs.readFileSync('./build/lib/i18n.resources.json', 'utf8'));
		_buildResources.push(...json.editor);
		_buildResources.push(...json.workbench);

		// extensions
		let extensionsToLocalize = Object.create(null);
		glob.sync('./extensions/**/*.nls.json', ).forEach(extension => extensionsToLocalize[extension.split('/')[2]] = true);
		glob.sync('./extensions/*/node_modules/vscode-nls', ).forEach(extension => extensionsToLocalize[extension.split('/')[2]] = true);

		Object.keys(extensionsToLocalize).forEach(extension => {
			_buildResources.push({ name: extension, project: 'vscode-extensions' });
934 935
		});
	}
D
Dirk Baeumer 已提交
936
	return pullXlfFiles(apiHostname, username, password, language, _buildResources);
937 938
}

D
Dirk Baeumer 已提交
939 940 941 942
export function pullSetupXlfFiles(apiHostname: string, username: string, password: string, language: Language, includeDefault: boolean): NodeJS.ReadableStream {
	let setupResources = [{ name: 'setup_messages', project: 'vscode-workbench' }];
	if (includeDefault) {
		setupResources.push({ name: 'setup_default', project: 'vscode-setup' });
943
	}
D
Dirk Baeumer 已提交
944 945
	return pullXlfFiles(apiHostname, username, password, language, setupResources);
}
946

D
Dirk Baeumer 已提交
947
function pullXlfFiles(apiHostname: string, username: string, password: string, language: Language, resources: Resource[]): NodeJS.ReadableStream {
948
	const credentials = `${username}:${password}`;
D
Dirk Baeumer 已提交
949
	let expectedTranslationsCount = resources.length;
950 951
	let translationsRetrieved = 0, called = false;

J
Joao Moreno 已提交
952
	return readable(function (count, callback) {
953 954 955 956 957 958 959 960
		// Mark end of stream when all resources were retrieved
		if (translationsRetrieved === expectedTranslationsCount) {
			return this.emit('end');
		}

		if (!called) {
			called = true;
			const stream = this;
D
Dirk Baeumer 已提交
961 962 963
			resources.map(function (resource) {
				retrieveResource(language, resource, apiHostname, credentials).then((file: File) => {
					if (file) {
964
						stream.emit('data', file);
D
Dirk Baeumer 已提交
965 966 967
					}
					translationsRetrieved++;
				}).catch(error => { throw new Error(error); });
968 969 970 971 972 973
			});
		}

		callback();
	});
}
974
const limiter = new Limiter<File>(NUMBER_OF_CONCURRENT_DOWNLOADS);
975

D
Dirk Baeumer 已提交
976
function retrieveResource(language: Language, resource: Resource, apiHostname, credentials): Promise<File> {
977
	return limiter.queue(() => new Promise<File>((resolve, reject) => {
978 979
		const slug = resource.name.replace(/\//g, '_');
		const project = resource.project;
D
Dirk Baeumer 已提交
980
		const transifexLanguageId = language.transifexId || language.id;
981 982
		const options = {
			hostname: apiHostname,
D
Dirk Baeumer 已提交
983
			path: `/api/2/project/${project}/resource/${slug}/translation/${transifexLanguageId}?file&mode=onlyreviewed`,
984
			auth: credentials,
985
			port: 443,
986 987 988
			method: 'GET'
		};

989
		let request = https.request(options, (res) => {
J
Joao Moreno 已提交
990 991 992 993
			let xlfBuffer: Buffer[] = [];
			res.on('data', (chunk: Buffer) => xlfBuffer.push(chunk));
			res.on('end', () => {
				if (res.statusCode === 200) {
D
Dirk Baeumer 已提交
994 995 996 997 998 999
					resolve(new File({ contents: Buffer.concat(xlfBuffer), path: `${project}/${slug}.xlf` }));
				} else if (res.statusCode === 404) {
					console.log(`${slug} in ${project} returned no data.`);
					resolve(null);
				} else {
					reject(`${slug} in ${project} returned no data. Response code: ${res.statusCode}.`);
J
Joao Moreno 已提交
1000 1001
				}
			});
1002 1003
		});
		request.on('error', (err) => {
1004
			reject(`Failed to query resource ${slug} with the following error: ${err}. ${options.path}`);
1005 1006
		});
		request.end();
1007
	}));
1008 1009
}

D
Dirk Baeumer 已提交
1010
export function prepareI18nFiles(): ThroughStream {
1011 1012
	let parsePromises: Promise<ParsedXLF[]>[] = [];

D
Dirk Baeumer 已提交
1013
	return through(function (this: ThroughStream, xlf: File) {
1014
		let stream = this;
1015 1016 1017
		let parsePromise = XLF.parse(xlf.contents.toString());
		parsePromises.push(parsePromise);
		parsePromise.then(
D
Dirk Baeumer 已提交
1018
			resolvedFiles => {
1019
				resolvedFiles.forEach(file => {
D
Dirk Baeumer 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
					let translatedFile = createI18nFile(file.originalFilePath, file.messages);
					stream.queue(translatedFile);
				});
			}
		);
	}, function () {
		Promise.all(parsePromises)
			.then(() => { this.queue(null); })
			.catch(reason => { throw new Error(reason); });
	});
}
1031

D
Dirk Baeumer 已提交
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
function createI18nFile(originalFilePath: string, messages: any): File {
	let result = Object.create(null);
	result[''] = [
		'--------------------------------------------------------------------------------------------',
		'Copyright (c) Microsoft Corporation. All rights reserved.',
		'Licensed under the MIT License. See License.txt in the project root for license information.',
		'--------------------------------------------------------------------------------------------',
		'Do not edit this file. It is machine generated.'
	];
	for (let key of Object.keys(messages)) {
		result[key] = messages[key];
	}

	let content = JSON.stringify(result, null, '\t').replace(/\r\n/g, '\n');
	return new File({
		path: path.join(originalFilePath + '.i18n.json'),
		contents: new Buffer(content, 'utf8')
	});
}
1051

D
Dirk Baeumer 已提交
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
interface I18nPack {
	version: string;
	contents: {
		[path: string]: Map<string>;
	};
}

const i18nPackVersion = "1.0.0";

export function pullI18nPackFiles(apiHostname: string, username: string, password: string, language: Language): NodeJS.ReadableStream {
	return pullBuildXlfFiles(apiHostname, username, password, language).pipe(prepareI18nPackFiles());
}

export function prepareI18nPackFiles() {
	let parsePromises: Promise<ParsedXLF[]>[] = [];
	let mainPack: I18nPack = { version: i18nPackVersion, contents: {} };
	let extensionsPacks: Map<I18nPack> = {};
	return through(function (this: ThroughStream, xlf: File) {
		let stream = this;
		let parsePromise = XLF.parse(xlf.contents.toString());
		parsePromises.push(parsePromise);
		parsePromise.then(
			resolvedFiles => {
				resolvedFiles.forEach(file => {
					const path = file.originalFilePath;
					const firstSlash = path.indexOf('/');
					const firstSegment = path.substr(0, firstSlash);
					if (firstSegment === 'src') {
						mainPack.contents[path.substr(firstSlash + 1)] = file.messages;
					} else if (firstSegment === 'extensions') {
						const secondSlash = path.indexOf('/', firstSlash + 1);
						const secondSegment = path.substring(firstSlash + 1, secondSlash);
						if (secondSegment) {
							let extPack = extensionsPacks[secondSegment];
							if (!extPack) {
								extPack = extensionsPacks[secondSegment] = { version: i18nPackVersion, contents: {} };
							}
							extPack.contents[path.substr(secondSlash + 1)] = file.messages;
						} else {
							console.log('Unknown second segment ' + path);
						}
1093
					} else {
D
Dirk Baeumer 已提交
1094
						console.log('Unknown first segment ' + path);
1095 1096 1097 1098
					}
				});
			}
		);
J
Joao Moreno 已提交
1099
	}, function () {
1100
		Promise.all(parsePromises)
D
Dirk Baeumer 已提交
1101 1102 1103 1104 1105 1106 1107 1108 1109
			.then(() => {
				const translatedMainFile = createI18nFile('./main', mainPack);
				this.queue(translatedMainFile);
				for (let extension in extensionsPacks) {
					const translatedExtFile = createI18nFile(`./extensions/${extension}`, extensionsPacks[extension]);
					this.queue(translatedExtFile);
				}
				this.queue(null);
			})
1110
			.catch(reason => { throw new Error(reason); });
1111 1112 1113
	});
}

D
Dirk Baeumer 已提交
1114 1115
export function prepareIslFiles(language: Language, innoSetupConfig: InnoSetup): ThroughStream {
	let parsePromises: Promise<ParsedXLF[]>[] = [];
1116

D
Dirk Baeumer 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
	return through(function (this: ThroughStream, xlf: File) {
		let stream = this;
		let parsePromise = XLF.parse(xlf.contents.toString());
		parsePromises.push(parsePromise);
		parsePromise.then(
			resolvedFiles => {
				resolvedFiles.forEach(file => {
					if (path.basename(file.originalFilePath) === 'Default' && !innoSetupConfig.defaultInfo) {
						return;
					}
					let translatedFile = createIslFile(file.originalFilePath, file.messages, language, innoSetupConfig);
					stream.queue(translatedFile);
				});
			}
		);
	}, function () {
		Promise.all(parsePromises)
			.then(() => { this.queue(null); })
			.catch(reason => { throw new Error(reason); });
1136 1137 1138
	});
}

D
Dirk Baeumer 已提交
1139
function createIslFile(originalFilePath: string, messages: Map<string>, language: Language, innoSetup: InnoSetup): File {
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
	let content: string[] = [];
	let originalContent: TextModel;
	if (path.basename(originalFilePath) === 'Default') {
		originalContent = new TextModel(fs.readFileSync(originalFilePath + '.isl', 'utf8'));
	} else {
		originalContent = new TextModel(fs.readFileSync(originalFilePath + '.en.isl', 'utf8'));
	}
	originalContent.lines.forEach(line => {
		if (line.length > 0) {
			let firstChar = line.charAt(0);
			if (firstChar === '[' || firstChar === ';') {
				if (line === '; *** Inno Setup version 5.5.3+ English messages ***') {
D
Dirk Baeumer 已提交
1152
					content.push(`; *** Inno Setup version 5.5.3+ ${innoSetup.defaultInfo.name} messages ***`);
1153 1154 1155 1156 1157 1158 1159 1160 1161
				} else {
					content.push(line);
				}
			} else {
				let sections: string[] = line.split('=');
				let key = sections[0];
				let translated = line;
				if (key) {
					if (key === 'LanguageName') {
D
Dirk Baeumer 已提交
1162
						translated = `${key}=${innoSetup.defaultInfo.name}`;
1163
					} else if (key === 'LanguageID') {
D
Dirk Baeumer 已提交
1164
						translated = `${key}=${innoSetup.defaultInfo.id}`;
1165
					} else if (key === 'LanguageCodePage') {
D
Dirk Baeumer 已提交
1166
						translated = `${key}=${innoSetup.codePage.substr(2)}`;
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
					} else {
						let translatedMessage = messages[key];
						if (translatedMessage) {
							translated = `${key}=${translatedMessage}`;
						}
					}
				}

				content.push(translated);
			}
		}
	});

1180
	const basename = path.basename(originalFilePath);
D
Dirk Baeumer 已提交
1181
	const filePath = `${basename}.${language.id}.isl`;
1182 1183 1184

	return new File({
		path: filePath,
D
Dirk Baeumer 已提交
1185
		contents: iconv.encode(new Buffer(content.join('\r\n'), 'utf8'), innoSetup.codePage)
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
	});
}

function encodeEntities(value: string): string {
	var result: string[] = [];
	for (var i = 0; i < value.length; i++) {
		var ch = value[i];
		switch (ch) {
			case '<':
				result.push('&lt;');
				break;
			case '>':
				result.push('&gt;');
				break;
			case '&':
				result.push('&amp;');
				break;
			default:
				result.push(ch);
		}
	}
	return result.join('');
}

J
Joao Moreno 已提交
1210
function decodeEntities(value: string): string {
1211
	return value.replace(/&lt;/g, '<').replace(/&gt;/g, '>').replace(/&amp;/g, '&');
D
Dirk Baeumer 已提交
1212
}