b5c706326a
Fixes that make this work:
* A change in Ruby (ce635262f5
)
requires passing in the exact required length for OpenSSL keys and IVs.
* Ensure the secrets.yml is generated before any prepended modules are
loaded. This is done by renaming the `secret_token.rb` initializer to
`01_secret_token.rb`, which is a bit ugly but involves the least impact on
other files.
27 lines
642 B
Ruby
27 lines
642 B
Ruby
module HasVariable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
validates :key,
|
|
presence: true,
|
|
length: { maximum: 255 },
|
|
format: { with: /\A[a-zA-Z0-9_]+\z/,
|
|
message: "can contain only letters, digits and '_'." }
|
|
|
|
scope :order_key_asc, -> { reorder(key: :asc) }
|
|
|
|
attr_encrypted :value,
|
|
mode: :per_attribute_iv_and_salt,
|
|
insecure_mode: true,
|
|
key: Settings.attr_encrypted_db_key_base,
|
|
algorithm: 'aes-256-cbc'
|
|
|
|
def key=(new_key)
|
|
super(new_key.to_s.strip)
|
|
end
|
|
|
|
def to_runner_variable
|
|
{ key: key, value: value, public: false }
|
|
end
|
|
end
|
|
end
|