Class: Rails::Command::EncryptedCommand

Inherits:
Base
  • Object
show all
Includes:
Helpers::Editor
Defined in:
railties/lib/rails/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, namespace, perform, printing_commands, usage_path

Methods included from Actions

#load_generators, #load_tasks, #require_application!, #require_application_and_environment!, #require_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 'railties/lib/rails/commands/encrypted/encrypted_command.rb', line 23

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



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

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