occaecatidicta
Version:
36 lines (32 loc) • 1.15 kB
text/typescript
import { getLogger } from 'omelox-logger';
import * as path from 'path';
let logger = getLogger('omelox-cli', path.basename(__filename));
import * as util from '../util';
import { consts } from '../consts';
require('cliff');
import { ICommand, AgentCommand } from '../command';
import { ReadLine } from 'readline';
import { AdminClient } from 'omelox-admin';
export default function (opts: object) {
return new Command(opts);
}
export let commandId = 'kill';
export let helpCommand = 'help kill';
export class Command implements ICommand {
constructor(opts: object) {
}
handle(agent: AgentCommand, comd: string, argv: string, msg: {[key: string]: string}, rl: ReadLine, client: AdminClient): void {
rl.question(consts.KILL_QUESTION_INFO, function (answer) {
if (answer === 'yes') {
client.request(consts.CONSOLE_MODULE, {
signal: 'kill'
}, function (err: Error, data: any) {
if (err) console.log(err);
rl.prompt();
});
} else {
rl.prompt();
}
});
}
}