immutable_struct_ex_redactable
Introduction
immutable_struct_ex_redactable
is the redactable version of the world-famous immutable_struct_ex immutable struct :). To find out more about the immutable_struct_ex gem, visit the Rubygems.org entry for immutable_struct_ex.
immutable_struct_ex_redactable
maintains all the functionality of the immutable_struct_ex gem, but allows you to create immutable structs that can be configured to redact field values using standard gem configuration (ImmutableStructExRedactable.configure { |config| ... }
) or by passing configuration options to the appropriate method (ImmutableStructExRedactable.create_with(config, ...)
).
NOTE: both whitelisting and blacklisting are supported.
Usage
Follow the instructions for Installation first, to incorporate this gem into your code.
Basic usage
Configure Gem Global Defaults
immutable_struct_ex_redactable, by default, will redact fields named :password
using the redacted label "******"
. This will not meet your needs in all circumstances most likely. If this is not the case, you may change the fields that are redacted and the redactable label by changing the immutable_struct_ex_redactable configuration via the #whitelist
or #blacklist
configuration options:
Using a whitelist
ImmutableStructExRedactable::configure do |config|
config.whitelist = %i[first last]
config.redacted_label = '[REDACTED]'
end
fields = {
first: 'John',
last: 'Smith',
password: 'p@ssw0rd',
dob: '1986-05-12'
}
ImmutableStructExRedactable.create(**fields)
=> #<struct first="John", last="Smith", password="[REDACTED]", dob="[REDACTED]">
fields = {
first: 'Jane',
last: 'Smith',
password: 'h3l10W04lD',
dob: '1990-12-26'
}
ImmutableStructExRedactable.create(**fields)
=> #<struct first="Jane", last="Smith", password="[REDACTED]", dob="[REDACTED]">
Using a blacklist
ImmutableStructExRedactable::configure do |config|
config.blacklist = %i[password dob ssn phone]
config.redacted_label = '[REDACTED]'
end
fields = {
first: 'John',
last: 'Smith',
password: 'p@ssw0rd',
dob: '1986-05-12'
}
ImmutableStructExRedactable.create(**fields)
=> #<struct first="John", last="Smith", password="[REDACTED]", dob="[REDACTED]">
fields = {
first: 'Jane',
last: 'Smith',
password: 'h3l10W04lD',
dob: '1990-12-26'
}
ImmutableStructExRedactable.create(**fields)
=> #<struct first="Jane", last="Smith", password="[REDACTED]", dob="[REDACTED]">
NOTE: Setting the global defaults in the above manner will affect every immutable_struct_ex_redactable struct instance you create unless you override the global configuration options, by passing a custom configuration.
Overriding the Global Configuration Options
To override the global configuration options, you may do so by calling the ImmutableStructExRedactable#create_with
method in the following manner:
custom_config = ImmutableStructExRedactable::Configuration.new.tap do |config|
config.whitelist = %i[first last]
config.redacted_label = '[NO WAY JOSE]'
end
fields = {
first: 'John',
last: 'Smith',
password: 'p@ssw0rd',
dob: '1986-05-12'
}
ImmutableStructExRedactable.create_with(custom_config, **fields)
=> #<struct first="John", last="Smith", password="[NO WAY JOSE]", dob="[NO WAY JOSE]">
Access to the Original Redacted Field Values
By default, immutable_struct_ex_redactable will not allow access to redacted field values; that is, field values marked for redaction via the global configuration (ImmutableStructExRedactable::Configuration#whitelist/#blacklist
) or by overriding the global configuration by passing a custom configuration (ImmutableStructExRedactable.create_with(my_config, ...)
). However, if you really need access to redacted field values in their original, unredacted form, you can turn on the ImmutableStructExRedactable::Configuration#redacted_unsafe
option in the global configuration or turn this same option on when passing a custom configuration. Turning the redacted_unsafe
configuration option on in either scenario will instruct immutable_struct_ex_redactable to create private methods on structs created that will allow access to the original unredacted field values via send:
. The private methods created that will allow access to the original unredacted field values, will have the following naming convention:
unredacted_<redacted field>
For example:
custom_config = ImmutableStructExRedactable::Configuration.new.tap do |config|
config.whitelist = %i[username]
config.redacted_unsafe = true
end
hash = { username: 'jsmith', password: 'p@ssw0rd' }
struct = ImmutableStructExRedactable.create_with(custom_config, **hash) do
def to_h_unredacted
{
username: username,
password: send(:unredacted_password)
}
end
end
=> #<struct username="jsmith", password="******">
struct.unredacted_password
struct.send :unredacted_password
struct.to_h_unredacted
&blocks are Permitted
Current immutable_struct_ex
gem functionality is still available, so passing &block
is permitted. See immutable_struct_ex gem for more details:
fields = { first: 'John', last: 'Smith', password: 'p@ssw0rd' }
struct = ImmutableStructExRedactable.create(**fields) do
def full_name
"#{first} #{last}"
end
end
struct.full_name
=> "John Smith"
Miscellaneous Examples
class MyRedactableImmutableStruct
include ImmutableStructExRedactable
class << self
def create
self.new.send(:execute)
end
end
private
attr_reader :results
def execute
@results ||= create_with(config, username: 'jsmith', password: 'p@ssw0rd') do
def jsmith?
username == 'jsmith'
end
end
end
def config
@config ||= ImmutableStructExRedactable::Configuration.new.tap do |config|
config.whitelist = %i[username]
config.redacted_label = 'xxxxxx'
end
end
end
results = MyRedactableImmutableStruct.create
results.jsmith?
Installation
Add this line to your application's Gemfile:
gem 'immutable_struct_ex_redactable'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install immutable_struct_ex_redactable
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/immutable_struct_ex_redactable. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the ImmutableStructExRedactable project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.