2024-04-30 20:57:13 +08:00
|
|
|
"use strict";
|
2022-06-14 14:37:10 +08:00
|
|
|
/*---------------------------------------------------------------------------------------------
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
const es = require("event-stream");
|
|
|
|
const Vinyl = require("vinyl");
|
|
|
|
const vfs = require("vinyl-fs");
|
|
|
|
const filter = require("gulp-filter");
|
|
|
|
const gzip = require("gulp-gzip");
|
2024-04-30 20:57:13 +08:00
|
|
|
const mime = require("mime");
|
2022-06-14 14:37:10 +08:00
|
|
|
const identity_1 = require("@azure/identity");
|
|
|
|
const azure = require('gulp-azure-storage');
|
2024-04-30 20:57:13 +08:00
|
|
|
const commit = process.env['BUILD_SOURCEVERSION'];
|
2022-06-14 14:37:10 +08:00
|
|
|
const credential = new identity_1.ClientSecretCredential(process.env['AZURE_TENANT_ID'], process.env['AZURE_CLIENT_ID'], process.env['AZURE_CLIENT_SECRET']);
|
2024-04-30 20:57:13 +08:00
|
|
|
mime.define({
|
|
|
|
'application/typescript': ['ts'],
|
|
|
|
'application/json': ['code-snippets'],
|
|
|
|
});
|
|
|
|
// From default AFD configuration
|
|
|
|
const MimeTypesToCompress = new Set([
|
|
|
|
'application/eot',
|
|
|
|
'application/font',
|
|
|
|
'application/font-sfnt',
|
|
|
|
'application/javascript',
|
|
|
|
'application/json',
|
|
|
|
'application/opentype',
|
|
|
|
'application/otf',
|
|
|
|
'application/pkcs7-mime',
|
|
|
|
'application/truetype',
|
|
|
|
'application/ttf',
|
|
|
|
'application/typescript',
|
|
|
|
'application/vnd.ms-fontobject',
|
|
|
|
'application/xhtml+xml',
|
|
|
|
'application/xml',
|
|
|
|
'application/xml+rss',
|
|
|
|
'application/x-font-opentype',
|
|
|
|
'application/x-font-truetype',
|
|
|
|
'application/x-font-ttf',
|
|
|
|
'application/x-httpd-cgi',
|
|
|
|
'application/x-javascript',
|
|
|
|
'application/x-mpegurl',
|
|
|
|
'application/x-opentype',
|
|
|
|
'application/x-otf',
|
|
|
|
'application/x-perl',
|
|
|
|
'application/x-ttf',
|
|
|
|
'font/eot',
|
|
|
|
'font/ttf',
|
|
|
|
'font/otf',
|
|
|
|
'font/opentype',
|
|
|
|
'image/svg+xml',
|
|
|
|
'text/css',
|
|
|
|
'text/csv',
|
|
|
|
'text/html',
|
|
|
|
'text/javascript',
|
|
|
|
'text/js',
|
|
|
|
'text/markdown',
|
|
|
|
'text/plain',
|
|
|
|
'text/richtext',
|
|
|
|
'text/tab-separated-values',
|
|
|
|
'text/xml',
|
|
|
|
'text/x-script',
|
|
|
|
'text/x-component',
|
|
|
|
'text/x-java-source'
|
|
|
|
]);
|
|
|
|
function wait(stream) {
|
|
|
|
return new Promise((c, e) => {
|
|
|
|
stream.on('end', () => c());
|
|
|
|
stream.on('error', (err) => e(err));
|
|
|
|
});
|
|
|
|
}
|
2022-06-14 14:37:10 +08:00
|
|
|
async function main() {
|
|
|
|
const files = [];
|
2024-04-30 20:57:13 +08:00
|
|
|
const options = (compressed) => ({
|
2022-06-14 14:37:10 +08:00
|
|
|
account: process.env.AZURE_STORAGE_ACCOUNT,
|
|
|
|
credential,
|
|
|
|
container: process.env.VSCODE_QUALITY,
|
|
|
|
prefix: commit + '/',
|
|
|
|
contentSettings: {
|
2024-04-30 20:57:13 +08:00
|
|
|
contentEncoding: compressed ? 'gzip' : undefined,
|
2022-06-14 14:37:10 +08:00
|
|
|
cacheControl: 'max-age=31536000, public'
|
|
|
|
}
|
|
|
|
});
|
2024-04-30 20:57:13 +08:00
|
|
|
const all = vfs.src('**', { cwd: '../vscode-web', base: '../vscode-web', dot: true })
|
|
|
|
.pipe(filter(f => !f.isDirectory()));
|
|
|
|
const compressed = all
|
|
|
|
.pipe(filter(f => MimeTypesToCompress.has(mime.lookup(f.path))))
|
|
|
|
.pipe(gzip({ append: false }))
|
|
|
|
.pipe(azure.upload(options(true)));
|
|
|
|
const uncompressed = all
|
|
|
|
.pipe(filter(f => !MimeTypesToCompress.has(mime.lookup(f.path))))
|
|
|
|
.pipe(azure.upload(options(false)));
|
|
|
|
const out = es.merge(compressed, uncompressed)
|
|
|
|
.pipe(es.through(function (f) {
|
|
|
|
console.log('Uploaded:', f.relative);
|
|
|
|
files.push(f.relative);
|
|
|
|
this.emit('data', f);
|
|
|
|
}));
|
|
|
|
console.log(`Uploading files to CDN...`); // debug
|
|
|
|
await wait(out);
|
|
|
|
const listing = new Vinyl({
|
|
|
|
path: 'files.txt',
|
|
|
|
contents: Buffer.from(files.join('\n')),
|
|
|
|
stat: { mode: 0o666 }
|
2022-06-14 14:37:10 +08:00
|
|
|
});
|
2024-04-30 20:57:13 +08:00
|
|
|
const filesOut = es.readArray([listing])
|
|
|
|
.pipe(gzip({ append: false }))
|
|
|
|
.pipe(azure.upload(options(true)));
|
|
|
|
console.log(`Uploading: files.txt (${files.length} files)`); // debug
|
|
|
|
await wait(filesOut);
|
2022-06-14 14:37:10 +08:00
|
|
|
}
|
|
|
|
main().catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
process.exit(1);
|
|
|
|
});
|
2024-04-30 20:57:13 +08:00
|
|
|
//# sourceMappingURL=upload-cdn.js.map
|