Class: EYAML::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/eyaml/cli.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.exit_on_failure?Boolean

Returns:

  • (Boolean)


63
64
65
# File 'lib/eyaml/cli.rb', line 63

def self.exit_on_failure?
  true
end

Instance Method Details

#decrypt(file) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/eyaml/cli.rb', line 21

def decrypt(file)
  file_path = Pathname.new(file)
  unless file_path.exist?
    puts "#{file} doesn't exist"
    return
  end

  key_options = if options.fetch(:"key-from-stdin")
    # Read key from STDIN
    {private_key: $stdin.gets}
  else
    {keydir: options.fetch(:keydir, nil)}
  end

  eyaml = EYAML.decrypt_file(file, **key_options)

  if options.has_key?("output")
    output_file = Pathname.new(options.fetch(:output))
    File.write(output_file, eyaml)
    return
  end

  puts eyaml
end

#encrypt(*files) ⇒ Object



6
7
8
9
10
11
12
13
14
15
# File 'lib/eyaml/cli.rb', line 6

def encrypt(*files)
  files.each do |file|
    file_path = Pathname.new(file)
    next unless file_path.exist?

    bytes_written = EYAML.encrypt_file_in_place(file_path)

    puts "Wrote #{bytes_written} bytes to #{file_path}."
  end
end

#keygenObject



49
50
51
52
53
54
55
56
57
# File 'lib/eyaml/cli.rb', line 49

def keygen
  public_key, private_key = EYAML.generate_keypair(
    save: options.fetch(:write),
    keydir: options.fetch(:keydir, nil)
  )

  puts "Public Key: #{public_key}"
  puts "Private Key: #{private_key}" unless options.fetch(:write)
end