Created
October 2, 2010 12:59
-
-
Save BonsaiDen/607623 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bits and pieces *cough* stolen *cough* from | |
// Micheil Smith's node-websocket-server | |
// <http://github.com/miksago/node-websocket-server> | |
// Therefore, I don't really think that I should claim any copyright for | |
// this piece of "minified" code. | |
var http = require('http'); | |
var crypto = require('crypto'); | |
function pack(num) { | |
return String.fromCharCode(num >> 24 & 0xFF) | |
+ String.fromCharCode(num >> 16 & 0xFF) | |
+ String.fromCharCode(num >> 8 & 0xFF) | |
+ String.fromCharCode(num & 0xFF); | |
} | |
function Connection($, req, socket, headers, upgradeHeader) { | |
// Draft 76 | |
if ('sec-websocket-key1' in headers && 'sec-websocket-key2' in headers) { | |
var data = 'HTTP/1.1 101 WebSocket Protocol Handshake\r\n' | |
+ 'Upgrade: WebSocket\r\n' | |
+ 'Connection: Upgrade\r\n' | |
+ 'Sec-WebSocket-Origin: ' + headers.origin + '\r\n' | |
+ 'Sec-WebSocket-Location: ws://' + headers.host + '/'; | |
var key1 = headers['sec-websocket-key1']; | |
var key2 = headers['sec-websocket-key2']; | |
var num1 = parseInt(key1.replace(/[^\d]/g, ''), 10); | |
var num2 = parseInt(key2.replace(/[^\d]/g, ''), 10); | |
var spaces1 = key1.replace(/[^\ ]/g, '').length; | |
var spaces2 = key2.replace(/[^\ ]/g, '').length; | |
if (spaces1 === 0 || spaces2 === 0 | |
|| num1 % spaces1 != 0 || num2 % spaces2 != 0) { | |
socket.end(); | |
socket.destroy(); | |
return; | |
} else { | |
var hash = crypto.createHash('md5'); | |
hash.update(pack(parseInt(num1 / spaces1))); | |
hash.update(pack(parseInt(num2 / spaces2))); | |
hash.update(upgradeHeader.toString('binary')); | |
data += '\r\n\r\n'; | |
data += hash.digest('binary'); | |
socket.write(data, 'binary'); | |
socket.flush(); | |
} | |
// Draft 75 | |
} else { | |
var data = 'HTTP/1.1 101 Web Socket Protocol Handshake\r\n' | |
+ 'Upgrade: WebSocket\r\n' | |
+ 'Connection: Upgrade\r\n' | |
+ 'WebSocket-Origin: ' + headers.origin + '\r\n' | |
+ 'WebSocket-Location: ws://' + headers.host + '/'; | |
data += '\r\n\r\n'; | |
socket.write(data, 'ascii'); | |
socket.flush(); | |
} | |
// Internal Stuff | |
var that = this; | |
this.id = socket.remoteAddress + ':' + socket.remotePort; | |
var frame = []; | |
var state = 0; | |
function read(data) { | |
for(var i = 0, l = data.length; i < l; i++) { | |
var b = data[i]; | |
if (state === 0) { | |
if (b & 0x80 === 0x80) { | |
state = 2; | |
} else { | |
state = 1; | |
} | |
// Low | |
} else if (state === 1) { | |
if (b === 0xff) { | |
var str = new Buffer(frame); | |
frame = []; | |
state = 0 | |
$.onMessage(that, str.toString('utf8', 0, str.length)); | |
} else { | |
frame.push(b); | |
} | |
// High | |
} else if (state === 2) { | |
if (b === 0x00) { | |
that.close(); | |
} | |
} | |
} | |
} | |
function write(data) { | |
var bytes = 0; | |
if (socket.writable) { | |
try { | |
socket.write('\x00', 'binary'); | |
if (typeof data === 'string') { | |
socket.write(data, 'utf8'); | |
bytes += Buffer.byteLength(data); | |
} | |
socket.write('\xff', 'binary'); | |
socket.flush(); | |
bytes += 2; | |
} catch(e) { | |
} | |
} | |
return bytes; | |
} | |
// Methods | |
this.send = function(data) { | |
return write(data); | |
}; | |
this.close = function() { | |
write(null); | |
socket.end(); | |
socket.destroy(); | |
$.remove(that); | |
}; | |
// Events | |
req.socket.addListener('data', function(data) { | |
read(data); | |
}); | |
req.socket.addListener('end', function() { | |
$.remove(that); | |
}); | |
req.socket.addListener('error', function() { | |
that.close(); | |
}); | |
$.add(this); | |
}; | |
function Server() { | |
var that = this; | |
var $ = new http.Server(); | |
var connections = {}; | |
// WebSockets | |
$.addListener('upgrade', function(req, socket, upgradeHeader) { | |
if (req.method === 'GET' | |
&& 'upgrade' in req.headers && 'connection' in req.headers | |
&& req.headers.upgrade.toLowerCase() === 'websocket' | |
&& req.headers.connection.toLowerCase() === 'upgrade') { | |
// Setup connection | |
socket.setTimeout(0); | |
socket.setNoDelay(true); | |
socket.setKeepAlive(true, 0); | |
new Connection(that, req, socket, req.headers, upgradeHeader); | |
} else { | |
socket.end(); | |
socket.destroy(); | |
} | |
}); | |
// Flash policy | |
var $flash = new http.Server(); | |
var flashPort = 843; | |
function flashPolicy(socket) { | |
var callback = function(data) { | |
if (data.toString() === '<policy-file-request/>\x00') { | |
socket.write('<?xml version="1.0"?>' | |
+ '<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">' | |
+ '<cross-domain-policy>' | |
+ ' <allow-access-from domain="*" to-ports="*" />' | |
+ '</cross-domain-policy>' | |
); | |
socket.end(); | |
socket.destroy(); | |
} else if (flashPort === 843) { | |
socket.end(); | |
socket.destroy(); | |
} | |
socket.removeListener('data', callback); | |
} | |
socket.on('data', callback); | |
} | |
// Methods and Events | |
this.add = function(conn) { | |
connections[conn.id] = conn; | |
that.onConnect(conn); | |
}; | |
this.remove = function(conn) { | |
that.onClose(conn); | |
delete connections[conn.id]; | |
}; | |
this.onConnect = function(conn) { | |
}; | |
this.onMessage = function(conn, data) { | |
}; | |
this.onClose = function(conn) { | |
}; | |
this.broadcast = function(data) { | |
var bytes = 0; | |
for(var c in connections) { | |
bytes += connections[c].send(data); | |
} | |
return bytes; | |
}; | |
this.listen = function(port) { | |
try { | |
$flash.listen(843); | |
$flash.addListener('connection', flashPolicy); | |
} catch (e) { | |
flashPort = port; | |
$.addListener('connection', flashPolicy); | |
} | |
$.listen(port); | |
}; | |
}; | |
exports.Server = Server; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment