forked from AndrewBelt/hack.chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
264 lines (227 loc) · 5.63 KB
/
server.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
var fs = require('fs')
var ws = require('ws')
var config = JSON.parse(fs.readFileSync('./config.json'))
var server = new ws.Server({host: config.host, port: config.port})
server.on('connection', function(socket) {
socket.on('message', function(data) {
try {
// ignore ridiculously large packets
if (data.length > 65536) {
return
}
var args = JSON.parse(data)
var cmd = args.cmd
var command = COMMANDS[cmd]
if (command && args) {
command.call(socket, args)
}
}
catch (e) {
console.warn(e.stack)
}
})
socket.on('close', function() {
try {
if (socket.channel) {
broadcast({cmd: 'onlineRemove', nick: socket.nick}, socket.channel)
}
}
catch (e) {
console.warn(e.stack)
}
})
})
function send(client, data) {
// Add timestamp to command
data.time = Date.now()
try {
if (client.readyState == ws.OPEN) {
client.send(JSON.stringify(data))
}
}
catch (e) {
// Ignore exceptions thrown by client.send()
}
}
/** Sends data to all clients
channel: if not null, restricts broadcast to clients in the channel
*/
function broadcast(data, channel) {
for (var client of server.clients) {
if (channel ? client.channel === channel : client.channel) {
send(client, data)
}
}
}
function nicknameValid(nick) {
if (/[$,*!?]/.test(nick)) return false
// allow all other "normal" ascii characters
return /^[\x20-\x7e]{1,32}$/.test(nick)
}
function getAddress(client) {
if (config.x_forwarded_for) {
// The remoteAddress is 127.0.0.1 since if all connections
// originate from a proxy (e.g. nginx).
// You must write the x-forwarded-for header to determine the
// client's real IP address.
return client.upgradeReq.headers['x-forwarded-for']
}
else {
return client.upgradeReq.connection.remoteAddress
}
}
// `this` bound to client
var COMMANDS = {
join: function(args) {
channel = String(args.channel)
nick = String(args.nick)
if (POLICE.frisk(getAddress(this), 3)) {
send(this, {cmd: 'warn', text: "You cannot join a channel while your IP is being rate-limited. Wait a moment and try again."})
return
}
if (this.nick) {
// Already joined
return
}
// Process channel name
channel = channel.trim()
if (channel == '') {
// Must join a non-blank channel
return
}
// Process nickname
nick = nick.trim()
if (nick.toLowerCase() == config.admin.toLowerCase()) {
send(this, {cmd: 'warn', text: "Cannot impersonate the admin"})
return
}
if (nick == config.password) {
nick = config.admin
this.admin = true
}
if (!nicknameValid(nick)) {
send(this, {cmd: 'warn', text: "Nickname invalid"})
return
}
var address = getAddress(this)
for (var client of server.clients) {
if (client.channel === channel) {
if (client.nick.toLowerCase() === nick.toLowerCase()) {
send(this, {cmd: 'warn', text: "Nickname taken"})
return
}
}
}
// Announce the new user
broadcast({cmd: 'onlineAdd', nick: nick}, channel)
// Formally join channel
this.channel = channel
this.nick = nick
// Set the online users for new user
var nicks = []
for (var client of server.clients) {
if (client.channel === channel) {
nicks.push(client.nick)
}
}
send(this, {cmd: 'onlineSet', nicks: nicks})
},
chat: function(args) {
text = String(args.text)
if (!this.channel) return
// strip newlines from beginning and end
text = text.replace(/^\s*\n|^\s+$|\n\s*$/g, '')
// replace 3+ newlines with just 2 newlines
text = text.replace(/\n{3,}/g, "\n\n")
if (text == '') return
var score = 1 + text.length / 83 / 4
if (POLICE.frisk(getAddress(this), score)) {
send(this, {cmd: 'warn', text: "Your IP is sending too much text. Wait a moment and try again. Here was your message:\n\n" + text})
return
}
var data = {cmd: 'chat', nick: this.nick, text: text}
if (this.admin) {
data.admin = true
}
broadcast(data, this.channel)
},
// Admin stuff below this point
ban: function(args) {
channel = String(args.channel)
nick = String(args.nick)
if (!this.admin) {
return
}
if (!channel) {
channel = this.channel
}
var badClient
for (var client of server.clients) {
if (client.channel == channel && client.nick == nick) {
badClient = client
}
}
if (!badClient) {
return
}
POLICE.arrest(getAddress(badClient))
send(badClient, {cmd: 'warn', text: "You have been banned. :("})
send(this, {cmd: 'info', text: "Banned " + badClient.nick})
},
listUsers: function() {
if (!this.admin) {
return
}
var channels = {}
for (var client of server.clients) {
if (client.channel) {
if (!channels[client.channel]) {
channels[client.channel] = []
}
channels[client.channel].push(client.nick)
}
}
var lines = []
for (var channel in channels) {
lines.push("?" + channel + " " + channels[channel].join(", "))
}
var text = server.clients.length + " users online:\n\n"
text += lines.join("\n")
send(this, {cmd: 'info', text: text})
},
broadcast: function(args) {
text = String(args.text)
if (!this.admin) {
return
}
broadcast({cmd: 'info', text: "Server broadcast: " + text})
},
}
// rate limiter
var POLICE = {
records: {},
halflife: 10000, // ms
threshold: 10,
frisk: function(id, deltaScore) {
var record = this.records[id]
if (!record) {
record = this.records[id] = {
time: Date.now(),
score: 0
}
}
if (record.arrested) {
return true
}
record.score *= Math.pow(2, -(Date.now() - record.time)/POLICE.halflife)
record.score += deltaScore
record.time = Date.now()
return record.score >= this.threshold
},
arrest: function(id) {
var record = this.records[id]
if (record) {
record.arrested = true
}
},
}