Welcome to mirror list, hosted at ThFree Co, Russian Federation.

upload-nlsmetadata.ts « azure-pipelines « build - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4749e1f9605fe6ea0b186a006fc852e903769ff4 (plain)
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
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import * as es from 'event-stream';
import * as Vinyl from 'vinyl';
import * as vfs from 'vinyl-fs';
import * as merge from 'gulp-merge-json';
import * as gzip from 'gulp-gzip';
import { ClientSecretCredential } from '@azure/identity';
import path = require('path');
import { readFileSync } from 'fs';
const azure = require('gulp-azure-storage');

const commit = process.env['VSCODE_DISTRO_COMMIT'] || process.env['BUILD_SOURCEVERSION'];
const credential = new ClientSecretCredential(process.env['AZURE_TENANT_ID']!, process.env['AZURE_CLIENT_ID']!, process.env['AZURE_CLIENT_SECRET']!);

interface NlsMetadata {
	keys: { [module: string]: string };
	messages: { [module: string]: string };
	bundles: { [bundle: string]: string[] };
}

function main(): Promise<void> {
	return new Promise((c, e) => {

		es.merge(
			vfs.src('out-vscode-web-min/nls.metadata.json', { base: 'out-vscode-web-min' }),
			vfs.src('.build/extensions/**/nls.metadata.json', { base: '.build/extensions' }),
			vfs.src('.build/extensions/**/nls.metadata.header.json', { base: '.build/extensions' }),
			vfs.src('.build/extensions/**/package.nls.json', { base: '.build/extensions' }))
			.pipe(merge({
				fileName: 'combined.nls.metadata.json',
				jsonSpace: '',
				concatArrays: true,
				edit: (parsedJson, file) => {
					if (file.base === 'out-vscode-web-min') {
						return { vscode: parsedJson };
					}

					// Handle extensions and follow the same structure as the Core nls file.
					switch (file.basename) {
						case 'package.nls.json':
							// put package.nls.json content in Core NlsMetadata format
							// language packs use the key "package" to specify that
							// translations are for the package.json file
							parsedJson = {
								messages: {
									package: Object.values(parsedJson)
								},
								keys: {
									package: Object.keys(parsedJson)
								},
								bundles: {
									main: ['package']
								}
							};
							break;

						case 'nls.metadata.header.json':
							parsedJson = { header: parsedJson };
							break;

						case 'nls.metadata.json': {
							// put nls.metadata.json content in Core NlsMetadata format
							const modules = Object.keys(parsedJson);

							const json: NlsMetadata = {
								keys: {},
								messages: {},
								bundles: {
									main: []
								}
							};
							for (const module of modules) {
								json.messages[module] = parsedJson[module].messages;
								json.keys[module] = parsedJson[module].keys;
								json.bundles.main.push(module);
							}
							parsedJson = json;
							break;
						}
					}

					// Get extension id and use that as the key
					const folderPath = path.join(file.base, file.relative.split('/')[0]);
					const manifest = readFileSync(path.join(folderPath, 'package.json'), 'utf-8');
					const manifestJson = JSON.parse(manifest);
					const key = manifestJson.publisher + '.' + manifestJson.name;
					return { [key]: parsedJson };
				},
			}))
			.pipe(gzip({ append: false }))
			.pipe(vfs.dest('./nlsMetadata'))
			.pipe(es.through(function (data: Vinyl) {
				console.log(`Uploading ${data.path}`);
				// trigger artifact upload
				console.log(`##vso[artifact.upload containerfolder=nlsmetadata;artifactname=combined.nls.metadata.json]${data.path}`);
				this.emit('data', data);
			}))
			.pipe(azure.upload({
				account: process.env.AZURE_STORAGE_ACCOUNT,
				credential,
				container: 'nlsmetadata',
				prefix: commit + '/',
				contentSettings: {
					contentEncoding: 'gzip',
					cacheControl: 'max-age=31536000, public'
				}
			}))
			.on('end', () => c())
			.on('error', (err: any) => e(err));
	});
}

main().catch(err => {
	console.error(err);
	process.exit(1);
});