appcenter-cli
Version:
Command line tool for Visual Studio App Center
85 lines (84 loc) • 4.54 kB
JavaScript
;
// tokens delete command
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const commandline_1 = require("../../util/commandline");
const interaction_1 = require("../../util/interaction");
const principal_type_1 = require("../../util/misc/principal-type");
let TokenDeleteCommand = class TokenDeleteCommand extends commandline_1.AppCommand {
constructor(args) {
super(args);
}
run(client) {
return __awaiter(this, void 0, void 0, function* () {
principal_type_1.validatePrincipalType(this.principalType);
const tokenMessaging = `Deleting ${this.principalType} API token ...`;
const confirmation = yield interaction_1.prompt.confirm(`Do you really want to delete the ${this.principalType} API token with ID "${this.id}"`);
if (!confirmation) {
interaction_1.out.text(`Deletion of ${this.principalType} API token with ID "${this.id}" canceled`);
return commandline_1.success();
}
try {
if (this.principalType === principal_type_1.PrincipalType.USER) {
yield interaction_1.out.progress(tokenMessaging, client.userApiTokens.delete(this.id, {
onResponse: (response, _flatResponse, _error) => this.handleCreateTokenResponse(response.status),
}));
}
else if (this.principalType === principal_type_1.PrincipalType.APP) {
const app = this.app;
yield interaction_1.out.progress(tokenMessaging, client.appApiTokens.delete(app.ownerName, app.appName, this.id, {
onResponse: (response, _flatResponse, _error) => this.handleCreateTokenResponse(response.status),
}));
}
}
catch (error) {
return error;
}
return commandline_1.success();
});
}
handleCreateTokenResponse(statusCode) {
if (statusCode >= 400) {
switch (statusCode) {
case 400:
default:
throw commandline_1.failure(commandline_1.ErrorCodes.Exception, "invalid request");
case 401:
throw commandline_1.failure(commandline_1.ErrorCodes.InvalidParameter, "authorization to create an API token failed");
case 404:
throw commandline_1.failure(commandline_1.ErrorCodes.NotLoggedIn, `the ${this.principalType} API token with ID "${this.id}" could not be found`);
}
}
}
};
__decorate([
commandline_1.help("ID of the API token"),
commandline_1.name("token"),
commandline_1.required,
commandline_1.position(0)
], TokenDeleteCommand.prototype, "id", void 0);
__decorate([
commandline_1.help("The type of token: [ user, app ]. An app must be specified for app type tokens"),
commandline_1.shortName("t"),
commandline_1.longName("type"),
commandline_1.hasArg,
commandline_1.defaultValue("user")
], TokenDeleteCommand.prototype, "principalType", void 0);
TokenDeleteCommand = __decorate([
commandline_1.help("Delete an API token")
], TokenDeleteCommand);
exports.default = TokenDeleteCommand;