2014-01-03 13:32:13 -05:00
|
|
|
GRAVATAR_URL = 'https://www.gravatar.com/'
|
|
|
|
cache = {}
|
2014-06-30 22:16:26 -04:00
|
|
|
CocoModel = require './CocoModel'
|
2014-07-09 14:23:05 -04:00
|
|
|
util = require 'lib/utils'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
module.exports = class User extends CocoModel
|
2014-06-30 22:16:26 -04:00
|
|
|
@className: 'User'
|
2014-04-22 14:11:08 -04:00
|
|
|
@schema: require 'schemas/models/user'
|
2014-06-30 22:16:26 -04:00
|
|
|
urlRoot: '/db/user'
|
2014-07-10 04:30:23 -04:00
|
|
|
notyErrors: false
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-07-30 16:23:43 -04:00
|
|
|
onLoaded: ->
|
|
|
|
CocoModel.pollAchievements() # Check for achievements on login
|
|
|
|
super arguments...
|
|
|
|
|
2014-09-01 12:11:10 -04:00
|
|
|
isAdmin: -> 'admin' in @get('permissions', true)
|
2014-08-23 14:07:52 -04:00
|
|
|
isAnonymous: -> @get('anonymous', true)
|
|
|
|
displayName: -> @get('name', true)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-07-07 13:29:34 -04:00
|
|
|
getPhotoURL: (size=80, useJobProfilePhoto=false, useEmployerPageAvatar=false) ->
|
2014-04-10 20:54:28 -04:00
|
|
|
photoURL = if useJobProfilePhoto then @get('jobProfile')?.photoURL else null
|
|
|
|
photoURL ||= @get('photoURL')
|
|
|
|
if photoURL
|
2014-06-30 22:16:26 -04:00
|
|
|
prefix = if photoURL.search(/\?/) is -1 then '?' else '&'
|
2014-04-09 19:46:44 -04:00
|
|
|
return "#{photoURL}#{prefix}s=#{size}" if photoURL.search('http') isnt -1 # legacy
|
|
|
|
return "/file/#{photoURL}#{prefix}s=#{size}"
|
2014-07-07 13:29:34 -04:00
|
|
|
return "/db/user/#{@id}/avatar?s=#{size}&employerPageAvatar=#{useEmployerPageAvatar}"
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-08-07 16:03:00 -04:00
|
|
|
getSlugOrID: -> @get('slug') or @get('_id')
|
|
|
|
|
2014-07-16 13:51:44 -04:00
|
|
|
set: ->
|
|
|
|
if arguments[0] is 'jobProfileApproved' and @get("jobProfileApproved") is false and not @get("jobProfileApprovedDate")
|
|
|
|
@set "jobProfileApprovedDate", (new Date()).toISOString()
|
|
|
|
super arguments...
|
2014-06-30 22:16:26 -04:00
|
|
|
|
2014-07-10 14:50:16 -04:00
|
|
|
@getUnconflictedName: (name, done) ->
|
|
|
|
$.ajax "/auth/name/#{name}",
|
|
|
|
success: (data) -> done data.name
|
|
|
|
statusCode: 409: (data) ->
|
|
|
|
response = JSON.parse data.responseText
|
|
|
|
done response.name
|
|
|
|
|
2014-04-21 19:15:23 -04:00
|
|
|
getEnabledEmails: ->
|
2014-08-23 14:07:52 -04:00
|
|
|
(emailName for emailName, emailDoc of @get('emails', true) when emailDoc.enabled)
|
2014-06-30 22:16:26 -04:00
|
|
|
|
2014-04-21 19:15:23 -04:00
|
|
|
setEmailSubscription: (name, enabled) ->
|
|
|
|
newSubs = _.clone(@get('emails')) or {}
|
|
|
|
(newSubs[name] ?= {}).enabled = enabled
|
|
|
|
@set 'emails', newSubs
|
2014-06-30 22:16:26 -04:00
|
|
|
|
2014-04-22 14:11:10 -04:00
|
|
|
isEmailSubscriptionEnabled: (name) -> (@get('emails') or {})[name]?.enabled
|
2014-05-26 12:21:56 -04:00
|
|
|
|
|
|
|
a = 5
|
2014-07-30 16:23:43 -04:00
|
|
|
b = 100
|
|
|
|
c = b
|
2014-05-26 12:21:56 -04:00
|
|
|
|
2014-07-30 16:23:43 -04:00
|
|
|
# y = a * ln(1/b * (x + c)) + 1
|
2014-05-26 12:21:56 -04:00
|
|
|
@levelFromExp: (xp) ->
|
2014-07-30 16:23:43 -04:00
|
|
|
if xp > 0 then Math.floor(a * Math.log((1/b) * (xp + c))) + 1 else 1
|
2014-05-26 12:21:56 -04:00
|
|
|
|
2014-07-30 16:23:43 -04:00
|
|
|
# x = b * e^((y-1)/a) - c
|
2014-05-26 12:21:56 -04:00
|
|
|
@expForLevel: (level) ->
|
2014-07-30 16:23:43 -04:00
|
|
|
if level > 1 then Math.ceil Math.exp((level - 1)/ a) * b - c else 0
|
2014-05-26 12:21:56 -04:00
|
|
|
|
|
|
|
level: ->
|
2014-05-31 17:19:55 -04:00
|
|
|
User.levelFromExp(@get('points'))
|