2015-05-04 07:53:29 +00:00
|
|
|
//realtime
|
|
|
|
//external modules
|
|
|
|
var cookie = require('cookie');
|
|
|
|
var cookieParser = require('cookie-parser');
|
|
|
|
var url = require('url');
|
|
|
|
var async = require('async');
|
|
|
|
var LZString = require('lz-string');
|
|
|
|
var randomcolor = require("randomcolor");
|
2015-06-01 10:04:25 +00:00
|
|
|
var Chance = require('chance'),
|
|
|
|
chance = new Chance();
|
2015-07-01 16:10:20 +00:00
|
|
|
var moment = require('moment');
|
2015-05-04 07:53:29 +00:00
|
|
|
|
|
|
|
//core
|
2016-04-20 10:03:55 +00:00
|
|
|
var config = require("./config.js");
|
2015-07-01 16:10:20 +00:00
|
|
|
var logger = require("./logger.js");
|
2016-10-10 12:55:33 +00:00
|
|
|
var history = require("./history.js");
|
2016-04-20 10:03:55 +00:00
|
|
|
var models = require("./models");
|
2015-05-04 07:53:29 +00:00
|
|
|
|
2015-07-11 04:43:08 +00:00
|
|
|
//ot
|
|
|
|
var ot = require("./ot/index.js");
|
|
|
|
|
2015-05-04 07:53:29 +00:00
|
|
|
//public
|
|
|
|
var realtime = {
|
2015-09-24 03:36:41 +00:00
|
|
|
io: null,
|
2015-06-01 10:04:25 +00:00
|
|
|
onAuthorizeSuccess: onAuthorizeSuccess,
|
|
|
|
onAuthorizeFail: onAuthorizeFail,
|
2015-05-04 07:53:29 +00:00
|
|
|
secure: secure,
|
|
|
|
connection: connection,
|
2016-06-01 06:18:54 +00:00
|
|
|
getStatus: getStatus,
|
2016-06-17 08:09:33 +00:00
|
|
|
isReady: isReady
|
2015-05-04 07:53:29 +00:00
|
|
|
};
|
|
|
|
|
2015-06-01 10:04:25 +00:00
|
|
|
function onAuthorizeSuccess(data, accept) {
|
2015-12-30 05:30:54 +00:00
|
|
|
accept();
|
2015-06-01 10:04:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function onAuthorizeFail(data, message, error, accept) {
|
2015-12-30 05:30:54 +00:00
|
|
|
accept(); //accept whether authorize or not to allow anonymous usage
|
2015-06-01 10:04:25 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 05:31:39 +00:00
|
|
|
//secure the origin by the cookie
|
2015-05-04 07:53:29 +00:00
|
|
|
function secure(socket, next) {
|
|
|
|
try {
|
|
|
|
var handshakeData = socket.request;
|
|
|
|
if (handshakeData.headers.cookie) {
|
|
|
|
handshakeData.cookie = cookie.parse(handshakeData.headers.cookie);
|
|
|
|
handshakeData.sessionID = cookieParser.signedCookie(handshakeData.cookie[config.sessionname], config.sessionsecret);
|
2015-12-30 05:31:39 +00:00
|
|
|
if (handshakeData.sessionID &&
|
|
|
|
handshakeData.cookie[config.sessionname] &&
|
|
|
|
handshakeData.cookie[config.sessionname] != handshakeData.sessionID) {
|
|
|
|
if (config.debug)
|
|
|
|
logger.info("AUTH success cookie: " + handshakeData.sessionID);
|
|
|
|
return next();
|
|
|
|
} else {
|
2015-05-04 07:53:29 +00:00
|
|
|
next(new Error('AUTH failed: Cookie is invalid.'));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
next(new Error('AUTH failed: No cookie transmitted.'));
|
|
|
|
}
|
|
|
|
} catch (ex) {
|
|
|
|
next(new Error("AUTH failed:" + JSON.stringify(ex)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-11 04:43:08 +00:00
|
|
|
function emitCheck(note) {
|
|
|
|
var out = {
|
2016-10-10 12:56:22 +00:00
|
|
|
title: note.title,
|
2016-01-12 14:01:42 +00:00
|
|
|
updatetime: note.updatetime,
|
|
|
|
lastchangeuser: note.lastchangeuser,
|
2016-07-30 03:28:24 +00:00
|
|
|
lastchangeuserprofile: note.lastchangeuserprofile,
|
|
|
|
authors: note.authors,
|
|
|
|
authorship: note.authorship
|
2015-07-11 04:43:08 +00:00
|
|
|
};
|
2016-08-02 09:16:01 +00:00
|
|
|
out = LZString.compressToUTF16(JSON.stringify(out));
|
2015-09-24 03:36:41 +00:00
|
|
|
realtime.io.to(note.id).emit('check', out);
|
2015-07-11 04:43:08 +00:00
|
|
|
}
|
|
|
|
|
2015-05-04 07:53:29 +00:00
|
|
|
//actions
|
2016-06-17 08:09:33 +00:00
|
|
|
var users = {};
|
|
|
|
var notes = {};
|
2015-09-24 03:38:55 +00:00
|
|
|
//update when the note is dirty
|
2015-05-04 07:53:29 +00:00
|
|
|
var updater = setInterval(function () {
|
|
|
|
async.each(Object.keys(notes), function (key, callback) {
|
|
|
|
var note = notes[key];
|
2015-07-11 04:43:08 +00:00
|
|
|
if (note.server.isDirty) {
|
2016-04-20 10:03:55 +00:00
|
|
|
if (config.debug) logger.info("updater found dirty note: " + key);
|
|
|
|
updateNote(note, function(err, _note) {
|
2016-07-30 03:10:43 +00:00
|
|
|
// handle when note already been clean up
|
|
|
|
if (!notes[key] || !notes[key].server) return callback(null, null);
|
2016-04-20 10:03:55 +00:00
|
|
|
if (!_note) {
|
|
|
|
realtime.io.to(note.id).emit('info', {
|
|
|
|
code: 404
|
|
|
|
});
|
|
|
|
logger.error('note not found: ', note.id);
|
|
|
|
}
|
|
|
|
if (err || !_note) {
|
|
|
|
for (var i = 0, l = note.socks.length; i < l; i++) {
|
|
|
|
var sock = note.socks[i];
|
2016-07-30 03:10:43 +00:00
|
|
|
if (typeof sock !== 'undefined' && sock) {
|
|
|
|
sock.disconnect(true);
|
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
}
|
|
|
|
return callback(err, null);
|
|
|
|
}
|
|
|
|
note.server.isDirty = false;
|
|
|
|
note.updatetime = moment(_note.lastchangeAt).valueOf();
|
|
|
|
emitCheck(note);
|
|
|
|
return callback(null, null);
|
2015-07-11 04:43:08 +00:00
|
|
|
});
|
2016-01-12 14:01:42 +00:00
|
|
|
} else {
|
2016-04-20 10:03:55 +00:00
|
|
|
return callback(null, null);
|
2015-05-04 07:53:29 +00:00
|
|
|
}
|
|
|
|
}, function (err) {
|
2015-07-01 16:10:20 +00:00
|
|
|
if (err) return logger.error('updater error', err);
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
2015-07-11 04:43:08 +00:00
|
|
|
}, 1000);
|
2016-04-20 10:03:55 +00:00
|
|
|
function updateNote(note, callback) {
|
|
|
|
models.Note.findOne({
|
|
|
|
where: {
|
|
|
|
id: note.id
|
|
|
|
}
|
|
|
|
}).then(function (_note) {
|
|
|
|
if (!_note) return callback(null, null);
|
2016-01-17 15:51:27 +00:00
|
|
|
if (note.lastchangeuser) {
|
2016-04-20 10:03:55 +00:00
|
|
|
if (_note.lastchangeuserId != note.lastchangeuser) {
|
|
|
|
models.User.findOne({
|
|
|
|
where: {
|
|
|
|
id: note.lastchangeuser
|
2016-01-17 15:51:27 +00:00
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
}).then(function (user) {
|
|
|
|
if (!user) return callback(null, null);
|
|
|
|
note.lastchangeuserprofile = models.User.parseProfile(user.profile);
|
|
|
|
return finishUpdateNote(note, _note, callback);
|
|
|
|
}).catch(function (err) {
|
|
|
|
logger.error(err);
|
|
|
|
return callback(err, null);
|
2016-01-17 15:51:27 +00:00
|
|
|
});
|
2016-04-20 10:03:55 +00:00
|
|
|
} else {
|
|
|
|
return finishUpdateNote(note, _note, callback);
|
2016-01-17 15:51:27 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
note.lastchangeuserprofile = null;
|
2016-04-20 10:03:55 +00:00
|
|
|
return finishUpdateNote(note, _note, callback);
|
2016-01-17 15:51:27 +00:00
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
}).catch(function (err) {
|
|
|
|
logger.error(err);
|
|
|
|
return callback(err, null);
|
2016-01-17 15:51:27 +00:00
|
|
|
});
|
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
function finishUpdateNote(note, _note, callback) {
|
2016-07-30 03:10:43 +00:00
|
|
|
if (!note || !note.server) return callback(null, null);
|
2016-01-17 15:51:27 +00:00
|
|
|
var body = note.server.document;
|
2016-10-10 12:56:22 +00:00
|
|
|
var title = note.title = models.Note.parseNoteTitle(body);
|
2016-01-17 15:51:27 +00:00
|
|
|
title = LZString.compressToBase64(title);
|
|
|
|
body = LZString.compressToBase64(body);
|
2016-04-20 10:03:55 +00:00
|
|
|
var values = {
|
|
|
|
title: title,
|
|
|
|
content: body,
|
2016-07-30 03:21:38 +00:00
|
|
|
authorship: LZString.compressToBase64(JSON.stringify(note.authorship)),
|
2016-04-20 10:03:55 +00:00
|
|
|
lastchangeuserId: note.lastchangeuser,
|
|
|
|
lastchangeAt: Date.now()
|
|
|
|
};
|
|
|
|
_note.update(values).then(function (_note) {
|
2016-06-17 08:09:33 +00:00
|
|
|
saverSleep = false;
|
2016-04-20 10:03:55 +00:00
|
|
|
return callback(null, _note);
|
|
|
|
}).catch(function (err) {
|
|
|
|
logger.error(err);
|
|
|
|
return callback(err, null);
|
2016-01-17 15:51:27 +00:00
|
|
|
});
|
|
|
|
}
|
2015-10-05 06:32:05 +00:00
|
|
|
//clean when user not in any rooms or user not in connected list
|
2015-09-24 03:38:55 +00:00
|
|
|
var cleaner = setInterval(function () {
|
|
|
|
async.each(Object.keys(users), function (key, callback) {
|
|
|
|
var socket = realtime.io.sockets.connected[key];
|
2015-10-05 06:32:05 +00:00
|
|
|
if ((!socket && users[key]) ||
|
|
|
|
(socket && (!socket.rooms || socket.rooms.length <= 0))) {
|
2015-09-24 03:38:55 +00:00
|
|
|
if (config.debug)
|
|
|
|
logger.info("cleaner found redundant user: " + key);
|
2015-10-05 06:32:05 +00:00
|
|
|
if (!socket) {
|
|
|
|
socket = {
|
|
|
|
id: key
|
|
|
|
};
|
|
|
|
}
|
2015-09-24 03:38:55 +00:00
|
|
|
disconnectSocketQueue.push(socket);
|
|
|
|
disconnect(socket);
|
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
return callback(null, null);
|
2015-09-24 03:38:55 +00:00
|
|
|
}, function (err) {
|
|
|
|
if (err) return logger.error('cleaner error', err);
|
|
|
|
});
|
|
|
|
}, 60000);
|
2016-09-18 08:50:20 +00:00
|
|
|
var saverSleep = false;
|
2016-06-17 08:09:33 +00:00
|
|
|
// save note revision in interval
|
|
|
|
var saver = setInterval(function () {
|
|
|
|
if (saverSleep) return;
|
|
|
|
models.Revision.saveAllNotesRevision(function (err, notes) {
|
|
|
|
if (err) return logger.error('revision saver failed: ' + err);
|
2016-09-18 08:50:20 +00:00
|
|
|
if (notes && notes.length <= 0) {
|
2016-06-17 08:09:33 +00:00
|
|
|
saverSleep = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, 60000 * 5);
|
2015-05-04 07:53:29 +00:00
|
|
|
|
|
|
|
function getStatus(callback) {
|
2016-04-20 10:03:55 +00:00
|
|
|
models.Note.count().then(function (notecount) {
|
2015-05-04 07:53:29 +00:00
|
|
|
var distinctaddresses = [];
|
2015-07-01 16:10:20 +00:00
|
|
|
var regaddresses = [];
|
|
|
|
var distinctregaddresses = [];
|
2015-05-04 07:53:29 +00:00
|
|
|
Object.keys(users).forEach(function (key) {
|
2015-07-01 16:10:20 +00:00
|
|
|
var user = users[key];
|
2015-05-04 07:53:29 +00:00
|
|
|
var found = false;
|
|
|
|
for (var i = 0; i < distinctaddresses.length; i++) {
|
2015-07-01 16:10:20 +00:00
|
|
|
if (user.address == distinctaddresses[i]) {
|
2015-05-04 07:53:29 +00:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 04:58:13 +00:00
|
|
|
if (!found) {
|
2015-07-01 16:10:20 +00:00
|
|
|
distinctaddresses.push(user.address);
|
|
|
|
}
|
|
|
|
if (user.login) {
|
|
|
|
regaddresses.push(user.address);
|
|
|
|
var found = false;
|
|
|
|
for (var i = 0; i < distinctregaddresses.length; i++) {
|
|
|
|
if (user.address == distinctregaddresses[i]) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
distinctregaddresses.push(user.address);
|
|
|
|
}
|
2015-06-01 10:04:25 +00:00
|
|
|
}
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
2016-04-20 10:03:55 +00:00
|
|
|
models.User.count().then(function (regcount) {
|
|
|
|
return callback ? callback({
|
|
|
|
onlineNotes: Object.keys(notes).length,
|
|
|
|
onlineUsers: Object.keys(users).length,
|
|
|
|
distinctOnlineUsers: distinctaddresses.length,
|
|
|
|
notesCount: notecount,
|
|
|
|
registeredUsers: regcount,
|
|
|
|
onlineRegisteredUsers: regaddresses.length,
|
|
|
|
distinctOnlineRegisteredUsers: distinctregaddresses.length,
|
|
|
|
isConnectionBusy: isConnectionBusy,
|
|
|
|
connectionSocketQueueLength: connectionSocketQueue.length,
|
|
|
|
isDisconnectBusy: isDisconnectBusy,
|
|
|
|
disconnectSocketQueueLength: disconnectSocketQueue.length
|
|
|
|
}) : null;
|
|
|
|
}).catch(function (err) {
|
|
|
|
return logger.error('count user failed: ' + err);
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
2016-04-20 10:03:55 +00:00
|
|
|
}).catch(function (err) {
|
|
|
|
return logger.error('count note failed: ' + err);
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-06-17 08:09:33 +00:00
|
|
|
function isReady() {
|
|
|
|
return realtime.io
|
|
|
|
&& Object.keys(notes).length == 0 && Object.keys(users).length == 0
|
|
|
|
&& connectionSocketQueue.length == 0 && !isConnectionBusy
|
|
|
|
&& disconnectSocketQueue.length == 0 && !isDisconnectBusy;
|
|
|
|
}
|
|
|
|
|
2016-04-20 10:03:55 +00:00
|
|
|
function extractNoteIdFromSocket(socket) {
|
2015-09-24 03:40:08 +00:00
|
|
|
if (!socket || !socket.handshake || !socket.handshake.headers) {
|
2016-04-20 10:03:55 +00:00
|
|
|
return false;
|
2015-09-24 03:40:08 +00:00
|
|
|
}
|
2015-07-12 09:19:07 +00:00
|
|
|
var referer = socket.handshake.headers.referer;
|
|
|
|
if (!referer) {
|
2016-04-20 10:03:55 +00:00
|
|
|
return false;
|
2015-07-12 09:19:07 +00:00
|
|
|
}
|
|
|
|
var hostUrl = url.parse(referer);
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = config.urlpath ? hostUrl.pathname.slice(config.urlpath.length + 1, hostUrl.pathname.length).split('/')[1] : hostUrl.pathname.split('/')[1];
|
|
|
|
return noteId;
|
|
|
|
}
|
|
|
|
|
|
|
|
function parseNoteIdFromSocket(socket, callback) {
|
|
|
|
var noteId = extractNoteIdFromSocket(socket);
|
|
|
|
if (!noteId) {
|
|
|
|
return callback(null, null);
|
2015-05-04 07:53:29 +00:00
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
models.Note.parseNoteId(noteId, function (err, id) {
|
|
|
|
if (err || !id) return callback(err, id);
|
|
|
|
return callback(null, id);
|
|
|
|
});
|
2015-05-04 07:53:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function emitOnlineUsers(socket) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
2015-05-04 07:53:29 +00:00
|
|
|
var users = [];
|
2016-04-20 10:03:55 +00:00
|
|
|
Object.keys(notes[noteId].users).forEach(function (key) {
|
|
|
|
var user = notes[noteId].users[key];
|
2015-05-04 07:53:29 +00:00
|
|
|
if (user)
|
2015-06-01 10:04:25 +00:00
|
|
|
users.push(buildUserOutData(user));
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
2015-07-01 16:10:20 +00:00
|
|
|
var out = {
|
|
|
|
users: users
|
|
|
|
};
|
|
|
|
out = LZString.compressToUTF16(JSON.stringify(out));
|
2016-04-20 10:03:55 +00:00
|
|
|
realtime.io.to(noteId).emit('online users', out);
|
2015-06-01 10:04:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function emitUserStatus(socket) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
2015-07-01 16:10:20 +00:00
|
|
|
var out = buildUserOutData(users[socket.id]);
|
2016-04-20 10:03:55 +00:00
|
|
|
socket.broadcast.to(noteId).emit('user status', out);
|
2015-07-01 16:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function emitRefresh(socket) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
|
|
|
var note = notes[noteId];
|
2016-08-02 09:16:01 +00:00
|
|
|
var out = {
|
2016-10-10 12:56:22 +00:00
|
|
|
title: note.title,
|
2015-07-16 14:46:06 +00:00
|
|
|
docmaxlength: config.documentmaxlength,
|
2015-07-01 16:10:20 +00:00
|
|
|
owner: note.owner,
|
2016-01-12 14:01:42 +00:00
|
|
|
ownerprofile: note.ownerprofile,
|
|
|
|
lastchangeuser: note.lastchangeuser,
|
|
|
|
lastchangeuserprofile: note.lastchangeuserprofile,
|
2016-07-30 03:28:24 +00:00
|
|
|
authors: note.authors,
|
|
|
|
authorship: note.authorship,
|
2015-07-01 16:10:20 +00:00
|
|
|
permission: note.permission,
|
2016-01-12 14:01:42 +00:00
|
|
|
createtime: note.createtime,
|
2015-07-01 16:10:20 +00:00
|
|
|
updatetime: note.updatetime
|
2016-08-02 09:16:01 +00:00
|
|
|
};
|
|
|
|
out = LZString.compressToUTF16(JSON.stringify(out));
|
|
|
|
socket.emit('refresh', out);
|
2015-05-04 07:53:29 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 12:25:48 +00:00
|
|
|
function isDuplicatedInSocketQueue(queue, socket) {
|
|
|
|
for (var i = 0; i < queue.length; i++) {
|
|
|
|
if (queue[i] && queue[i].id == socket.id) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-09-27 03:43:33 +00:00
|
|
|
function clearSocketQueue(queue, socket) {
|
|
|
|
for (var i = 0; i < queue.length; i++) {
|
|
|
|
if (!queue[i] || queue[i].id == socket.id) {
|
|
|
|
queue.splice(i, 1);
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-05 08:11:18 +00:00
|
|
|
function connectNextSocket() {
|
|
|
|
isConnectionBusy = false;
|
|
|
|
if (connectionSocketQueue.length > 0)
|
|
|
|
startConnection(connectionSocketQueue[0]);
|
|
|
|
}
|
|
|
|
|
2016-07-30 03:10:43 +00:00
|
|
|
function interruptConnection(socket, note, user) {
|
|
|
|
if (note) delete note;
|
|
|
|
if (user) delete user;
|
|
|
|
if (socket)
|
|
|
|
clearSocketQueue(connectionSocketQueue, socket);
|
|
|
|
else
|
|
|
|
connectionSocketQueue.shift();
|
|
|
|
connectNextSocket();
|
|
|
|
}
|
|
|
|
|
2015-05-04 07:53:29 +00:00
|
|
|
var isConnectionBusy = false;
|
|
|
|
var connectionSocketQueue = [];
|
|
|
|
var isDisconnectBusy = false;
|
|
|
|
var disconnectSocketQueue = [];
|
|
|
|
|
2015-07-16 14:46:06 +00:00
|
|
|
function finishConnection(socket, note, user) {
|
2016-07-05 08:11:18 +00:00
|
|
|
// if no valid info provided will drop the client
|
2016-06-17 08:32:33 +00:00
|
|
|
if (!socket || !note || !user) {
|
2016-07-30 03:10:43 +00:00
|
|
|
return interruptConnection(socket, note, user);
|
2016-06-17 08:32:33 +00:00
|
|
|
}
|
2016-01-17 15:51:27 +00:00
|
|
|
//check view permission
|
|
|
|
if (note.permission == 'private') {
|
2016-04-20 10:03:55 +00:00
|
|
|
if (socket.request.user && socket.request.user.logged_in && socket.request.user.id == note.owner) {
|
2016-01-17 15:51:27 +00:00
|
|
|
//na
|
|
|
|
} else {
|
2016-07-30 03:10:43 +00:00
|
|
|
interruptConnection(socket, note, user);
|
2016-04-20 10:03:55 +00:00
|
|
|
return failConnection(403, 'connection forbidden', socket);
|
2016-01-17 15:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
2016-07-30 03:29:03 +00:00
|
|
|
// update user color to author color
|
|
|
|
if (note.authors[user.userid]) {
|
|
|
|
user.color = users[socket.id].color = note.authors[user.userid].color;
|
|
|
|
}
|
2015-07-16 14:46:06 +00:00
|
|
|
note.users[socket.id] = user;
|
2015-07-11 04:43:08 +00:00
|
|
|
note.socks.push(socket);
|
|
|
|
note.server.addClient(socket);
|
2015-07-16 14:46:06 +00:00
|
|
|
note.server.setName(socket, user.name);
|
|
|
|
note.server.setColor(socket, user.color);
|
2015-07-11 04:43:08 +00:00
|
|
|
|
2016-10-10 12:55:33 +00:00
|
|
|
// update user note history
|
|
|
|
setTimeout(function () {
|
|
|
|
var noteId = note.alias ? note.alias : LZString.compressToBase64(note.id);
|
2016-10-12 09:50:36 +00:00
|
|
|
if (note.server) history.updateHistory(user.userid, noteId, note.server.document);
|
2016-10-10 12:55:33 +00:00
|
|
|
}, 0);
|
|
|
|
|
2015-05-04 07:53:29 +00:00
|
|
|
emitOnlineUsers(socket);
|
2015-07-01 16:10:20 +00:00
|
|
|
emitRefresh(socket);
|
2015-05-04 07:53:29 +00:00
|
|
|
|
|
|
|
//clear finished socket in queue
|
2015-09-27 03:43:33 +00:00
|
|
|
clearSocketQueue(connectionSocketQueue, socket);
|
2015-05-04 07:53:29 +00:00
|
|
|
//seek for next socket
|
2016-07-05 08:11:18 +00:00
|
|
|
connectNextSocket();
|
2015-05-04 07:53:29 +00:00
|
|
|
|
|
|
|
if (config.debug) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
logger.info('SERVER connected a client to [' + noteId + ']:');
|
2015-07-16 14:46:06 +00:00
|
|
|
logger.info(JSON.stringify(user));
|
2015-07-01 16:10:20 +00:00
|
|
|
//logger.info(notes);
|
2015-05-04 07:53:29 +00:00
|
|
|
getStatus(function (data) {
|
2015-07-01 16:10:20 +00:00
|
|
|
logger.info(JSON.stringify(data));
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function startConnection(socket) {
|
|
|
|
if (isConnectionBusy) return;
|
|
|
|
isConnectionBusy = true;
|
2016-04-20 10:03:55 +00:00
|
|
|
|
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId) {
|
|
|
|
return failConnection(404, 'note id not found', socket);
|
|
|
|
}
|
2015-05-04 07:53:29 +00:00
|
|
|
|
2016-04-20 10:03:55 +00:00
|
|
|
if (!notes[noteId]) {
|
|
|
|
var include = [{
|
|
|
|
model: models.User,
|
|
|
|
as: "owner"
|
|
|
|
}, {
|
|
|
|
model: models.User,
|
|
|
|
as: "lastchangeuser"
|
2016-07-30 03:21:38 +00:00
|
|
|
}, {
|
|
|
|
model: models.Author,
|
|
|
|
as: "authors",
|
|
|
|
include: [{
|
|
|
|
model: models.User,
|
|
|
|
as: "user"
|
|
|
|
}]
|
2016-04-20 10:03:55 +00:00
|
|
|
}];
|
|
|
|
|
|
|
|
models.Note.findOne({
|
|
|
|
where: {
|
|
|
|
id: noteId
|
|
|
|
},
|
|
|
|
include: include
|
|
|
|
}).then(function (note) {
|
|
|
|
if (!note) {
|
|
|
|
return failConnection(404, 'note not found', socket);
|
2015-05-04 07:53:29 +00:00
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
var owner = note.ownerId;
|
|
|
|
var ownerprofile = note.owner ? models.User.parseProfile(note.owner.profile) : null;
|
|
|
|
|
|
|
|
var lastchangeuser = note.lastchangeuserId;
|
|
|
|
var lastchangeuserprofile = note.lastchangeuser ? models.User.parseProfile(note.lastchangeuser.profile) : null;
|
|
|
|
|
|
|
|
var body = LZString.decompressFromBase64(note.content);
|
|
|
|
var createtime = note.createdAt;
|
|
|
|
var updatetime = note.lastchangeAt;
|
2016-07-30 03:21:38 +00:00
|
|
|
var server = new ot.EditorSocketIOServer(body, [], noteId, ifMayEdit, operationCallback);
|
|
|
|
|
|
|
|
var authors = {};
|
|
|
|
for (var i = 0; i < note.authors.length; i++) {
|
|
|
|
var author = note.authors[i];
|
|
|
|
var profile = models.User.parseProfile(author.user.profile);
|
|
|
|
authors[author.userId] = {
|
|
|
|
userid: author.userId,
|
|
|
|
color: author.color,
|
|
|
|
photo: profile.photo,
|
|
|
|
name: profile.name
|
|
|
|
};
|
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
|
|
|
|
notes[noteId] = {
|
|
|
|
id: noteId,
|
2016-10-10 12:55:33 +00:00
|
|
|
alias: note.alias,
|
2016-10-10 12:56:22 +00:00
|
|
|
title: LZString.decompressFromBase64(note.title),
|
2016-04-20 10:03:55 +00:00
|
|
|
owner: owner,
|
|
|
|
ownerprofile: ownerprofile,
|
|
|
|
permission: note.permission,
|
|
|
|
lastchangeuser: lastchangeuser,
|
|
|
|
lastchangeuserprofile: lastchangeuserprofile,
|
|
|
|
socks: [],
|
|
|
|
users: {},
|
|
|
|
createtime: moment(createtime).valueOf(),
|
|
|
|
updatetime: moment(updatetime).valueOf(),
|
2016-07-30 03:21:38 +00:00
|
|
|
server: server,
|
|
|
|
authors: authors,
|
|
|
|
authorship: note.authorship ? JSON.parse(LZString.decompressFromBase64(note.authorship)) : []
|
2016-04-20 10:03:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return finishConnection(socket, notes[noteId], users[socket.id]);
|
|
|
|
}).catch(function (err) {
|
|
|
|
return failConnection(500, err, socket);
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
} else {
|
2016-04-20 10:03:55 +00:00
|
|
|
return finishConnection(socket, notes[noteId], users[socket.id]);
|
2015-05-04 07:53:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-20 10:03:55 +00:00
|
|
|
function failConnection(code, err, socket) {
|
|
|
|
logger.error(err);
|
|
|
|
// clear error socket in queue
|
|
|
|
clearSocketQueue(connectionSocketQueue, socket);
|
2016-07-05 08:11:18 +00:00
|
|
|
connectNextSocket();
|
2016-04-20 10:03:55 +00:00
|
|
|
// emit error info
|
|
|
|
socket.emit('info', {
|
|
|
|
code: code
|
|
|
|
});
|
|
|
|
return socket.disconnect(true);
|
|
|
|
}
|
|
|
|
|
2015-05-04 07:53:29 +00:00
|
|
|
function disconnect(socket) {
|
|
|
|
if (isDisconnectBusy) return;
|
|
|
|
isDisconnectBusy = true;
|
|
|
|
|
|
|
|
if (config.debug) {
|
2015-07-01 16:10:20 +00:00
|
|
|
logger.info("SERVER disconnected a client");
|
|
|
|
logger.info(JSON.stringify(users[socket.id]));
|
2015-05-04 07:53:29 +00:00
|
|
|
}
|
2015-09-27 03:43:55 +00:00
|
|
|
|
2015-05-04 07:53:29 +00:00
|
|
|
if (users[socket.id]) {
|
|
|
|
delete users[socket.id];
|
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
var note = notes[noteId];
|
2015-07-11 04:43:08 +00:00
|
|
|
if (note) {
|
2016-10-10 12:48:56 +00:00
|
|
|
// delete user in users
|
2015-07-11 04:43:08 +00:00
|
|
|
delete note.users[socket.id];
|
2016-10-10 12:48:56 +00:00
|
|
|
// remove sockets in the note socks
|
2015-07-01 16:10:20 +00:00
|
|
|
do {
|
2015-07-11 04:43:08 +00:00
|
|
|
var index = note.socks.indexOf(socket);
|
2015-07-01 16:10:20 +00:00
|
|
|
if (index != -1) {
|
2015-07-11 04:43:08 +00:00
|
|
|
note.socks.splice(index, 1);
|
2015-07-01 16:10:20 +00:00
|
|
|
}
|
|
|
|
} while (index != -1);
|
2016-10-10 12:48:56 +00:00
|
|
|
// remove note in notes if no user inside
|
2015-07-11 04:43:08 +00:00
|
|
|
if (Object.keys(note.users).length <= 0) {
|
|
|
|
if (note.server.isDirty) {
|
2016-04-20 10:03:55 +00:00
|
|
|
updateNote(note, function (err, _note) {
|
|
|
|
if (err) return logger.error('disconnect note failed: ' + err);
|
2016-10-10 13:05:49 +00:00
|
|
|
// clear server before delete to avoid memory leaks
|
|
|
|
note.server.document = "";
|
|
|
|
note.server.operations = [];
|
2016-07-13 02:41:49 +00:00
|
|
|
delete note.server;
|
2016-04-20 10:03:55 +00:00
|
|
|
delete notes[noteId];
|
|
|
|
if (config.debug) {
|
|
|
|
//logger.info(notes);
|
|
|
|
getStatus(function (data) {
|
|
|
|
logger.info(JSON.stringify(data));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-07-01 16:10:20 +00:00
|
|
|
} else {
|
2016-07-13 02:41:49 +00:00
|
|
|
delete note.server;
|
2016-04-20 10:03:55 +00:00
|
|
|
delete notes[noteId];
|
2015-07-01 16:10:20 +00:00
|
|
|
}
|
2015-05-04 07:53:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
emitOnlineUsers(socket);
|
|
|
|
|
|
|
|
//clear finished socket in queue
|
2015-09-27 03:43:33 +00:00
|
|
|
clearSocketQueue(disconnectSocketQueue, socket);
|
2015-05-04 07:53:29 +00:00
|
|
|
//seek for next socket
|
|
|
|
isDisconnectBusy = false;
|
|
|
|
if (disconnectSocketQueue.length > 0)
|
|
|
|
disconnect(disconnectSocketQueue[0]);
|
|
|
|
|
|
|
|
if (config.debug) {
|
2015-07-01 16:10:20 +00:00
|
|
|
//logger.info(notes);
|
2015-05-04 07:53:29 +00:00
|
|
|
getStatus(function (data) {
|
2015-07-01 16:10:20 +00:00
|
|
|
logger.info(JSON.stringify(data));
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-01 10:04:25 +00:00
|
|
|
function buildUserOutData(user) {
|
|
|
|
var out = {
|
|
|
|
id: user.id,
|
|
|
|
login: user.login,
|
|
|
|
userid: user.userid,
|
2015-07-04 14:19:09 +00:00
|
|
|
photo: user.photo,
|
2015-06-01 10:04:25 +00:00
|
|
|
color: user.color,
|
|
|
|
cursor: user.cursor,
|
|
|
|
name: user.name,
|
|
|
|
idle: user.idle,
|
|
|
|
type: user.type
|
|
|
|
};
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateUserData(socket, user) {
|
|
|
|
//retrieve user data from passport
|
|
|
|
if (socket.request.user && socket.request.user.logged_in) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var profile = models.User.parseProfile(socket.request.user.profile);
|
|
|
|
user.photo = profile.photo;
|
|
|
|
user.name = profile.name;
|
|
|
|
user.userid = socket.request.user.id;
|
2015-06-01 10:04:25 +00:00
|
|
|
user.login = true;
|
|
|
|
} else {
|
|
|
|
user.userid = null;
|
|
|
|
user.name = 'Guest ' + chance.last();
|
|
|
|
user.login = false;
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 07:53:29 +00:00
|
|
|
|
2015-07-11 04:43:08 +00:00
|
|
|
function ifMayEdit(socket, callback) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
|
|
|
var note = notes[noteId];
|
2015-07-11 04:43:08 +00:00
|
|
|
var mayEdit = true;
|
|
|
|
switch (note.permission) {
|
2016-01-12 14:01:42 +00:00
|
|
|
case "freely":
|
|
|
|
//not blocking anyone
|
|
|
|
break;
|
|
|
|
case "editable":
|
|
|
|
//only login user can change
|
|
|
|
if (!socket.request.user || !socket.request.user.logged_in)
|
|
|
|
mayEdit = false;
|
|
|
|
break;
|
2016-01-17 15:51:27 +00:00
|
|
|
case "locked": case "private":
|
2016-01-12 14:01:42 +00:00
|
|
|
//only owner can change
|
2016-06-17 08:29:45 +00:00
|
|
|
if (!note.owner || note.owner != socket.request.user.id)
|
2016-01-12 14:01:42 +00:00
|
|
|
mayEdit = false;
|
|
|
|
break;
|
|
|
|
}
|
2016-08-15 03:01:35 +00:00
|
|
|
//if user may edit and this is a text operation
|
|
|
|
if (socket.origin == 'operation' && mayEdit) {
|
2016-01-12 14:01:42 +00:00
|
|
|
//save for the last change user id
|
|
|
|
if (socket.request.user && socket.request.user.logged_in) {
|
2016-04-20 10:03:55 +00:00
|
|
|
note.lastchangeuser = socket.request.user.id;
|
2016-01-12 14:01:42 +00:00
|
|
|
} else {
|
|
|
|
note.lastchangeuser = null;
|
|
|
|
}
|
2015-07-11 04:43:08 +00:00
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
return callback(mayEdit);
|
2015-07-11 04:43:08 +00:00
|
|
|
}
|
|
|
|
|
2016-07-30 03:21:38 +00:00
|
|
|
function operationCallback(socket, operation) {
|
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
|
|
|
var note = notes[noteId];
|
|
|
|
var userId = null;
|
|
|
|
// save authors
|
|
|
|
if (socket.request.user && socket.request.user.logged_in) {
|
|
|
|
var socketId = socket.id;
|
|
|
|
var user = users[socketId];
|
|
|
|
userId = socket.request.user.id;
|
|
|
|
if (!note.authors[userId]) {
|
|
|
|
models.Author.create({
|
|
|
|
noteId: noteId,
|
|
|
|
userId: userId,
|
|
|
|
color: users[socketId].color
|
|
|
|
}).then(function (author) {
|
|
|
|
note.authors[author.userId] = {
|
|
|
|
userid: author.userId,
|
|
|
|
color: author.color,
|
|
|
|
photo: user.photo,
|
|
|
|
name: user.name
|
|
|
|
};
|
|
|
|
}).catch(function (err) {
|
|
|
|
return logger.error('operation callback failed: ' + err);
|
|
|
|
});
|
|
|
|
}
|
2016-10-10 12:55:33 +00:00
|
|
|
// update user note history
|
|
|
|
setTimeout(function() {
|
|
|
|
var noteId = note.alias ? note.alias : LZString.compressToBase64(note.id);
|
2016-10-12 09:50:36 +00:00
|
|
|
if (note.server) history.updateHistory(userId, noteId, note.server.document);
|
2016-10-10 12:55:33 +00:00
|
|
|
}, 0);
|
|
|
|
|
2016-07-30 03:21:38 +00:00
|
|
|
}
|
|
|
|
// save authorship
|
2016-10-10 12:23:33 +00:00
|
|
|
note.authorship = models.Note.updateAuthorshipByOperation(operation, userId, note.authorship);
|
2016-07-30 03:21:38 +00:00
|
|
|
}
|
|
|
|
|
2015-05-04 07:53:29 +00:00
|
|
|
function connection(socket) {
|
2016-06-01 06:18:54 +00:00
|
|
|
if (config.maintenance) return;
|
2016-04-20 10:03:55 +00:00
|
|
|
parseNoteIdFromSocket(socket, function (err, noteId) {
|
|
|
|
if (err) {
|
|
|
|
return failConnection(500, err, socket);
|
|
|
|
}
|
|
|
|
if (!noteId) {
|
|
|
|
return failConnection(404, 'note id not found', socket);
|
|
|
|
}
|
2016-10-10 12:25:48 +00:00
|
|
|
|
|
|
|
if (isDuplicatedInSocketQueue(socket, connectionSocketQueue)) return;
|
2016-04-20 10:03:55 +00:00
|
|
|
|
|
|
|
// store noteId in this socket session
|
|
|
|
socket.noteId = noteId;
|
|
|
|
|
|
|
|
//initialize user data
|
|
|
|
//random color
|
2016-07-30 03:31:29 +00:00
|
|
|
var color = randomcolor();
|
2016-04-20 10:03:55 +00:00
|
|
|
//make sure color not duplicated or reach max random count
|
|
|
|
if (notes[noteId]) {
|
|
|
|
var randomcount = 0;
|
2016-07-30 03:31:29 +00:00
|
|
|
var maxrandomcount = 10;
|
2016-04-20 10:03:55 +00:00
|
|
|
var found = false;
|
|
|
|
do {
|
|
|
|
Object.keys(notes[noteId].users).forEach(function (user) {
|
|
|
|
if (user.color == color) {
|
|
|
|
found = true;
|
|
|
|
return;
|
|
|
|
}
|
2015-06-01 10:04:25 +00:00
|
|
|
});
|
2016-04-20 10:03:55 +00:00
|
|
|
if (found) {
|
2016-07-30 03:31:29 +00:00
|
|
|
color = randomcolor();
|
2016-04-20 10:03:55 +00:00
|
|
|
randomcount++;
|
|
|
|
}
|
|
|
|
} while (found && randomcount < maxrandomcount);
|
|
|
|
}
|
|
|
|
//create user data
|
|
|
|
users[socket.id] = {
|
|
|
|
id: socket.id,
|
|
|
|
address: socket.handshake.headers['x-forwarded-for'] || socket.handshake.address,
|
|
|
|
'user-agent': socket.handshake.headers['user-agent'],
|
|
|
|
color: color,
|
|
|
|
cursor: null,
|
|
|
|
login: false,
|
|
|
|
userid: null,
|
|
|
|
name: null,
|
|
|
|
idle: false,
|
|
|
|
type: null
|
|
|
|
};
|
|
|
|
updateUserData(socket, users[socket.id]);
|
2015-05-04 07:53:29 +00:00
|
|
|
|
2016-04-20 10:03:55 +00:00
|
|
|
//start connection
|
|
|
|
connectionSocketQueue.push(socket);
|
|
|
|
startConnection(socket);
|
|
|
|
});
|
2015-05-04 07:53:29 +00:00
|
|
|
|
2015-07-01 16:10:20 +00:00
|
|
|
//received client refresh request
|
|
|
|
socket.on('refresh', function () {
|
|
|
|
emitRefresh(socket);
|
|
|
|
});
|
|
|
|
|
2015-06-01 10:04:25 +00:00
|
|
|
//received user status
|
2015-05-04 07:53:29 +00:00
|
|
|
socket.on('user status', function (data) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
2015-06-01 10:04:25 +00:00
|
|
|
if (config.debug)
|
2016-04-20 10:03:55 +00:00
|
|
|
logger.info('SERVER received [' + noteId + '] user status from [' + socket.id + ']: ' + JSON.stringify(data));
|
2015-06-01 10:04:25 +00:00
|
|
|
if (data) {
|
|
|
|
var user = users[socket.id];
|
|
|
|
user.idle = data.idle;
|
|
|
|
user.type = data.type;
|
|
|
|
}
|
|
|
|
emitUserStatus(socket);
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
|
2015-07-01 16:10:20 +00:00
|
|
|
//received note permission change request
|
|
|
|
socket.on('permission', function (permission) {
|
|
|
|
//need login to do more actions
|
|
|
|
if (socket.request.user && socket.request.user.logged_in) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
|
|
|
var note = notes[noteId];
|
2015-07-01 16:10:20 +00:00
|
|
|
//Only owner can change permission
|
2016-06-17 08:29:45 +00:00
|
|
|
if (note.owner && note.owner == socket.request.user.id) {
|
2015-07-01 16:10:20 +00:00
|
|
|
note.permission = permission;
|
2016-04-20 10:03:55 +00:00
|
|
|
models.Note.update({
|
|
|
|
permission: permission
|
|
|
|
}, {
|
|
|
|
where: {
|
|
|
|
id: noteId
|
|
|
|
}
|
|
|
|
}).then(function (count) {
|
|
|
|
if (!count) {
|
2015-07-01 16:10:20 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
var out = {
|
|
|
|
permission: permission
|
|
|
|
};
|
|
|
|
realtime.io.to(note.id).emit('permission', out);
|
|
|
|
for (var i = 0, l = note.socks.length; i < l; i++) {
|
|
|
|
var sock = note.socks[i];
|
|
|
|
if (typeof sock !== 'undefined' && sock) {
|
|
|
|
//check view permission
|
|
|
|
if (permission == 'private') {
|
|
|
|
if (sock.request.user && sock.request.user.logged_in && sock.request.user.id == note.owner) {
|
|
|
|
//na
|
|
|
|
} else {
|
|
|
|
sock.emit('info', {
|
|
|
|
code: 403
|
|
|
|
});
|
|
|
|
return sock.disconnect(true);
|
2016-01-17 15:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-20 10:03:55 +00:00
|
|
|
}
|
|
|
|
}).catch(function (err) {
|
|
|
|
return logger.error('update note permission failed: ' + err);
|
2015-07-01 16:10:20 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-10-10 13:04:24 +00:00
|
|
|
// delete a note
|
|
|
|
socket.on('delete', function () {
|
|
|
|
//need login to do more actions
|
|
|
|
if (socket.request.user && socket.request.user.logged_in) {
|
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
|
|
|
var note = notes[noteId];
|
|
|
|
//Only owner can delete note
|
|
|
|
if (note.owner && note.owner == socket.request.user.id) {
|
|
|
|
models.Note.destroy({
|
|
|
|
where: {
|
|
|
|
id: noteId
|
|
|
|
}
|
|
|
|
}).then(function (count) {
|
|
|
|
if (!count) return;
|
|
|
|
for (var i = 0, l = note.socks.length; i < l; i++) {
|
|
|
|
var sock = note.socks[i];
|
|
|
|
if (typeof sock !== 'undefined' && sock) {
|
|
|
|
sock.emit('delete');
|
|
|
|
return sock.disconnect(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).catch(function (err) {
|
|
|
|
return logger.error('delete note failed: ' + err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-06-01 10:04:25 +00:00
|
|
|
//reveiced when user logout or changed
|
|
|
|
socket.on('user changed', function () {
|
2015-07-01 16:10:20 +00:00
|
|
|
logger.info('user changed');
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
|
|
|
updateUserData(socket, notes[noteId].users[socket.id]);
|
2015-05-04 07:53:29 +00:00
|
|
|
emitOnlineUsers(socket);
|
|
|
|
});
|
|
|
|
|
2015-06-01 10:04:25 +00:00
|
|
|
//received sync of online users request
|
|
|
|
socket.on('online users', function () {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
2015-06-01 10:04:25 +00:00
|
|
|
var users = [];
|
2016-04-20 10:03:55 +00:00
|
|
|
Object.keys(notes[noteId].users).forEach(function (key) {
|
|
|
|
var user = notes[noteId].users[key];
|
2015-06-01 10:04:25 +00:00
|
|
|
if (user)
|
|
|
|
users.push(buildUserOutData(user));
|
|
|
|
});
|
|
|
|
var out = {
|
|
|
|
users: users
|
|
|
|
};
|
|
|
|
out = LZString.compressToUTF16(JSON.stringify(out));
|
|
|
|
socket.emit('online users', out);
|
|
|
|
});
|
|
|
|
|
|
|
|
//check version
|
2015-05-04 07:53:29 +00:00
|
|
|
socket.on('version', function () {
|
2016-06-17 08:31:36 +00:00
|
|
|
socket.emit('version', {
|
|
|
|
version: config.version,
|
|
|
|
minimumCompatibleVersion: config.minimumCompatibleVersion
|
|
|
|
});
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
|
2015-06-01 10:04:25 +00:00
|
|
|
//received cursor focus
|
2015-05-04 07:53:29 +00:00
|
|
|
socket.on('cursor focus', function (data) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
2015-05-04 07:53:29 +00:00
|
|
|
users[socket.id].cursor = data;
|
2015-06-01 10:04:25 +00:00
|
|
|
var out = buildUserOutData(users[socket.id]);
|
2016-04-20 10:03:55 +00:00
|
|
|
socket.broadcast.to(noteId).emit('cursor focus', out);
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
|
2015-06-01 10:04:25 +00:00
|
|
|
//received cursor activity
|
2015-05-04 07:53:29 +00:00
|
|
|
socket.on('cursor activity', function (data) {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
2015-05-04 07:53:29 +00:00
|
|
|
users[socket.id].cursor = data;
|
2015-06-01 10:04:25 +00:00
|
|
|
var out = buildUserOutData(users[socket.id]);
|
2016-04-20 10:03:55 +00:00
|
|
|
socket.broadcast.to(noteId).emit('cursor activity', out);
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
|
2015-06-01 10:04:25 +00:00
|
|
|
//received cursor blur
|
2015-05-04 07:53:29 +00:00
|
|
|
socket.on('cursor blur', function () {
|
2016-04-20 10:03:55 +00:00
|
|
|
var noteId = socket.noteId;
|
|
|
|
if (!noteId || !notes[noteId]) return;
|
2015-05-04 07:53:29 +00:00
|
|
|
users[socket.id].cursor = null;
|
2015-06-01 10:04:25 +00:00
|
|
|
var out = {
|
|
|
|
id: socket.id
|
|
|
|
};
|
2016-04-20 10:03:55 +00:00
|
|
|
socket.broadcast.to(noteId).emit('cursor blur', out);
|
2015-05-04 07:53:29 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
//when a new client disconnect
|
|
|
|
socket.on('disconnect', function () {
|
2016-10-10 12:25:48 +00:00
|
|
|
if (isDuplicatedInSocketQueue(socket, disconnectSocketQueue)) return;
|
2015-05-04 07:53:29 +00:00
|
|
|
disconnectSocketQueue.push(socket);
|
|
|
|
disconnect(socket);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = realtime;
|