Class: Lockr

Inherits:
Object
  • Object
show all
Defined in:
lib/lockr.rb

Instance Method Summary collapse

Instance Method Details

#acquire_additional_input(options) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/lockr.rb', line 119

def acquire_additional_input( options)
  # id is required for all actions except list
  while options[:id].nil? and %w{ l list}.index( options[:action]).nil?
    options[:id] = ask("Id?  ") { |q| }
    options[:id] = nil if options[:id].strip() == '' 
  end
  
  # username is required for actions add, remove
  actions_requiring_username = %w{ a add r remove}
  while options[:username].nil? and not actions_requiring_username.index( options[:action]).nil?
    options[:username] = ask("Username?  ") { |q| }
    options[:username] = nil if options[:username].strip == ''
  end
  
  # url is optional for add
  actions_requiring_url = %w{ a add}
  if options[:url].nil? and not actions_requiring_url.index( options[:action]).nil?
    options[:url] = ask("Url?  ") { |q| }
    options[:url] = nil if options[:url].strip() == ''
  end
end

#merge_config(options) ⇒ Object



85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/lockr.rb', line 85

def merge_config( options)
  configfile = Configuration.new()
  
  if configfile.config.nil? 
    return
  end
  
  unless configfile.config.has_key?( :lockr)
    return
  end
  
  cfg = configfile.config[:lockr]
  options[:vault] = File.expand_path(cfg[:vault]) if options[:vault] == 'vault.yaml'
end

#parse_optionsObject



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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/lockr.rb', line 25

def parse_options()
  options = {}
  
  optparse = OptionParser.new do|opts|
  # Set a banner, displayed at the top
  # of the help screen.
    opts.banner = "Usage: lockr.rb [options]"
  
    # Define the options, and what they do
    options[:action] = nil
    opts.on( '-a', '--action ACTION', 'Execute the requested ACTION (add, remove, list, show)' ) do |id|
      options[:action] = id
    end
  
    options[:id] = nil
    opts.on( '-i', '--id ID', 'the ID of the password set' ) do |id|
      options[:id] = id
    end
    
    options[:keyfile] = nil
    opts.on( '-k', '--keyfile FILE', 'the FILE to use as key for the password encryption') do |file|
      options[:keyfile] = file
    end
    
    options[:vault] = 'vault.yaml'
    opts.on( '-v', '--vault FILE', 'FILE is the name of the vault to store the password sets') do |file|
      options[:vault] = file
    end
    
    options[:generatepwd] = nil
    opts.on( '-g', '--genpwd PARAMS', 'generate a random password (based on the optional PARAMS)') do |params|
      options[:generatepwd] = params
    end
  
    # This displays the help screen, all programs are
    # assumed to have this option.
    opts.on( '-h', '--help', 'Display this screen' ) do
      puts opts
      exit
    end
    
    opts.on('-v', '--version', 'Show version') do
      puts "Lockr #{LockrVer::VERSION} (#{LockrVer::DATE})"
      exit
    end
    
    opts.separator ""
    opts.separator "For detailed instructions on how to use Lockr, please visit http://lockr.byteblues.com"
  end
  
  # Parse the command-line. Remember there are two forms
  # of the parse method. The 'parse' method simply parses
  # ARGV, while the 'parse!' method parses ARGV and removes
  # any options found there, as well as any parameters for
  # the options. What's left is the list of files to resize.
  optparse.parse!

  options
end

#process_actions(options) ⇒ Object



141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'lib/lockr.rb', line 141

def process_actions( options)
  begin
    case options[:action]
    when 'a', 'add'
      if options[:generatepwd].nil?
        password = ask("Password?  ") { |q| q.echo = "x" }
      else 
        password = PasswordGenerator.new.generate( options[:generatepwd])
      end 
      
      action = AddAction.new( options[:id], options[:url], options[:username], password, options[:keyfile], options[:vault])
    when 'r', 'remove'
      action = RemoveAction.new( options[:id], options[:username], options[:keyfile], options[:vault])
    when 's', 'show'
      action = ShowAction.new( options[:id], options[:username], options[:keyfile], options[:vault])
    when 'l', 'list'
      action = ListAction.new( options[:keyfile], options[:vault])
    else
      puts "Unknown action #{options[:action]}"
    end
  rescue OpenSSL::Cipher::CipherError
    say( "<%= color('Invalid keyfile', :red) %>")
    exit 42
  end
end

#runObject



17
18
19
20
21
22
23
# File 'lib/lockr.rb', line 17

def run()
  options = parse_options()
  merge_config( options)
  validate_options( options)
  acquire_additional_input( options)
  process_actions( options)
end

#validate_options(options) ⇒ Object



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/lockr.rb', line 100

def validate_options( options)
  if options[:action].nil?
    puts 'Please provide an action (--action)'
    exit 1
  end
  
  allowed_actions = %w{ a add r remove s show l list}
  if allowed_actions.index( options[:action]).nil? 
    puts "Allowed actions are add, remove, list and show"
    exit 2
  end
  
  # keyfile is required for all actions other than list
  if options[:keyfile].nil? and %w{ l list}.index( options[:action]).nil?
    puts 'Please provide an encryption key file (--keyfile)'
    exit 3
  end
end