| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // Generated by IcedCoffeeScript 1.7.1-c
- (function() {
- var BufferInStream, BufferOutStream, Command, E, add_option_dict, dv, env, _ref,
- __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; };
- dv = require('./decrypt_and_verify');
- add_option_dict = require('./argparse').add_option_dict;
- env = require('../env').env;
- _ref = require('iced-spawn'), BufferOutStream = _ref.BufferOutStream, BufferInStream = _ref.BufferInStream;
- E = require('../err').E;
- exports.Command = Command = (function(_super) {
- __extends(Command, _super);
- function Command() {
- return Command.__super__.constructor.apply(this, arguments);
- }
- Command.prototype.set_argv = function(a) {
- var n;
- if ((n = a.files.length) > 2) {
- return new E.ArgsError("Expected 1 or 2 files; got " + n);
- } else {
- return Command.__super__.set_argv.call(this, a);
- }
- };
- Command.prototype.add_subcommand_parser = function(scp) {
- var name, opts, sub;
- opts = {
- aliases: [],
- help: "verify a file"
- };
- name = "verify";
- sub = scp.addParser(name, opts);
- add_option_dict(sub, dv.Command.OPTS);
- sub.addArgument(["files"], {
- nargs: '*'
- });
- return opts.aliases.concat([name]);
- };
- Command.prototype.do_keypull = function(cb) {
- return cb(null);
- };
- Command.prototype.do_output = function(out, cb) {
- return cb(null);
- };
- Command.prototype.patch_gpg_args = function(args) {
- return args.push("--verify");
- };
- Command.prototype.get_files = function(args) {
- var _ref1;
- if ((_ref1 = this.argv.files) != null ? _ref1.length : void 0) {
- args.push.apply(args, this.argv.files);
- return true;
- } else {
- return false;
- }
- };
- return Command;
- })(dv.Command);
- }).call(this);
|