Class: Unleash::Context
- Inherits:
-
Object
- Object
- Unleash::Context
- Defined in:
- lib/unleash/context.rb
Constant Summary collapse
- ATTRS =
[:app_name, :environment, :user_id, :session_id, :remote_address, :current_time].freeze
Instance Method Summary collapse
- #get_by_name(name) ⇒ Object
- #include?(name) ⇒ Boolean
-
#initialize(params = {}) ⇒ Context
constructor
A new instance of Context.
- #to_s ⇒ Object
Constructor Details
#initialize(params = {}) ⇒ Context
Returns a new instance of Context.
7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/unleash/context.rb', line 7 def initialize(params = {}) raise ArgumentError, "Unleash::Context must be initialized with a hash." unless params.is_a?(Hash) self.app_name = value_for('appName', params, Unleash&.configuration&.app_name) self.environment = value_for('environment', params, Unleash&.configuration&.environment || 'default') self.user_id = value_for('userId', params)&.to_s self.session_id = value_for('sessionId', params) self.remote_address = value_for('remoteAddress', params) self.current_time = value_for('currentTime', params, Time.now.utc.iso8601.to_s) properties = value_for('properties', params) self.properties = properties.is_a?(Hash) ? properties.transform_keys(&:to_sym) : {} end |
Instance Method Details
#get_by_name(name) ⇒ Object
26 27 28 29 30 31 32 33 34 |
# File 'lib/unleash/context.rb', line 26 def get_by_name(name) normalized_name = underscore(name).to_sym if ATTRS.include? normalized_name self.send(normalized_name) else self.properties.fetch(normalized_name, nil) || self.properties.fetch(name.to_sym) end end |
#include?(name) ⇒ Boolean
36 37 38 39 40 41 |
# File 'lib/unleash/context.rb', line 36 def include?(name) normalized_name = underscore(name) return self.instance_variable_defined? "@#{normalized_name}" if ATTRS.include? normalized_name.to_sym self.properties.include?(normalized_name.to_sym) || self.properties.include?(name.to_sym) end |
#to_s ⇒ Object
21 22 23 24 |
# File 'lib/unleash/context.rb', line 21 def to_s "<Context: user_id=#{@user_id},session_id=#{@session_id},remote_address=#{@remote_address},properties=#{@properties}" \ ",app_name=#{@app_name},environment=#{@environment}>" end |