1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- const tslib_1 = require("tslib");
- const chalk_1 = require("chalk");
- const cli_utils_1 = require("@ionic/cli-utils");
- const guards_1 = require("@ionic/cli-utils/guards");
- const command_1 = require("@ionic/cli-utils/lib/command");
- const base_1 = require("./base");
- let SSHListCommand = class SSHListCommand extends base_1.SSHBaseCommand {
- preRun() {
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
- yield this.checkForOpenSSH();
- });
- }
- run(inputs, options) {
- return tslib_1.__awaiter(this, void 0, void 0, function* () {
- const { createFatalAPIFormat } = yield Promise.resolve().then(() => require('@ionic/cli-utils/lib/http'));
- const { columnar } = yield Promise.resolve().then(() => require('@ionic/cli-utils/lib/utils/format'));
- const { findHostSection, getConfigPath, isHostDirective, loadFromPath, } = yield Promise.resolve().then(() => require('@ionic/cli-utils/lib/ssh-config'));
- const token = yield this.env.session.getUserToken();
- const config = yield this.env.config.load();
- let activeFingerprint;
- let foundActiveKey = false;
- const sshConfigPath = getConfigPath();
- const conf = yield loadFromPath(sshConfigPath);
- const section = findHostSection(conf, yield this.env.config.getGitHost());
- if (section && section.config) {
- const [identityFile] = section.config.filter(line => {
- return isHostDirective(line) && line.param === 'IdentityFile';
- });
- if (isHostDirective(identityFile)) {
- const output = yield this.env.shell.run('ssh-keygen', ['-E', 'sha256', '-lf', identityFile.value], { showCommand: false, fatalOnError: false });
- activeFingerprint = output.trim().split(' ')[1];
- }
- }
- const { req } = yield this.env.client.make('GET', `/users/${config.user.id}/sshkeys`);
- req.set('Authorization', `Bearer ${token}`);
- const res = yield this.env.client.do(req);
- if (!guards_1.isSSHKeyListResponse(res)) {
- throw createFatalAPIFormat(req, res);
- }
- if (res.data.length === 0) {
- this.env.log.warn(`No SSH keys found. Use ${chalk_1.default.green('ionic ssh add')} to add keys to Ionic.`);
- return;
- }
- const keysMatrix = res.data.map(sshkey => {
- const data = [sshkey.fingerprint, sshkey.name, sshkey.annotation];
- if (sshkey.fingerprint === activeFingerprint) {
- foundActiveKey = true;
- return data.map(v => chalk_1.default.bold(v));
- }
- return data;
- });
- const table = columnar(keysMatrix, {
- columnHeaders: ['fingerprint', 'name', 'annotation'],
- });
- this.env.log.nl();
- if (foundActiveKey) {
- this.env.log.info(`The row in ${chalk_1.default.bold('bold')} is the key that this computer is using. To change, use ${chalk_1.default.green('ionic ssh use')}.\n`);
- }
- this.env.log.msg(table);
- this.env.log.nl();
- this.env.log.ok(`Showing ${chalk_1.default.bold(String(res.data.length))} SSH key${res.data.length === 1 ? '' : 's'}.`);
- this.env.log.nl();
- });
- }
- };
- SSHListCommand = tslib_1.__decorate([
- command_1.CommandMetadata({
- name: 'list',
- type: 'global',
- backends: [cli_utils_1.BACKEND_PRO],
- description: 'List your SSH public keys on Ionic',
- })
- ], SSHListCommand);
- exports.SSHListCommand = SSHListCommand;
|