-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsockets.js
149 lines (129 loc) · 4.43 KB
/
sockets.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
var parent = module.parent.exports
, app = parent.app
, server = parent.server
, express = require('express')
, client = parent.client
, sessionStore = parent.sessionStore
, sio = require('socket.io')
, parseCookies = require('connect').utils.parseSignedCookies
, cookie = require('cookie')
, config = require('./config.json')
, fs = require('fs');
var io = sio.listen(server);
io.set('authorization', function (hsData, accept) {
if(hsData.headers.cookie) {
var cookies = parseCookies(cookie.parse(hsData.headers.cookie), config.session.secret)
, sid = cookies['balloons'];
sessionStore.load(sid, function(err, session) {
if(err || !session) {
return accept('Error retrieving session!', false);
}
hsData.balloons = {
user: session.passport.user,
room: /\/(?:([^\/]+?))\/?$/g.exec(hsData.headers.referer)[1]
};
return accept(null, true);
});
} else {
return accept('No cookie transmitted.', false);
}
});
io.configure(function() {
io.set('store', new sio.RedisStore({client: client}));
io.enable('browser client minification');
io.enable('browser client gzip');
});
io.sockets.on('connection', function (socket) {
var hs = socket.handshake
, nickname = hs.balloons.user.username
, provider = hs.balloons.user.provider
, userKey = provider + ":" + nickname
, room_id = hs.balloons.room
, now = new Date()
// Chat Log handler
, chatlogFileName = './chats/' + room_id + (now.getFullYear()) + (now.getMonth() + 1) + (now.getDate()) + ".txt"
, chatlogWriteStream = fs.createWriteStream(chatlogFileName, {'flags': 'a'});
socket.join(room_id);
client.sadd('sockets:for:' + userKey + ':at:' + room_id, socket.id, function(err, socketAdded) {
if(socketAdded) {
client.sadd('socketio:sockets', socket.id);
client.sadd('rooms:' + room_id + ':online', userKey, function(err, userAdded) {
if(userAdded) {
client.hincrby('rooms:' + room_id + ':info', 'online', 1);
client.get('users:' + userKey + ':status', function(err, status) {
io.sockets.in(room_id).emit('new user', {
nickname: nickname,
provider: provider,
status: status || 'available'
});
});
}
});
}
});
socket.on('my msg', function(data) {
var no_empty = data.msg.replace("\n","");
if(no_empty.length > 0) {
var chatlogRegistry = {
type: 'message',
from: userKey,
atTime: new Date(),
withData: data.msg
}
chatlogWriteStream.write(JSON.stringify(chatlogRegistry) + "\n");
io.sockets.in(room_id).emit('new msg', {
nickname: nickname,
provider: provider,
msg: data.msg
});
}
});
socket.on('set status', function(data) {
var status = data.status;
client.set('users:' + userKey + ':status', status, function(err, statusSet) {
io.sockets.emit('user-info update', {
username: nickname,
provider: provider,
status: status
});
});
});
socket.on('history request', function() {
var history = [];
var tail = require('child_process').spawn('tail', ['-n', 5, chatlogFileName]);
tail.stdout.on('data', function (data) {
var lines = data.toString('utf-8').split("\n");
lines.forEach(function(line, index) {
if(line.length) {
var historyLine = JSON.parse(line);
history.push(historyLine);
}
});
socket.emit('history response', {
history: history
});
});
});
socket.on('disconnect', function() {
// 'sockets:at:' + room_id + ':for:' + userKey
client.srem('sockets:for:' + userKey + ':at:' + room_id, socket.id, function(err, removed) {
if(removed) {
client.srem('socketio:sockets', socket.id);
client.scard('sockets:for:' + userKey + ':at:' + room_id, function(err, members_no) {
if(!members_no) {
client.srem('rooms:' + room_id + ':online', userKey, function(err, removed) {
if (removed) {
client.hincrby('rooms:' + room_id + ':info', 'online', -1);
chatlogWriteStream.destroySoon();
io.sockets.in(room_id).emit('user leave', {
nickname: nickname,
provider: provider
});
}
});
}
});
}
});
});
});