forked from kingswisdom/SteemMessenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverlib.js
126 lines (110 loc) · 3.53 KB
/
serverlib.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
const socketIO = require('socket.io');
const db = require('./serverdb.js');
const Lara = require('./Lara.js');
var io;
var users = [];
exports.listen = function(server){
io = socketIO.listen(server);
io.sockets.on('connection', function(socket){
initialization(socket);
reinitialization(socket);
fetchDiscussion(socket);
handleInput(socket);
handleFile(socket);
fetchDiscussions(socket);
handleClear(socket);
});
}
function initialization(socket){
socket.on('initialize', function(data){
Lara.checkLogin({encodedmsg: data.encodedmsg}, function(out){
users[out.name] = {"id": socket.id};
console.log(out.name + " is connected !");
socket.emit('logged');
return handleLatestDiscussions(socket, {name: out.name});
})
});
}
function reinitialization(socket){
socket.on('reinitialize', function(data){
Lara.checkLogin({encodedmsg: data.encodedmsg}, function(out){
users[out.name] = {"id": socket.id};
console.log(out.name + " is connected !");
return handleLatestDiscussions(socket, {name: out.name});
})
});
}
function fetchDiscussion(socket){
socket.on('fetchDiscussion', function(data) {
db.getMessages({user:data.name,receiver:data.to}, 50, function(err, res){
return socket.emit('output', res);
});
});
}
function handleOutput(socket, out){
db.getLastMessage({
user:out.name,
receiver:out.to
}, function(err, res){
if(users[out.to] != undefined) {
socket.to(users[out.to].id).emit('output', res);
return socket.emit('output', res);
}
else{
return socket.emit('output', res);
}
});
}
function handleInput(socket){
socket.on('input', function(data){
if(data.name == '' || data.to == '' || data.message == ''){
return
}
else {
Lara.checkIdentity(data, function(out){
if(out != undefined) {
console.log("Incoming message from @" + out.name + " to @" + out.to);
db.saveMessage({name: out.name, to: out.to, message: out.message});
return handleOutput(socket, out);
}
else {
}
});
}
});
}
function handleFile(socket){
socket.on('file input', function(data){
if(data.name == '' || data.file == '' || data.to == ''){
return
}
else{
if(users[data.to] != undefined) {
socket.to(users[data.to].id).emit('file output', data);
return socket.emit('file output', data);
}
else{
return socket.emit('file output', data);
}
}
})
}
function fetchDiscussions(socket){
socket.on('fetchDiscussions', function(data){
return handleLatestDiscussions(socket, data);
});
}
function handleClear(socket){
socket.on('clear', function(data){
db.deleteDiscussion({name:data.name, to:data.to}, function(){
return socket.emit('cleared');
});
});
}
function handleLatestDiscussions(socket, data){
db.getLatestMessages({user:data.name}, function(err, res){
if(res.length){
return socket.emit('latest discussions', res);
}
});
}