2014-11-28 20:49:41 -05:00
|
|
|
{backboneFailure, genericFailure, parseServerError} = require 'core/errors'
|
2014-01-03 13:32:13 -05:00
|
|
|
User = require 'models/User'
|
2014-11-28 20:49:41 -05:00
|
|
|
storage = require 'core/storage'
|
2014-01-03 13:32:13 -05:00
|
|
|
BEEN_HERE_BEFORE_KEY = 'beenHereBefore'
|
|
|
|
|
2014-04-02 16:12:24 -04:00
|
|
|
init = ->
|
|
|
|
module.exports.me = window.me = new User(window.userObject) # inserted into main.html
|
2014-05-30 19:20:20 -04:00
|
|
|
module.exports.me.onLoaded()
|
2014-04-02 16:12:24 -04:00
|
|
|
trackFirstArrival()
|
|
|
|
if me and not me.get('testGroupNumber')?
|
|
|
|
# Assign testGroupNumber to returning visitors; new ones in server/routes/auth
|
|
|
|
me.set 'testGroupNumber', Math.floor(Math.random() * 256)
|
2014-06-11 14:34:52 -04:00
|
|
|
me.patch()
|
2014-04-02 16:12:24 -04:00
|
|
|
|
2014-08-27 15:24:03 -04:00
|
|
|
Backbone.listenTo me, 'sync', -> Backbone.Mediator.publish('auth:me-synced', me: me)
|
2014-04-02 16:12:24 -04:00
|
|
|
|
2014-03-31 16:56:13 -04:00
|
|
|
module.exports.createUser = (userObject, failure=backboneFailure, nextURL=null) ->
|
2014-01-03 13:32:13 -05:00
|
|
|
user = new User(userObject)
|
2014-05-22 14:22:52 -04:00
|
|
|
user.notyErrors = false
|
2014-01-03 13:32:13 -05:00
|
|
|
user.save({}, {
|
2014-06-30 22:16:26 -04:00
|
|
|
error: (model, jqxhr, options) ->
|
2014-04-13 08:25:49 -04:00
|
|
|
error = parseServerError(jqxhr.responseText)
|
|
|
|
property = error.property if error.property
|
|
|
|
if jqxhr.status is 409 and property is 'name'
|
|
|
|
anonUserObject = _.omit(userObject, 'name')
|
|
|
|
module.exports.createUser anonUserObject, failure, nextURL
|
|
|
|
else
|
|
|
|
genericFailure(jqxhr)
|
2014-04-02 16:12:24 -04:00
|
|
|
success: -> if nextURL then window.location.href = nextURL else window.location.reload()
|
2014-01-03 13:32:13 -05:00
|
|
|
})
|
2014-05-06 19:58:08 -04:00
|
|
|
|
2014-04-24 18:27:37 -04:00
|
|
|
module.exports.createUserWithoutReload = (userObject, failure=backboneFailure) ->
|
|
|
|
user = new User(userObject)
|
|
|
|
user.save({}, {
|
|
|
|
error: failure
|
2014-05-06 19:58:08 -04:00
|
|
|
success: ->
|
2014-06-30 22:16:26 -04:00
|
|
|
Backbone.Mediator.publish('created-user-without-reload')
|
2014-04-24 18:27:37 -04:00
|
|
|
})
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2015-02-11 19:12:26 -05:00
|
|
|
module.exports.loginUser = (userObject, failure=genericFailure, nextURL=null) ->
|
2014-09-07 23:54:25 -04:00
|
|
|
console.log 'logging in as', userObject.email
|
2014-01-03 13:32:13 -05:00
|
|
|
jqxhr = $.post('/auth/login',
|
|
|
|
{
|
2014-06-30 22:16:26 -04:00
|
|
|
username: userObject.email,
|
|
|
|
password: userObject.password
|
2014-01-03 13:32:13 -05:00
|
|
|
},
|
2015-02-11 19:12:26 -05:00
|
|
|
(model) -> if nextURL then window.location.href = nextURL else window.location.reload()
|
2014-01-03 13:32:13 -05:00
|
|
|
)
|
|
|
|
jqxhr.fail(failure)
|
|
|
|
|
|
|
|
module.exports.logoutUser = ->
|
2014-01-09 13:48:51 -05:00
|
|
|
FB?.logout?()
|
2015-02-24 11:54:30 -05:00
|
|
|
callback = ->
|
|
|
|
if (window.location.href.indexOf("/account/settings") > -1)
|
|
|
|
window.location = '/'
|
|
|
|
else
|
|
|
|
window.location.reload()
|
|
|
|
res = $.post('/auth/logout', {}, callback)
|
2014-01-03 13:32:13 -05:00
|
|
|
res.fail(genericFailure)
|
|
|
|
|
|
|
|
onSetVolume = (e) ->
|
|
|
|
return if e.volume is me.get('volume')
|
|
|
|
me.set('volume', e.volume)
|
|
|
|
me.save()
|
|
|
|
|
2014-08-27 15:24:03 -04:00
|
|
|
Backbone.Mediator.subscribe('level:set-volume', onSetVolume, module.exports)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
trackFirstArrival = ->
|
|
|
|
# will have to filter out users who log in with existing accounts separately
|
|
|
|
# but can at least not track logouts as first arrivals using local storage
|
2014-01-26 17:44:08 -05:00
|
|
|
beenHereBefore = storage.load(BEEN_HERE_BEFORE_KEY)
|
2014-01-03 13:32:13 -05:00
|
|
|
return if beenHereBefore
|
2014-01-06 20:45:35 -05:00
|
|
|
window.tracker?.trackEvent 'First Arrived'
|
2014-01-26 17:44:08 -05:00
|
|
|
storage.save(BEEN_HERE_BEFORE_KEY, true)
|
2014-04-02 16:12:24 -04:00
|
|
|
|
|
|
|
init()
|