mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
42 lines
1.1 KiB
CoffeeScript
42 lines
1.1 KiB
CoffeeScript
GRAVATAR_URL = 'https://www.gravatar.com/'
|
|
cache = {}
|
|
CocoModel = require('./CocoModel')
|
|
|
|
module.exports = class User extends CocoModel
|
|
@className: "User"
|
|
urlRoot: "/db/user"
|
|
|
|
initialize: ->
|
|
super()
|
|
|
|
isAdmin: ->
|
|
permissions = @attributes['permissions'] or []
|
|
return 'admin' in permissions
|
|
|
|
displayName: ->
|
|
@get('name') or "Anoner"
|
|
|
|
lang: ->
|
|
@get('preferredLanguage') or "en-US"
|
|
|
|
getPhotoURL: (size=80) ->
|
|
if photoURL = @get('photoURL')
|
|
prefix = if photoURL.search(/\?/) is -1 then "?" else "&"
|
|
return "#{photoURL}#{prefix}s=#{size}" if photoURL.search('http') isnt -1 # legacy
|
|
return "/file/#{photoURL}#{prefix}s=#{size}"
|
|
return "/db/user/#{@id}/avatar?s=#{size}"
|
|
|
|
@getByID = (id, properties, force) ->
|
|
{me} = require('lib/auth')
|
|
return me if me.id is id
|
|
user = cache[id] or new module.exports({_id:id})
|
|
if force or not cache[id]
|
|
user.loading = true
|
|
user.fetch(
|
|
success: ->
|
|
user.loading = false
|
|
Backbone.Mediator.publish('user:fetched')
|
|
#user.trigger 'sync' # needed?
|
|
)
|
|
cache[id] = user
|
|
user
|