Sha256: d4af81cc825e0c208070520916d259837e3f9bc1742ff194a62bc93e28642da1
Contents?: true
Size: 1.85 KB
Versions: 1
Compression:
Stored size: 1.85 KB
Contents
module Ahoy class BaseStore attr_writer :user def initialize(options) @options = options end def track_visit(data) end def track_event(data) end def geocode(data) end def authenticate(data) end def visit end def user @user ||= begin if Ahoy.user_method.respond_to?(:call) Ahoy.user_method.call(controller) else controller.send(Ahoy.user_method) end end end def exclude? (!Ahoy.track_bots && bot?) || exclude_by_method? end def generate_id Ahoy.token_generator.call end def visit_or_create visit end protected def bot? unless defined?(@bot) @bot = begin if request if Ahoy.user_agent_parser == :device_detector detector = DeviceDetector.new(request.user_agent) if Ahoy.bot_detection_version == 2 detector.bot? || (detector.device_type.nil? && detector.os_name.nil?) else detector.bot? end else # no need to throw friendly error if browser isn't defined # since will error in visit_properties Browser.new(request.user_agent).bot? end else false end end end @bot end def exclude_by_method? if Ahoy.exclude_method if Ahoy.exclude_method.arity == 1 Ahoy.exclude_method.call(controller) else Ahoy.exclude_method.call(controller, request) end else false end end def request @request ||= @options[:request] || controller.try(:request) end def controller @controller ||= @options[:controller] end def ahoy @ahoy ||= @options[:ahoy] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ahoy_matey-3.0.0 | lib/ahoy/base_store.rb |