@heroku-cli/plugin-pipelines
Version:
@heroku-cli/plugin-pipelines ============================
68 lines (67 loc) • 3.15 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const color_1 = tslib_1.__importDefault(require("@heroku-cli/color"));
const command_1 = require("@heroku-cli/command");
const cli_ux_1 = tslib_1.__importDefault(require("cli-ux"));
const api_1 = require("../../api");
const disambiguate_1 = tslib_1.__importDefault(require("../../disambiguate"));
const render_pipeline_1 = tslib_1.__importDefault(require("../../render-pipeline"));
async function getTeamOwner(heroku, name) {
const { body: team } = await api_1.getTeam(heroku, name);
return { id: team.id, type: 'team' };
}
async function getAccountOwner(heroku, name) {
const { body: account } = await api_1.getAccountInfo(heroku, name);
return { id: account.id, type: 'user' };
}
function getOwner(heroku, name) {
return getTeamOwner(heroku, name)
.catch(() => {
return getAccountOwner(heroku, name);
})
.catch(() => {
throw new Error(`Cannot find a team or account for "${name}"`);
});
}
class PipelinesTransfer extends command_1.Command {
async run() {
const { args, flags } = this.parse(PipelinesTransfer);
const pipeline = await disambiguate_1.default(this.heroku, flags.pipeline);
const newOwner = await getOwner(this.heroku, args.owner);
const apps = await api_1.listPipelineApps(this.heroku, pipeline.id);
const displayType = newOwner.type === 'user' ? 'account' : newOwner.type;
let confirmName = flags.confirm;
if (!confirmName) {
await render_pipeline_1.default(this.heroku, pipeline, apps);
cli_ux_1.default.log('');
cli_ux_1.default.warn(`This will transfer ${color_1.default.pipeline(pipeline.name)} and all of the listed apps to the ${args.owner} ${displayType}`);
cli_ux_1.default.warn(`to proceed, type ${color_1.default.red(pipeline.name)} or re-run this command with ${color_1.default.red('--confirm')} ${pipeline.name}`);
confirmName = await cli_ux_1.default.prompt('', {});
}
if (confirmName !== pipeline.name) {
cli_ux_1.default.warn(`Confirmation did not match ${color_1.default.red(pipeline.name)}. Aborted.`);
return;
}
cli_ux_1.default.action.start(`Transferring ${color_1.default.pipeline(pipeline.name)} pipeline to the ${args.owner} ${displayType}`);
await api_1.createPipelineTransfer(this.heroku, { pipeline: { id: pipeline.id }, new_owner: newOwner });
cli_ux_1.default.action.stop();
}
}
exports.default = PipelinesTransfer;
PipelinesTransfer.description = 'transfer ownership of a pipeline';
PipelinesTransfer.examples = [
'$ heroku pipelines:transfer admin@example.com -p my-pipeline',
'$ heroku pipelines:transfer admin-team -p my-pipeline',
];
PipelinesTransfer.args = [
{
name: 'owner',
description: 'the owner to transfer the pipeline to',
required: true,
},
];
PipelinesTransfer.flags = {
pipeline: command_1.flags.pipeline({ required: true }),
confirm: command_1.flags.string({ char: 'c' }),
};