76 строки
3.4 KiB
TypeScript
76 строки
3.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See LICENSE.md in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import vscode = require('vscode');
|
|
import { DialogResponses } from 'vscode-azureextensionui';
|
|
import { ImageNode } from '../explorer/models/imageNode';
|
|
import { ext } from '../extensionVariables';
|
|
import { reporter } from '../telemetry/telemetry';
|
|
import { ImageItem, quickPickImage } from './utils/quick-pick-image';
|
|
const teleCmdId: string = 'vscode-docker.image.push';
|
|
const teleAzureId: string = 'vscode-docker.image.push.azureContainerRegistry';
|
|
|
|
export async function pushImage(context?: ImageNode): Promise<void> {
|
|
const configOptions: vscode.WorkspaceConfiguration = vscode.workspace.getConfiguration('docker');
|
|
let askToSaveRegistryPath: boolean = configOptions.get<boolean>('askToSaveRegistryPath');
|
|
|
|
let prefix = "";
|
|
let imageToPush: Docker.ImageDesc;
|
|
let imageName: string = "";
|
|
|
|
if (context && context.imageDesc) {
|
|
imageToPush = context.imageDesc;
|
|
imageName = context.label;
|
|
} else {
|
|
const selectedItem: ImageItem = await quickPickImage();
|
|
if (selectedItem) {
|
|
imageToPush = selectedItem.imageDesc;
|
|
imageName = selectedItem.label;
|
|
}
|
|
}
|
|
|
|
if (imageName.includes('/')) {
|
|
prefix = imageName.substring(0, imageName.lastIndexOf('/'));
|
|
}
|
|
if (prefix && askToSaveRegistryPath !== false) { //account for undefined
|
|
let userPrefixPreference: vscode.MessageItem = await ext.ui.showWarningMessage(`Would you like to save '${prefix}' as your default registry path?`, DialogResponses.yes, DialogResponses.no, DialogResponses.skipForNow);
|
|
if (userPrefixPreference === DialogResponses.yes || userPrefixPreference === DialogResponses.no) {
|
|
askToSaveRegistryPath = false;
|
|
await configOptions.update('askToSaveRegistryPath', false, vscode.ConfigurationTarget.Workspace);
|
|
}
|
|
if (userPrefixPreference === DialogResponses.yes) {
|
|
await configOptions.update('defaultRegistryPath', prefix, vscode.ConfigurationTarget.Workspace);
|
|
vscode.window.showInformationMessage('Default registry path saved. You can change this value at any time via the docker.defaultRegistryPath setting.');
|
|
}
|
|
}
|
|
if (imageToPush) {
|
|
const terminal = ext.terminalProvider.createTerminal(imageName);
|
|
terminal.sendText(`docker push ${imageName}`);
|
|
terminal.show();
|
|
if (reporter) {
|
|
/* __GDPR__
|
|
"command" : {
|
|
"command" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
|
|
}
|
|
*/
|
|
reporter.sendTelemetryEvent('command', {
|
|
command: teleCmdId
|
|
});
|
|
|
|
if (imageName.toLowerCase().includes('azurecr.io')) {
|
|
/* __GDPR__
|
|
"command" : {
|
|
"command" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
|
|
}
|
|
*/
|
|
reporter.sendTelemetryEvent('command', {
|
|
command: teleAzureId
|
|
});
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|