appcenter-cli
Version:
Command line tool for Visual Studio App Center
56 lines (55 loc) • 2.97 kB
JavaScript
;
// apps 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");
let AppDeleteCommand = class AppDeleteCommand extends commandline_1.AppCommand {
constructor(args) {
super(args);
}
run(client) {
return __awaiter(this, void 0, void 0, function* () {
const app = this.app;
const confirmation = yield interaction_1.prompt.confirm(`Do you really want to delete the app "${app.identifier}"`);
if (confirmation) {
try {
yield interaction_1.out.progress("Deleting app ...", client.apps.delete(app.appName, app.ownerName));
}
catch (error) {
const statusCode = error.response.status;
if (statusCode >= 400) {
switch (statusCode) {
case 404:
return commandline_1.failure(commandline_1.ErrorCodes.NotFound, `the app "${app.identifier}" could not be found`);
default:
return commandline_1.failure(commandline_1.ErrorCodes.Exception, "Unknown error when deleting the app");
}
}
}
}
else {
interaction_1.out.text(`Deletion of "${app.identifier}" canceled`);
}
return commandline_1.success();
});
}
};
AppDeleteCommand = __decorate([
commandline_1.help("Delete an app")
], AppDeleteCommand);
exports.default = AppDeleteCommand;