Class: Rollout::Feature
- Inherits:
-
Object
- Object
- Rollout::Feature
- Defined in:
- lib/rollout/feature.rb
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#groups ⇒ Object
Returns the value of attribute groups.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#percentage ⇒ Object
Returns the value of attribute percentage.
-
#users ⇒ Object
Returns the value of attribute users.
Instance Method Summary collapse
- #active?(rollout, user) ⇒ Boolean
- #add_group(group) ⇒ Object
- #add_user(user) ⇒ Object
- #clear ⇒ Object
-
#initialize(name, string = nil, opts = {}) ⇒ Feature
constructor
A new instance of Feature.
- #remove_group(group) ⇒ Object
- #remove_user(user) ⇒ Object
- #serialize ⇒ Object
- #to_hash ⇒ Object
- #user_in_active_users?(user) ⇒ Boolean
Constructor Details
permalink #initialize(name, string = nil, opts = {}) ⇒ Feature
Returns a new instance of Feature.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/rollout/feature.rb', line 8 def initialize(name, string = nil, opts = {}) @options = opts @name = name if string raw_percentage, raw_users, raw_groups, raw_data = string.split('|', 4) @percentage = raw_percentage.to_f @users = users_from_string(raw_users) @groups = groups_from_string(raw_groups) @data = raw_data.nil? || raw_data.strip.empty? ? {} : JSON.parse(raw_data) else clear end end |
Instance Attribute Details
permalink #data ⇒ Object
Returns the value of attribute data.
5 6 7 |
# File 'lib/rollout/feature.rb', line 5 def data @data end |
permalink #groups ⇒ Object
Returns the value of attribute groups.
5 6 7 |
# File 'lib/rollout/feature.rb', line 5 def groups @groups end |
permalink #name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/rollout/feature.rb', line 6 def name @name end |
permalink #options ⇒ Object (readonly)
Returns the value of attribute options.
6 7 8 |
# File 'lib/rollout/feature.rb', line 6 def @options end |
permalink #percentage ⇒ Object
Returns the value of attribute percentage.
5 6 7 |
# File 'lib/rollout/feature.rb', line 5 def percentage @percentage end |
permalink #users ⇒ Object
Returns the value of attribute users.
5 6 7 |
# File 'lib/rollout/feature.rb', line 5 def users @users end |
Instance Method Details
permalink #active?(rollout, user) ⇒ Boolean
51 52 53 54 55 56 57 58 59 60 |
# File 'lib/rollout/feature.rb', line 51 def active?(rollout, user) if user id = user_id(user) user_in_percentage?(id) || user_in_active_users?(id) || user_in_active_group?(user, rollout) else @percentage == 100 end end |
permalink #add_group(group) ⇒ Object
[View source]
36 37 38 |
# File 'lib/rollout/feature.rb', line 36 def add_group(group) @groups << group.to_sym unless @groups.include?(group.to_sym) end |
permalink #add_user(user) ⇒ Object
[View source]
27 28 29 30 |
# File 'lib/rollout/feature.rb', line 27 def add_user(user) id = user_id(user) @users << id unless @users.include?(id) end |
permalink #clear ⇒ Object
[View source]
44 45 46 47 48 49 |
# File 'lib/rollout/feature.rb', line 44 def clear @groups = groups_from_string('') @users = users_from_string('') @percentage = 0 @data = {} end |
permalink #remove_group(group) ⇒ Object
[View source]
40 41 42 |
# File 'lib/rollout/feature.rb', line 40 def remove_group(group) @groups.delete(group.to_sym) end |
permalink #remove_user(user) ⇒ Object
[View source]
32 33 34 |
# File 'lib/rollout/feature.rb', line 32 def remove_user(user) @users.delete(user_id(user)) end |
permalink #serialize ⇒ Object
[View source]
23 24 25 |
# File 'lib/rollout/feature.rb', line 23 def serialize "#{@percentage}|#{@users.to_a.join(',')}|#{@groups.to_a.join(',')}|#{serialize_data}" end |
permalink #to_hash ⇒ Object
[View source]
66 67 68 69 70 71 72 73 |
# File 'lib/rollout/feature.rb', line 66 def to_hash { percentage: @percentage, groups: @groups, users: @users, data: @data, } end |
permalink #user_in_active_users?(user) ⇒ Boolean
62 63 64 |
# File 'lib/rollout/feature.rb', line 62 def user_in_active_users?(user) @users.include?(user_id(user)) end |