Class: SSH::Manager::Client
- Inherits:
-
Object
- Object
- SSH::Manager::Client
- Defined in:
- lib/ssh/manager/client.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
Instance Method Summary collapse
- #execute! ⇒ Object
- #extract_options ⇒ Object
-
#initialize(argv) ⇒ Client
constructor
A new instance of Client.
Constructor Details
#initialize(argv) ⇒ Client
Returns a new instance of Client.
13 14 15 16 17 |
# File 'lib/ssh/manager/client.rb', line 13 def initialize(argv) @options = {} @argv = argv end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
11 12 13 |
# File 'lib/ssh/manager/client.rb', line 11 def @options end |
Instance Method Details
#execute! ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/ssh/manager/client.rb', line 19 def execute! cli = SSH::Manager::Cli if @options[:add] puts 'Adding ..' cli.new(@options).add_connection(@options[:add]) elsif @options[:connect] puts 'Connecting ..' cli.new(@options).connect_to(@options[:connect]) elsif @options[:transfer_file] puts 'Transfering file..' cli.new(@options).transfer_file(@options[:transfer_file], @argv[2], @argv[3]) elsif @options[:delete] puts 'Deleting ..' cli.new(@options).delete(@options[:delete]) elsif @options[:list] puts 'Listing ..' cli.new(@options).list_all elsif @options[:upgrade] puts 'Checking for new updates ..' cli.new(@options).update_available elsif @options[:update] puts 'Updating ..' cli.new(@options).update(@options[:update]) elsif @options[:multi] puts 'Connecting to multiple ips..' cli.new(@options).multiple_connection(@options[:multi]) elsif @options[:transfer_key] puts 'Transfering key..' cli.new(@options).transfer_key(@options[:transfer_key]) elsif @options[:search] puts 'Searching ..' cli.new(@options).search_for(@options[:search]) # elsif @options[:settings] # puts 'Settings' # cli.new(@options).settings(@options[:settings]) else cli.new(@argv.first).connect_to(@argv.first) if @argv != [] puts @optparse if @argv ==[] exit end end |
#extract_options ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/ssh/manager/client.rb', line 61 def @optparse = OptionParser.new do |opts| opts. = "Usage: sshm [options] ..." @options[:add] = false opts.on( '-a', '--add ip', 'Add ip to your Connection list' ) do |opt| @options[:add] = opt end @options[:transfer_key] = false opts.on( '-t', '--transferkey id', 'transfer key to <id>' ) do |opt| @options[:transfer_key] = opt end @options[:transfer_file] = false opts.on( '-r', '--transferfile filename', 'file or dir / connection_ID / dest_path(default is /home/user/)' ) do |opt| @options[:transfer_file] = opt end @options[:connect] = false opts.on( '-c', '--connect id', 'connect to <id>' ) do |opt| @options[:connect] = opt end @options[:delete] = false opts.on( '-d', '--delete id', 'delete connection <id>' ) do |opt| @options[:delete] = opt end @options[:update] = false opts.on( '-u', '--update id', 'update connection <id>' ) do |opt| @options[:update] = opt end @options[:search] = false opts.on( '-s', '--search string', 'search connection for given criteria' ) do |opt| @options[:search] = opt end @options[:multi] = false opts.on( '-m', '--multi string', 'connect to multiple ips with given criteria' ) do |opt| @options[:multi] = opt end @options[:list] = false opts.on( '-l', '--list', 'list all connections' ) do @options[:list] = true end @options[:upgrade] = false opts.on( '-g', '--upgrade', 'checks for upgrade' ) do @options[:upgrade] = true end opts.on( '-h', '--help', 'Display this screen' ) do puts opts exit end opts.on( '-v', '--version', 'Print programs version' ) do puts SSH::Manager::VERSION exit end end @optparse.parse(@argv) end |