2014-07-08 07:02:26 -04:00
|
|
|
define [
|
|
|
|
"libs/md5"
|
2014-07-17 10:25:22 -04:00
|
|
|
"ide/online-users/controllers/OnlineUsersController"
|
2014-07-08 07:02:26 -04:00
|
|
|
], () ->
|
|
|
|
class OnlineUsersManager
|
|
|
|
constructor: (@ide, @$scope) ->
|
|
|
|
@$scope.onlineUsers = {}
|
|
|
|
@$scope.onlineUserCursorHighlights = {}
|
2014-07-17 10:25:22 -04:00
|
|
|
@$scope.onlineUsersArray = []
|
2014-07-08 07:02:26 -04:00
|
|
|
|
2014-07-09 10:38:38 -04:00
|
|
|
@$scope.$on "cursor:editor:update", (event, position) =>
|
|
|
|
@sendCursorPositionUpdate(position)
|
2014-07-17 10:25:22 -04:00
|
|
|
|
|
|
|
@$scope.$on "project:joined", () =>
|
2015-02-05 11:37:37 -05:00
|
|
|
@ide.socket.emit "clientTracking.getConnectedUsers", (error, connectedUsers) =>
|
|
|
|
@$scope.onlineUsers = {}
|
|
|
|
for user in connectedUsers or []
|
|
|
|
if user.client_id == @ide.socket.socket.sessionid
|
|
|
|
# Don't store myself
|
|
|
|
continue
|
|
|
|
# Store data in the same format returned by clientTracking.clientUpdated
|
2014-12-08 13:56:46 -05:00
|
|
|
|
2015-02-05 11:37:37 -05:00
|
|
|
@$scope.onlineUsers[user.client_id] = {
|
|
|
|
id: user.client_id
|
|
|
|
user_id: user.user_id
|
|
|
|
email: user.email
|
|
|
|
name: "#{user.first_name} #{user.last_name}"
|
|
|
|
doc_id: user.cursorData?.doc_id
|
|
|
|
row: user.cursorData?.row
|
|
|
|
column: user.cursorData?.column
|
|
|
|
}
|
|
|
|
@refreshOnlineUsers()
|
2014-07-08 07:02:26 -04:00
|
|
|
|
|
|
|
@ide.socket.on "clientTracking.clientUpdated", (client) =>
|
|
|
|
if client.id != @ide.socket.socket.sessionid # Check it's not me!
|
|
|
|
@$scope.$apply () =>
|
|
|
|
@$scope.onlineUsers[client.id] = client
|
2014-07-17 10:25:22 -04:00
|
|
|
@refreshOnlineUsers()
|
2014-07-08 07:02:26 -04:00
|
|
|
|
|
|
|
@ide.socket.on "clientTracking.clientDisconnected", (client_id) =>
|
|
|
|
@$scope.$apply () =>
|
|
|
|
delete @$scope.onlineUsers[client_id]
|
2014-07-17 10:25:22 -04:00
|
|
|
@refreshOnlineUsers()
|
|
|
|
|
|
|
|
@$scope.getHueForUserId = (user_id) =>
|
|
|
|
@getHueForUserId(user_id)
|
2014-07-08 07:02:26 -04:00
|
|
|
|
2014-07-17 10:25:22 -04:00
|
|
|
refreshOnlineUsers: () ->
|
|
|
|
@$scope.onlineUsersArray = []
|
|
|
|
|
|
|
|
for client_id, user of @$scope.onlineUsers
|
|
|
|
if user.doc_id?
|
|
|
|
user.doc = @ide.fileTreeManager.findEntityById(user.doc_id)
|
2014-12-09 06:11:06 -05:00
|
|
|
|
|
|
|
if user.name?.trim().length == 0
|
2014-12-08 13:56:46 -05:00
|
|
|
user.name = user.email
|
2014-12-09 06:11:06 -05:00
|
|
|
|
2014-07-17 10:25:22 -04:00
|
|
|
@$scope.onlineUsersArray.push user
|
2014-12-08 13:56:46 -05:00
|
|
|
|
2014-07-08 07:02:26 -04:00
|
|
|
@$scope.onlineUserCursorHighlights = {}
|
|
|
|
for client_id, client of @$scope.onlineUsers
|
|
|
|
doc_id = client.doc_id
|
2014-07-17 10:25:22 -04:00
|
|
|
continue if !doc_id? or !client.row? or !client.column?
|
2014-07-08 07:02:26 -04:00
|
|
|
@$scope.onlineUserCursorHighlights[doc_id] ||= []
|
|
|
|
@$scope.onlineUserCursorHighlights[doc_id].push {
|
|
|
|
label: client.name
|
|
|
|
cursor:
|
|
|
|
row: client.row
|
|
|
|
column: client.column
|
|
|
|
hue: @getHueForUserId(client.user_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
UPDATE_INTERVAL: 500
|
2014-07-09 10:38:38 -04:00
|
|
|
sendCursorPositionUpdate: (position) ->
|
2014-07-08 07:02:26 -04:00
|
|
|
if !@cursorUpdateTimeout?
|
|
|
|
@cursorUpdateTimeout = setTimeout ()=>
|
|
|
|
doc_id = @$scope.editor.open_doc_id
|
|
|
|
|
|
|
|
@ide.socket.emit "clientTracking.updatePosition", {
|
|
|
|
row: position.row
|
|
|
|
column: position.column
|
|
|
|
doc_id: doc_id
|
|
|
|
}
|
|
|
|
|
|
|
|
delete @cursorUpdateTimeout
|
|
|
|
, @UPDATE_INTERVAL
|
|
|
|
|
|
|
|
OWN_HUE: 200 # We will always appear as this color to ourselves
|
|
|
|
ANONYMOUS_HUE: 100
|
|
|
|
getHueForUserId: (user_id) ->
|
|
|
|
if !user_id? or user_id == "anonymous-user"
|
|
|
|
return @ANONYMOUS_HUE
|
|
|
|
|
|
|
|
if window.user.id == user_id
|
|
|
|
return @OWN_HUE
|
|
|
|
|
|
|
|
hash = CryptoJS.MD5(user_id)
|
|
|
|
hue = parseInt(hash.toString().slice(0,8), 16) % 320
|
|
|
|
# Avoid 20 degrees either side of the personal hue
|
|
|
|
if hue > @OWNER_HUE - 20
|
|
|
|
hue = hue + 40
|
|
|
|
return hue
|
|
|
|
|