tpitale/staccato

View on GitHub
lib/staccato/measurement/product_impression.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Staccato
  module Measurement
    # Measurement class for product impressions in a list
    class ProductImpression
      # lookup key for use in Hit#add_measurement
      # @return [Symbol]
      def self.lookup_key
        :product_impression
      end

      # product impress prefix
      # @return [String]
      def prefix
        'il' + list_index.to_s + 'pi' + index.to_s
      end

      # product impression allow custom dimensions and metrics
      def custom_fields_allowed?
        true
      end

      # Product impression measurement options fields
      FIELDS = {
        index: nil,
        list_index: nil,
        id: 'id', # text
        name: 'nm', # text
        brand: 'br', # text
        category: 'ca', # text
        variant: 'va', # text
        price: 'pr', # currency (looks like a double?)
        position: 'ps' # integer
      }.freeze

      include Measurable

      def validate_options
        if @options[:index].nil?
          raise 'Index is required on ProductImpression measurements.'
        end

        if @options[:list_index].nil?
          raise 'List index is required on ProductImpression measurements.'
        end
        true
      end
    end
  end
end