Sha256: 48a33d9891662020129d59d7f03c5112e103e22e64a2b4cf048f81cd4a893376

Contents?: true

Size: 1.29 KB

Versions: 6

Compression:

Stored size: 1.29 KB

Contents

module Ahoy
  module Stores
    class ActiveRecordStore < BaseStore
      def track_visit(options, &block)
        visit =
          visit_model.new do |v|
            v.id = ahoy.visit_id
            v.visitor_id = ahoy.visitor_id
            v.user = user if v.respond_to?(:user=)
            v.started_at = options[:started_at]
          end

        set_visit_properties(visit)

        yield(visit) if block_given?

        begin
          visit.save!
          geocode(visit)
        rescue *unique_exception_classes
          # do nothing
        end
      end

      def track_event(name, properties, options, &block)
        event =
          event_model.new do |e|
            e.id = options[:id]
            e.visit_id = ahoy.visit_id
            e.user = user if e.respond_to?(:user=)
            e.name = name
            e.properties = properties
            e.time = options[:time]
          end

        yield(event) if block_given?

        begin
          event.save!
        rescue *unique_exception_classes
          # do nothing
        end
      end

      def visit
        @visit ||= visit_model.where(id: ahoy.visit_id).first if ahoy.visit_id
      end

      protected

      def visit_model
        ::Visit
      end

      def event_model
        ::Ahoy::Event
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ahoy_matey-1.4.0 lib/ahoy/stores/active_record_store.rb
ahoy_matey-1.3.1 lib/ahoy/stores/active_record_store.rb
ahoy_matey-1.3.0 lib/ahoy/stores/active_record_store.rb
ahoy_matey-1.2.2 lib/ahoy/stores/active_record_store.rb
ahoy_matey-1.2.1 lib/ahoy/stores/active_record_store.rb
ahoy_matey-1.2.0 lib/ahoy/stores/active_record_store.rb