Class: Rails::Secrets
- Inherits:
-
Object
- Object
- Rails::Secrets
- Defined in:
- lib/rails/secrets.rb
Overview
Greatly inspired by Ara T. Howard’s magnificent sekrets gem. 😘
Defined Under Namespace
Classes: MissingKeyError
Class Attribute Summary collapse
-
.root ⇒ Object
writeonly
Sets the attribute root.
Class Method Summary collapse
- .decrypt(data) ⇒ Object
- .encrypt(data) ⇒ Object
- .key ⇒ Object
- .parse(paths, env:) ⇒ Object
- .read ⇒ Object
- .read_for_editing(&block) ⇒ Object
- .write(contents) ⇒ Object
Class Attribute Details
.root=(value) ⇒ Object (writeonly)
Sets the attribute root
22 23 24 |
# File 'lib/rails/secrets.rb', line 22 def root=(value) @root = value end |
Class Method Details
.decrypt(data) ⇒ Object
45 46 47 |
# File 'lib/rails/secrets.rb', line 45 def decrypt(data) encryptor.decrypt_and_verify(data) end |
.encrypt(data) ⇒ Object
41 42 43 |
# File 'lib/rails/secrets.rb', line 41 def encrypt(data) encryptor.encrypt_and_sign(data) end |
.key ⇒ Object
37 38 39 |
# File 'lib/rails/secrets.rb', line 37 def key ENV["RAILS_MASTER_KEY"] || read_key_file || handle_missing_key end |
.parse(paths, env:) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/rails/secrets.rb', line 24 def parse(paths, env:) paths.each_with_object(Hash.new) do |path, all_secrets| require "erb" source = ERB.new(preprocess(path)).result secrets = YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(source) : YAML.load(source) secrets ||= {} all_secrets.merge!(secrets["shared"].deep_symbolize_keys) if secrets["shared"] all_secrets.merge!(secrets[env].deep_symbolize_keys) if secrets[env] end end |
.read ⇒ Object
49 50 51 |
# File 'lib/rails/secrets.rb', line 49 def read decrypt(IO.binread(path)) end |
.read_for_editing(&block) ⇒ Object
58 59 60 |
# File 'lib/rails/secrets.rb', line 58 def read_for_editing(&block) writing(read, &block) end |
.write(contents) ⇒ Object
53 54 55 56 |
# File 'lib/rails/secrets.rb', line 53 def write(contents) IO.binwrite("#{path}.tmp", encrypt(contents)) FileUtils.mv("#{path}.tmp", path) end |