Class: Kameleoon::Targeting::VisitorNewReturnCondition Private

Inherits:
Condition
  • Object
show all
Defined in:
lib/kameleoon/targeting/conditions/visitor_new_return_condition.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary

Attributes inherited from Condition

#include, #type

Instance Method Summary collapse

Constructor Details

#initialize(json_condition) ⇒ VisitorNewReturnCondition

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of VisitorNewReturnCondition.



15
16
17
18
# File 'lib/kameleoon/targeting/conditions/visitor_new_return_condition.rb', line 15

def initialize(json_condition)
  super(json_condition)
  @visitor_type = json_condition['visitorType']
end

Instance Method Details

#check(data) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



20
21
22
23
24
25
26
27
28
29
30
# File 'lib/kameleoon/targeting/conditions/visitor_new_return_condition.rb', line 20

def check(data)
  return false unless data.is_a?(Kameleoon::VisitorVisits)
  case @visitor_type
  when VisitorType::NEW
    return data.previous_visit_timestamps.size == 0
  when VisitorType::RETURNING
    return data.previous_visit_timestamps.size > 0
  else
    return false
  end
end