appcenter-cli
Version:
Command line tool for Visual Studio App Center
68 lines (67 loc) • 3.98 kB
JavaScript
;
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 util_1 = require("util");
const debug = require("debug")("appcenter-cli:commands:codepush:deployment:rename");
let CodePushRenameDeploymentCommand = class CodePushRenameDeploymentCommand extends commandline_1.AppCommand {
constructor(args) {
super(args);
}
run(client) {
return __awaiter(this, void 0, void 0, function* () {
const app = this.app;
try {
debug("Renaming CodePush deployments");
yield interaction_1.out.progress(`Renaming CodePush deployments...`, client.codePushDeployments.update(this.currentDeploymentName, app.ownerName, app.appName, this.newDeploymentName));
}
catch (error) {
debug(`Failed to rename deployments - ${util_1.inspect(error)}`);
if (error.statusCode === 404) {
const appNotFoundErrorMsg = `The deployment ${this.currentDeploymentName} for app ${this.identifier} does not exist.`;
return commandline_1.failure(commandline_1.ErrorCodes.NotFound, appNotFoundErrorMsg);
}
else if (error.statusCode === 409) {
const alreadyExistErrorMsg = `The deployment with name ${this.newDeploymentName} already exists.`;
return commandline_1.failure(commandline_1.ErrorCodes.Exception, alreadyExistErrorMsg);
}
else {
return commandline_1.failure(commandline_1.ErrorCodes.Exception, error.response.bodyAsText);
}
}
interaction_1.out.text(`Successfully renamed the ${this.currentDeploymentName} deployment to ${this.newDeploymentName} for the ${this.identifier} app.`);
return commandline_1.success();
});
}
};
__decorate([
commandline_1.help("Specifies CodePush deployment name to be renamed"),
commandline_1.name("current-deployment-name"),
commandline_1.position(0),
commandline_1.required
], CodePushRenameDeploymentCommand.prototype, "currentDeploymentName", void 0);
__decorate([
commandline_1.help("Specifies new CodePush deployment name"),
commandline_1.name("new-deployment-name"),
commandline_1.position(1),
commandline_1.required
], CodePushRenameDeploymentCommand.prototype, "newDeploymentName", void 0);
CodePushRenameDeploymentCommand = __decorate([
commandline_1.help("Rename CodePush deployment")
], CodePushRenameDeploymentCommand);
exports.default = CodePushRenameDeploymentCommand;