codecombat/app/lib/Tracker.coffee

57 lines
2.6 KiB
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
{me} = require 'lib/auth'
debugAnalytics = false
2014-01-03 13:32:13 -05:00
module.exports = class Tracker
constructor: ->
if window.tracker
2014-06-30 22:16:26 -04:00
console.error 'Overwrote our Tracker!', window.tracker
2014-01-03 13:32:13 -05:00
window.tracker = @
2014-06-30 22:16:26 -04:00
@isProduction = document.location.href.search('codecombat.com') isnt -1
2014-01-03 13:32:13 -05:00
@identify()
identify: (traits) ->
2014-06-30 22:16:26 -04:00
console.log 'Would identify', traits if debugAnalytics
2014-11-27 23:55:28 -05:00
return unless me and @isProduction and analytics? and not me.isAdmin()
2014-01-03 13:32:13 -05:00
# https://segment.io/docs/methods/identify
traits ?= {}
for userTrait in ['email', 'anonymous', 'dateCreated', 'name', 'wizardColor1', 'testGroupNumber', 'gender']
traits[userTrait] ?= me.get(userTrait)
analytics.identify me.id, traits
trackPageView: ->
2014-11-27 23:55:28 -05:00
return unless @isProduction and analytics? and not me.isAdmin()
2014-01-03 13:32:13 -05:00
url = Backbone.history.getFragment()
2014-06-30 22:16:26 -04:00
console.log 'Going to track visit for', "/#{url}" if debugAnalytics
2014-01-03 13:32:13 -05:00
analytics.pageview "/#{url}"
trackEvent: (action, properties, includeProviders=null) =>
# 'action' is a string
# Google Analytics properties format: {category: 'Account', label: 'Premium', value: 50 }
# https://segment.com/docs/integrations/google-analytics/#track
# https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide#Anatomy
# Mixpanel properties format: whatever you want unlike GA
# https://segment.com/docs/integrations/mixpanel/
console.log 'Would track analytics event:', action, properties if debugAnalytics
2014-11-27 23:55:28 -05:00
return unless me and @isProduction and analytics? and not me.isAdmin()
console.log 'Going to track analytics event:', action, properties if debugAnalytics
2014-01-03 13:32:13 -05:00
properties = properties or {}
context = {}
# TODO: Restrict providers, if given includeProviders
# TODO: This method may not work anymore, because it is not referenced in the segment.io docs
# TODO: Can double check in Mixpanel
# TODO: https://segment.com/docs/api/tracking/track/
2014-01-03 13:32:13 -05:00
if includeProviders
context.providers = {'All': false}
for provider in includeProviders
context.providers[provider] = true
analytics?.track action, properties, context
trackTiming: (duration, category, variable, label, samplePercentage=5) ->
# https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingTiming
return console.warn "Duration #{duration} invalid for trackTiming call." unless duration >= 0 and duration < 60 * 60 * 1000
2014-06-30 22:16:26 -04:00
console.log 'Would track timing event:', arguments if debugAnalytics
window._gaq?.push ['_trackTiming', category, variable, duration, label, samplePercentage]