mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
77 lines
No EOL
2.2 KiB
CoffeeScript
77 lines
No EOL
2.2 KiB
CoffeeScript
define [
|
|
"base"
|
|
"libs/md5"
|
|
], (App) ->
|
|
oldKeys = [
|
|
"sl_abt_multi_currency_editor_eu-eu"
|
|
"sl_abt_multi_currency_eu-eu"
|
|
"sl_abt_multi_currency_editor_eu-usd"
|
|
"sl_abt_multi_currency_eu-usd"
|
|
"sl_abt_trial_len_14d"
|
|
"sl_abt_trial_len_7d"
|
|
"sl_abt_trial_len_30d"
|
|
"sl_utt"
|
|
"sl_utt_trial_len"
|
|
"sl_utt_multi_currency"
|
|
]
|
|
|
|
App.factory "abTestManager", ($http, ipCookie) ->
|
|
|
|
_.each oldKeys, (oldKey)->
|
|
ipCookie.remove(oldKey)
|
|
|
|
_buildCookieKey = (testName, bucket)->
|
|
key = "sl_abt_#{testName}_#{bucket}"
|
|
console.log key
|
|
return key
|
|
|
|
|
|
_getTestCookie = (testName, bucket)->
|
|
cookieKey = _buildCookieKey(testName, bucket)
|
|
cookie = ipCookie(cookieKey)
|
|
console.log cookieKey, cookie
|
|
return cookie
|
|
|
|
_persistCookieStep = (testName, bucket, newStep)->
|
|
cookieKey = _buildCookieKey(testName, bucket)
|
|
ipCookie(cookieKey, {step:newStep}, {expires:100, path:"/"})
|
|
console.log("persisting", cookieKey, {step:newStep})
|
|
ga('send', 'event', 'ab_tests', "#{testName}:#{bucket}", "step-#{newStep}")
|
|
|
|
_checkIfStepIsNext = (cookieStep, newStep)->
|
|
console.log cookieStep, newStep, "checking if step is next"
|
|
if !cookieStep? and newStep != 0
|
|
return false
|
|
else if newStep == 0
|
|
return true
|
|
else if (cookieStep+1) == newStep
|
|
return true
|
|
else
|
|
return false
|
|
|
|
_getUsersHash = (testName)->
|
|
sl_user_test_token = "sl_utt_#{testName}"
|
|
user_uuid = ipCookie(sl_user_test_token)
|
|
if !user_uuid?
|
|
user_uuid = Math.random()
|
|
ipCookie(sl_user_test_token, user_uuid, {expires:365, path:"/"})
|
|
hash = CryptoJS.MD5("#{user_uuid}:#{testName}")
|
|
return hash
|
|
|
|
processTestWithStep: processTestWithStep = (testName, bucket, newStep)->
|
|
currentCookieStep = _getTestCookie(testName, bucket)?.step
|
|
if _checkIfStepIsNext(currentCookieStep, newStep)
|
|
_persistCookieStep(testName, bucket, newStep)
|
|
|
|
getABTestBucket: getABTestBucket = (test_name, buckets) ->
|
|
hash = _getUsersHash(test_name)
|
|
bucketIndex = parseInt(hash.toString().slice(0,2), 16) % (buckets?.length or 2)
|
|
return buckets[bucketIndex]
|
|
|
|
|
|
|
|
App.controller "AbTestController", ($scope, abTestManager)->
|
|
testKeys = _.keys(window.ab)
|
|
|
|
_.each window.ab, (event)->
|
|
abTestManager.processTestWithStep event.testName, event.bucket, event.step |