| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- // Generated by IcedCoffeeScript 1.7.1-c
- (function() {
- var Base, Command, E, TrackSubSubCommand, add_option_dict, iced, log, __iced_k, __iced_k_noop,
- __hasProp = {}.hasOwnProperty,
- __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
- iced = require('iced-runtime').iced;
- __iced_k = __iced_k_noop = function() {};
- Base = require('./base').Base;
- log = require('../log');
- add_option_dict = require('./argparse').add_option_dict;
- E = require('../err').E;
- TrackSubSubCommand = require('../tracksubsub').TrackSubSubCommand;
- exports.Command = Command = (function(_super) {
- __extends(Command, _super);
- function Command() {
- return Command.__super__.constructor.apply(this, arguments);
- }
- Command.prototype.OPTS = TrackSubSubCommand.OPTS;
- Command.prototype.needs_configuration = function() {
- return true;
- };
- Command.prototype.add_subcommand_parser = function(scp) {
- var name, opts, sub;
- opts = {
- aliases: [],
- help: "verify a user's authenticity and optionally track them"
- };
- name = "track";
- sub = scp.addParser(name, opts);
- add_option_dict(sub, this.OPTS);
- sub.addArgument(["them"], {
- nargs: 1
- });
- return opts.aliases.concat([name]);
- };
- Command.prototype.run = function(cb) {
- var err, tssc, ___iced_passed_deferral, __iced_deferrals, __iced_k;
- __iced_k = __iced_k_noop;
- ___iced_passed_deferral = iced.findDeferral(arguments);
- tssc = new TrackSubSubCommand({
- args: {
- them: this.argv.them[0]
- },
- opts: this.argv
- });
- (function(_this) {
- return (function(__iced_k) {
- __iced_deferrals = new iced.Deferrals(__iced_k, {
- parent: ___iced_passed_deferral,
- filename: "/home/max/src/keybase/node-client/src/command/track.iced",
- funcname: "Command.run"
- });
- tssc.run(__iced_deferrals.defer({
- assign_fn: (function() {
- return function() {
- return err = arguments[0];
- };
- })(),
- lineno: 34
- }));
- __iced_deferrals._fulfill();
- });
- })(this)((function(_this) {
- return function() {
- if (typeof err === "undefined" || err === null) {
- log.info('Success!');
- }
- return cb(err);
- };
- })(this));
- };
- return Command;
- })(Base);
- }).call(this);
|