Class: RailsCredentialsManager::Set
- Inherits:
-
Base
- Object
- Base
- RailsCredentialsManager::Set
show all
- Defined in:
- lib/rails_credentials_manager/set.rb
Constant Summary
Constants inherited
from Base
Base::AVAILABLE_ENVIRONMENTS
Instance Method Summary
collapse
Methods inherited from Base
#config_has_keys?, #configs, #initialize, #pastel, #print_key_and_value
Instance Method Details
#deep_set!(obj, keys, value) ⇒ Object
44
45
46
47
48
49
50
51
52
|
# File 'lib/rails_credentials_manager/set.rb', line 44
def deep_set!(obj, keys, value)
key = keys.first
if keys.length == 1
obj[key] = value
else
obj[key] = {} unless obj[key]
deep_set!(obj[key], keys.slice(1..-1), value)
end
end
|
#normalize_new_value(new_value) ⇒ Object
54
55
56
57
58
|
# File 'lib/rails_credentials_manager/set.rb', line 54
def normalize_new_value(new_value)
return if new_value.in?(%w[nil null])
new_value
end
|
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# File 'lib/rails_credentials_manager/set.rb', line 3
def perform(key, new_value)
key_with_path = key.split(".").map(&:to_sym)
new_value = normalize_new_value(new_value)
configs.each do |env, config|
puts pastel.green("#{env}:")
update_config = true
if config_has_keys?(config, key_with_path)
previous_value = configs[env].dig(*key_with_path)
if previous_value == new_value
value = "NOT CHANGED. The value already the same: #{new_value.inspect}"
update_config = false
else
value = "CHANGED: #{new_value.inspect}; previous value: #{previous_value.inspect}"
end
else
value = "ADDED: #{new_value}"
end
print_key_and_value(key, value)
if update_config
updated_config = config.dup
deep_set!(updated_config, key_with_path, new_value)
config_as_string = updated_config.deep_stringify_keys.to_yaml[4..]
rewrite_config_for(env, config_as_string)
end
end
end
|
#rewrite_config_for(environment, new_config) ⇒ Object
35
36
37
38
39
40
41
42
|
# File 'lib/rails_credentials_manager/set.rb', line 35
def rewrite_config_for(environment, new_config)
ActiveSupport::EncryptedConfiguration.new(
config_path: "config/credentials/#{environment}.yml.enc",
key_path: "config/credentials/#{environment}.key",
env_key: "RAILS_MASTER_KEY",
raise_if_missing_key: true
).write(new_config)
end
|