Class: Rails::Command::EncryptedCommand

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

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#edit(file_path) ⇒ Object



56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/rails/commands/encrypted_command.rb', line 56

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

  ensure_editor_available(command: "bin/rails 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



73
74
75
76
77
78
# File 'lib/rails/commands/encrypted_command.rb', line 73

def show(file_path)
  require_application_and_environment!
  encrypted = Rails.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