Class: Jets::Command::EncryptedCommand

Inherits:
Base
  • Object
show all
Includes:
Helpers::Editor
Defined in:
lib/jets/commands/encrypted/encrypted_command.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from Base

banner, base_name, command_name, default_command_root, desc, engine?, executable, exit_on_failure?, #help, hide_command!, inherited, long_desc, namespace, perform, printing_commands, usage_path

Methods included from ApiHelpers

#check_for_error_message!, #no_token_exit!, #paging_params

Methods included from AwsHelpers

#find_stack, #first_run?

Methods included from AwsServices

#apigateway, #aws_lambda, #aws_options, #cfn, #dynamodb, #logs, #s3, #s3_resource, #sns, #sqs, #sts

Methods included from AwsServices::StackStatus

#lookup, #stack_exists?, #stack_in_progress?

Methods included from AwsServices::GlobalMemoist

included

Methods included from Actions

#load_generators, #load_tasks, #require_application!, #require_application_and_environment!, #set_application_directory!

Instance Method Details

#edit(file_path) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/jets/commands/encrypted/encrypted_command.rb', line 23

def edit(file_path)
  require_application!
  encrypted = Jets.application.encrypted(file_path, key_path: options[:key])

  ensure_editor_available(command: "bin/jets encrypted:edit") || (return)
  ensure_encryption_key_has_been_added(options[:key]) if encrypted.key.nil?
  ensure_encrypted_file_has_been_added(file_path, options[:key])

  catch_editing_exceptions do
    change_encrypted_file_in_system_editor(file_path, options[:key])
  end

  say "File encrypted and saved."
rescue ActiveSupport::MessageEncryptor::InvalidMessage
  say "Couldn't decrypt #{file_path}. Perhaps you passed the wrong key?"
end

#show(file_path) ⇒ Object



40
41
42
43
44
45
# File 'lib/jets/commands/encrypted/encrypted_command.rb', line 40

def show(file_path)
  require_application!
  encrypted = Jets.application.encrypted(file_path, key_path: options[:key])

  say encrypted.read.presence || missing_encrypted_message(key: encrypted.key, key_path: options[:key], file_path: file_path)
end