Module: Ahoy::Controller

Defined in:
lib/ahoy/controller.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object



3
4
5
6
7
8
9
10
11
# File 'lib/ahoy/controller.rb', line 3

def self.included(base)
  if base.respond_to?(:helper_method)
    base.helper_method :current_visit
    base.helper_method :ahoy
  end
  base.before_action :set_ahoy_cookies, unless: -> { Ahoy.api_only }
  base.before_action :track_ahoy_visit, unless: -> { Ahoy.api_only }
  base.around_action :set_ahoy_request_store
end

Instance Method Details

#ahoyObject



13
14
15
# File 'lib/ahoy/controller.rb', line 13

def ahoy
  @ahoy ||= Ahoy::Tracker.new(controller: self)
end

#current_visitObject



17
18
19
# File 'lib/ahoy/controller.rb', line 17

def current_visit
  ahoy.visit
end

#set_ahoy_cookiesObject



21
22
23
24
25
26
27
28
29
# File 'lib/ahoy/controller.rb', line 21

def set_ahoy_cookies
  if Ahoy.cookies
    ahoy.set_visitor_cookie
    ahoy.set_visit_cookie
  else
    # delete cookies if exist
    ahoy.reset
  end
end

#set_ahoy_request_storeObject



41
42
43
44
45
46
47
48
49
# File 'lib/ahoy/controller.rb', line 41

def set_ahoy_request_store
  previous_value = Ahoy.instance
  begin
    Ahoy.instance = ahoy
    yield
  ensure
    Ahoy.instance = previous_value
  end
end

#track_ahoy_visitObject



31
32
33
34
35
36
37
38
39
# File 'lib/ahoy/controller.rb', line 31

def track_ahoy_visit
  defer = Ahoy.server_side_visits != true

  if defer && !Ahoy.cookies
    # avoid calling new_visit?, which triggers a database call
  elsif ahoy.new_visit?
    ahoy.track_visit(defer: defer)
  end
end