Class: Trocla

Inherits:
Object
  • Object
show all
Defined in:
lib/trocla.rb,
lib/trocla/util.rb,
lib/trocla/hooks.rb,
lib/trocla/version.rb

Overview

Trocla class

Defined Under Namespace

Modules: Hooks Classes: Encryptions, Formats, Store, Stores, Util, VERSION

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config_file = nil) ⇒ Trocla

Returns a new instance of Trocla.



10
11
12
13
14
15
16
# File 'lib/trocla.rb', line 10

def initialize(config_file = nil)
  if config_file
    @config_file = File.expand_path(config_file)
  elsif File.exist?(def_config_file = File.expand_path('~/.troclarc.yaml')) || File.exist?(def_config_file = File.expand_path('/etc/troclarc.yaml'))
    @config_file = def_config_file
  end
end

Class Method Details

.open(config_file = nil) ⇒ Object



18
19
20
21
22
23
24
25
26
27
# File 'lib/trocla.rb', line 18

def self.open(config_file = nil)
  trocla = Trocla.new(config_file)

  if block_given?
    yield trocla
    trocla.close
  else
    trocla
  end
end

Instance Method Details

#available_format(key, options = {}) ⇒ Object



87
88
89
# File 'lib/trocla.rb', line 87

def available_format(key, options = {})
  render(false, store.formats(key), options)
end

#closeObject



107
108
109
# File 'lib/trocla.rb', line 107

def close
  store.close
end

#configObject



103
104
105
# File 'lib/trocla.rb', line 103

def config
  @config ||= read_config
end

#delete_password(key, format = nil, options = {}) ⇒ Object



69
70
71
72
73
74
75
76
77
78
79
# File 'lib/trocla.rb', line 69

def delete_password(key, format = nil, options = {})
  v = store.delete(key, format)
  hooks_runner.run('delete', key, format, options)
  if v.is_a?(Hash)
    Hash[*v.map do |f, encrypted_value|
      [f, render(format, decrypt(encrypted_value), options)]
    end.flatten]
  else
    render(format, decrypt(v), options)
  end
end

#encryptionObject



99
100
101
# File 'lib/trocla.rb', line 99

def encryption
  @encryption ||= Trocla::Encryptions[config['encryption']].new(config['encryption_options'], self)
end

#formats(format) ⇒ Object



95
96
97
# File 'lib/trocla.rb', line 95

def formats(format)
  (@format_cache ||= {})[format] ||= Trocla::Formats[format].new(self)
end

#get_password(key, format, options = {}) ⇒ Object



60
61
62
# File 'lib/trocla.rb', line 60

def get_password(key, format, options = {})
  render(format, decrypt(store.get(key, format)), options)
end

#password(key, format, options = {}) ⇒ Object



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
# File 'lib/trocla.rb', line 29

def password(key, format, options={})
  # respect a default profile, but let the
  # profiles win over the default options
  options['profiles'] ||= config['options']['profiles']
  options = merge_profiles(options['profiles']).merge(options) if options['profiles']
  options = config['options'].merge(options)

  raise "Format #{format} is not supported! Supported formats: #{Trocla::Formats.all.join(', ')}" unless Trocla::Formats::available?(format)

  unless (password = get_password(key, format, options)).nil?
    return password
  end

  plain_pwd = get_password(key, 'plain', options)
  if options['random'] && plain_pwd.nil?
    plain_pwd = Trocla::Util.random_str(options['length'].to_i, options['charset'])
    set_password(key, 'plain', plain_pwd, options) unless format == 'plain'
  elsif !options['random'] && plain_pwd.nil?
    raise "Password must be present as plaintext if you don't want a random password"
  end
  pwd = self.formats(format).format(plain_pwd, options)
  # it's possible that meanwhile another thread/process was faster in
  # formating the password. But we want todo that second lookup
  # only for expensive formats
  if self.formats(format).expensive?
    get_password(key, format, options) || set_password(key, format, pwd, options)
  else
    set_password(key, format, pwd, options)
  end
end

#reset_password(key, format, options = {}) ⇒ Object



64
65
66
67
# File 'lib/trocla.rb', line 64

def reset_password(key, format, options = {})
  delete_password(key, format)
  password(key, format, options)
end

#search_key(key, options = {}) ⇒ Object



91
92
93
# File 'lib/trocla.rb', line 91

def search_key(key, options = {})
  render(false, store.search(key), options)
end

#set_password(key, format, password, options = {}) ⇒ Object



81
82
83
84
85
# File 'lib/trocla.rb', line 81

def set_password(key, format, password, options = {})
  store.set(key, format, encrypt(password), options)
  hooks_runner.run('set', key, format, options)
  render(format, password, options)
end