Module: Vault::Rails
- Defined in:
- lib/vault/rails.rb,
lib/vault/rails/errors.rb,
lib/vault/rails/version.rb,
lib/vault/rails/configurable.rb,
lib/vault/rails/json_serializer.rb
Defined Under Namespace
Modules: Configurable, JSONSerializer Classes: InvalidCiphertext, UnknownSerializerError, ValidationFailedError, VaultRailsError
Constant Summary collapse
- SERIALIZERS =
The list of serializers.
{ json: Vault::Rails::JSONSerializer, }.freeze
- DEFAULT_ENCODING =
The default encoding.
"utf-8".freeze
- DEV_WARNING =
The warning string to print when running in development mode.
"[vault-rails] Using in-memory cipher - this is not secure " \ "and should never be used in production-like environments!".freeze
- DEV_PREFIX =
"vault:dev:".freeze
- VERSION =
"0.9.0"
Class Attribute Summary collapse
-
.client ⇒ Vault::Client
readonly
API client object based off the configured options in Configurable.
Class Method Summary collapse
-
.decrypt(path, key, ciphertext, client: self.client, context: nil) ⇒ String
Decrypt the given ciphertext data using the provided mount and key.
-
.encrypt(path, key, plaintext, client: self.client, context: nil) ⇒ String
Encrypt the given plaintext data using the provided mount and key.
-
.method_missing(m, *args, &block) ⇒ Object
Delegate all methods to the client object, essentially making the module object behave like a Client.
-
.respond_to_missing?(m, include_private = false) ⇒ Boolean
Delegating ‘respond_to` to the Client.
-
.serializer_for(key) ⇒ ~Serializer
Get the serializer that corresponds to the given key.
- .setup! ⇒ Object
- .transform_decode(ciphertext, opts = {}) ⇒ Object
- .transform_encode(plaintext, opts = {}) ⇒ Object
Class Attribute Details
.client ⇒ Vault::Client (readonly)
API client object based off the configured options in Configurable.
38 39 40 |
# File 'lib/vault/rails.rb', line 38 def client @client end |
Class Method Details
.decrypt(path, key, ciphertext, client: self.client, context: nil) ⇒ String
Decrypt the given ciphertext data using the provided mount and key.
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/vault/rails.rb', line 111 def decrypt(path, key, ciphertext, client: self.client, context: nil) if ciphertext.blank? return ciphertext end path = path.to_s if !path.is_a?(String) key = key.to_s if !key.is_a?(String) with_retries do if self.enabled? result = self.vault_decrypt(path, key, ciphertext, client: client, context: context) else result = self.memory_decrypt(path, key, ciphertext, client: client, context: context) end return self.force_encoding(result) end end |
.encrypt(path, key, plaintext, client: self.client, context: nil) ⇒ String
Encrypt the given plaintext data using the provided mount and key.
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/vault/rails.rb', line 79 def encrypt(path, key, plaintext, client: self.client, context: nil) if plaintext.blank? return plaintext end path = path.to_s if !path.is_a?(String) key = key.to_s if !key.is_a?(String) with_retries do if self.enabled? result = self.vault_encrypt(path, key, plaintext, client: client, context: context) else result = self.memory_encrypt(path, key, plaintext, client: client, context: context) end return self.force_encoding(result) end end |
.method_missing(m, *args, &block) ⇒ Object
Delegate all methods to the client object, essentially making the module object behave like a Client.
53 54 55 56 57 58 59 |
# File 'lib/vault/rails.rb', line 53 def method_missing(m, *args, &block) if client.respond_to?(m) client.public_send(m, *args, &block) else super end end |
.respond_to_missing?(m, include_private = false) ⇒ Boolean
Delegating ‘respond_to` to the Client.
62 63 64 |
# File 'lib/vault/rails.rb', line 62 def respond_to_missing?(m, include_private = false) client.respond_to?(m, include_private) || super end |
.serializer_for(key) ⇒ ~Serializer
Get the serializer that corresponds to the given key. If the key does not correspond to a known serializer, an exception will be raised.
137 138 139 140 141 142 143 144 145 |
# File 'lib/vault/rails.rb', line 137 def serializer_for(key) key = key.to_sym if !key.is_a?(Symbol) if serializer = SERIALIZERS[key] return serializer else raise Vault::Rails::UnknownSerializerError.new(key) end end |
.setup! ⇒ Object
40 41 42 43 44 45 46 47 48 49 |
# File 'lib/vault/rails.rb', line 40 def setup! Vault.setup! @client = Vault.client @client.class.instance_eval do include Vault::Rails::Configurable end self end |
.transform_decode(ciphertext, opts = {}) ⇒ Object
160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/vault/rails.rb', line 160 def transform_decode(ciphertext, opts={}) return ciphertext if ciphertext&.empty? request_opts = {} request_opts[:value] = ciphertext if opts[:transformation] request_opts[:transformation] = opts[:transformation] end role_name = transform_role_name(opts) puts request_opts client.transform.decode(role_name: role_name, **request_opts) end |
.transform_encode(plaintext, opts = {}) ⇒ Object
147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/vault/rails.rb', line 147 def transform_encode(plaintext, opts={}) return plaintext if plaintext&.empty? request_opts = {} request_opts[:value] = plaintext if opts[:transformation] request_opts[:transformation] = opts[:transformation] end role_name = transform_role_name(opts) client.transform.encode(role_name: role_name, **request_opts) end |