Module: AbstractFeatureBranch
- Extended by:
- Forwardable
- Defined in:
- lib/abstract_feature_branch.rb,
lib/abstract_feature_branch/configuration.rb,
lib/generators/abstract_feature_branch/context_generator.rb,
lib/generators/abstract_feature_branch/install_generator.rb
Defined Under Namespace
Modules: FileBeautifier, Generators
Classes: Configuration
Constant Summary
collapse
- ENV_FEATURE_PREFIX =
"abstract_feature_branch_"
- REDIS_HKEY =
"abstract_feature_branch"
Class Method Summary
collapse
Class Method Details
.application_features ⇒ Object
79
80
81
82
|
# File 'lib/abstract_feature_branch.rb', line 79
def application_features
unload_application_features unless cacheable?
environment_features(application_environment)
end
|
.cacheable? ⇒ Boolean
95
96
97
98
99
|
# File 'lib/abstract_feature_branch.rb', line 95
def cacheable?
value = downcase_keys(cacheable)[application_environment]
value = (application_environment != 'development') if value.nil?
value
end
|
.clear_store_features ⇒ Object
Gets features array (all features) from storage (e.g. Redis client)
139
140
141
142
143
144
|
# File 'lib/abstract_feature_branch.rb', line 139
def clear_store_features
raise 'Feature storage (e.g. Redis) is not setup!' if feature_store.nil?
feature_store.hkeys(REDIS_HKEY).each do |feature|
feature_store.hdel(REDIS_HKEY, feature)
end
end
|
.configuration ⇒ Object
26
27
28
|
# File 'lib/abstract_feature_branch.rb', line 26
def configuration
@configuration ||= Configuration.new
end
|
.delete_store_feature(feature) ⇒ Object
Gets feature value (true or false) from storage (e.g. Redis client)
126
127
128
129
130
|
# File 'lib/abstract_feature_branch.rb', line 126
def delete_store_feature(feature)
raise 'Feature storage (e.g. Redis) is not setup!' if feature_store.nil?
feature = feature.to_s
feature_store.hdel(REDIS_HKEY, feature)
end
|
.environment_features(environment) ⇒ Object
performance optimization via caching of feature values resolved through environment variable overrides and local features
67
68
69
70
|
# File 'lib/abstract_feature_branch.rb', line 67
def environment_features(environment)
@environment_features ||= {}
@environment_features[environment] ||= load_environment_features(environment)
end
|
.environment_variable_overrides ⇒ Object
43
44
45
|
# File 'lib/abstract_feature_branch.rb', line 43
def environment_variable_overrides
@environment_variable_overrides ||= load_environment_variable_overrides
end
|
58
59
60
|
# File 'lib/abstract_feature_branch.rb', line 58
def features
@features ||= load_features
end
|
.get_store_feature(feature) ⇒ Object
Gets feature value (true or false) from storage (e.g. Redis client)
112
113
114
115
116
117
118
119
120
121
122
123
|
# File 'lib/abstract_feature_branch.rb', line 112
def get_store_feature(feature)
raise 'Feature storage (e.g. Redis) is not setup!' if feature_store.nil?
feature = feature.to_s
value = feature_store.hget(REDIS_HKEY, feature)
if value.nil?
matching_feature = get_store_features.find { |store_feature| store_feature.downcase == feature.downcase }
value = feature_store.hget(REDIS_HKEY, matching_feature) if matching_feature
end
return nil if value.nil?
return 'per_user' if value.to_s.downcase == 'per_user'
value.to_s.downcase == 'true'
end
|
.get_store_features ⇒ Object
Gets features array (all features) from storage (e.g. Redis client)
133
134
135
136
|
# File 'lib/abstract_feature_branch.rb', line 133
def get_store_features
raise 'Feature storage (e.g. Redis) is not setup!' if feature_store.nil?
feature_store.hkeys(REDIS_HKEY)
end
|
.load_application_features ⇒ Object
.load_environment_features(environment) ⇒ Object
71
72
73
74
75
76
77
78
|
# File 'lib/abstract_feature_branch.rb', line 71
def load_environment_features(environment)
@environment_features ||= {}
features[environment] ||= {}
local_features[environment] ||= {}
@environment_features[environment] = features[environment].
merge(local_features[environment]).
merge(environment_variable_overrides)
end
|
.load_environment_variable_overrides ⇒ Object
46
47
48
|
# File 'lib/abstract_feature_branch.rb', line 46
def load_environment_variable_overrides
@environment_variable_overrides = featureize_keys(downcase_keys(booleanize_values(select_feature_keys(ENV))))
end
|
.load_features ⇒ Object
61
62
63
64
|
# File 'lib/abstract_feature_branch.rb', line 61
def load_features
@features = {}
load_specific_features(@features, '.yml')
end
|
.load_local_features ⇒ Object
53
54
55
56
|
# File 'lib/abstract_feature_branch.rb', line 53
def load_local_features
@local_features = {}
load_specific_features(@local_features, '.local.yml')
end
|
.load_redis_overrides ⇒ Object
33
34
35
36
37
38
39
40
41
|
# File 'lib/abstract_feature_branch.rb', line 33
def load_redis_overrides
return {} if feature_store.nil?
redis_feature_hash = get_store_features.inject({}) do |output, feature|
output.merge(feature => get_store_feature(feature))
end
downcase_keys(redis_feature_hash)
end
|
.local_features ⇒ Object
50
51
52
|
# File 'lib/abstract_feature_branch.rb', line 50
def local_features
@local_features ||= load_local_features
end
|
.redis_overrides ⇒ Object
30
31
32
|
# File 'lib/abstract_feature_branch.rb', line 30
def redis_overrides
load_redis_overrides
end
|
.set_store_feature(feature, value) ⇒ Object
Sets feature value (true or false) in storage (e.g. Redis client)
102
103
104
105
106
107
108
109
|
# File 'lib/abstract_feature_branch.rb', line 102
def set_store_feature(feature, value)
raise 'Feature storage (e.g. Redis) is not setup!' if feature_store.nil?
feature = feature.to_s
return delete_store_feature(feature) if value.nil?
value = 'true' if value == true
value = 'false' if value == false
feature_store.hset(REDIS_HKEY, feature, value)
end
|
.toggle_features_for_user(user_id, features) ⇒ Object
146
147
148
149
150
151
152
153
154
|
# File 'lib/abstract_feature_branch.rb', line 146
def toggle_features_for_user(user_id, features)
features.each do |name, value|
if value
feature_store.sadd("#{ENV_FEATURE_PREFIX}#{name.to_s.downcase}", user_id)
else
feature_store.srem("#{ENV_FEATURE_PREFIX}#{name.to_s.downcase}", user_id)
end
end
end
|
.unload_application_features ⇒ Object
89
90
91
92
93
94
|
# File 'lib/abstract_feature_branch.rb', line 89
def unload_application_features
@environment_variable_overrides = nil
@features = nil
@local_features = nil
@environment_features = nil
end
|