Sha256: ca29f0d3ea9638132300b9c8dce434377d69917993b7ff173c0c156e9660702d
Contents?: true
Size: 1.68 KB
Versions: 1
Compression:
Stored size: 1.68 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 if Ahoy.bot_detection_version == 2 DeviceDetector.new(request.user_agent).device_type.nil? else DeviceDetector.new(request.user_agent).bot? end else 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-2.2.0 | lib/ahoy/base_store.rb |