class Feature::Repository::RedisRepository

RedisRepository for active feature list

Example usage:

repository = RedisRepository.new("feature_toggles")
repository.add_active_feature(:feature_name)

'feature_toggles' can be whatever name you want to use for the Redis hash that will store all of your feature toggles.

Attributes

redis[W]

Public Class Methods

new(redis_key, client = nil) click to toggle source

Constructor

@param redis_key the key of the redis hash where all the toggles will be stored

# File lib/feature/repository/redis_repository.rb, line 19
def initialize(redis_key, client = nil)
  @redis_key = redis_key
  @redis = client unless client.nil?
end

Public Instance Methods

active_features() click to toggle source

Returns list of active features

@return [Array<Symbol>] list of active features

# File lib/feature/repository/redis_repository.rb, line 28
def active_features
  redis.hgetall(@redis_key).select { |_k, v| v.to_s == 'true' }.map { |k, _v| k.to_sym }
end
add_active_feature(feature) click to toggle source

Add an active feature to repository

@param [Symbol] feature the feature to be added

# File lib/feature/repository/redis_repository.rb, line 36
def add_active_feature(feature)
  check_feature_is_not_symbol(feature)
  check_feature_already_in_list(feature)
  redis.hset(@redis_key, feature, true)
end

Private Instance Methods

check_feature_already_in_list(feature) click to toggle source

Checks if given feature is already added to list of active features and raises an exception if so

@param [Symbol] feature the feature to be checked

# File lib/feature/repository/redis_repository.rb, line 56
def check_feature_already_in_list(feature)
  raise ArgumentError, "feature :#{feature} already added" if redis.hexists(@redis_key, feature)
end
check_feature_is_not_symbol(feature) click to toggle source

Checks that given feature is a symbol, raises exception otherwise

@param [Sybmol] feature the feature to be checked

# File lib/feature/repository/redis_repository.rb, line 46
def check_feature_is_not_symbol(feature)
  raise ArgumentError, "#{feature} is not a symbol" unless feature.instance_of?(Symbol)
end
redis() click to toggle source

Returns the currently specified redis client

@return [Redis] Currently set redis client

# File lib/feature/repository/redis_repository.rb, line 65
def redis
  @redis ||= Redis.current
end