Server module refactor; Control module refactor;
[KiwiIRC.git] / server / weblistener.js
CommitLineData
a8bf3ea4
JA
1var ws = require('socket.io'),
2 events = require('events'),
3 http = require('http'),
4 https = require('https'),
5 util = require('util'),
6 fs = require('fs'),
7 dns = require('dns'),
186531ed 8 url = require('url'),
f9ff7686 9 _ = require('lodash'),
8f2efe03 10 spdy = require('spdy'),
1286229a
D
11 Client = require('./client.js').Client,
12 HttpHandler = require('./httphandler.js').HttpHandler,
f2fb32b7
D
13 rehash = require('./rehash.js'),
14 range_check = require('range_check');
1286229a
D
15
16
17
18rehash.on('rehashed', function (files) {
19 Client = require('./client.js').Client;
2f1e8a71 20 HttpHandler = require('./httphandler.js').HttpHandler;
1286229a
D
21});
22
186531ed
D
23
24// Instance of HttpHandler
25var http_handler;
26
a8bf3ea4 27
8b0eb787 28var WebListener = function (web_config, transports) {
71c81a3b 29 var hs, opts, ws_opts,
a8bf3ea4
JA
30 that = this;
31
71c81a3b 32
a8bf3ea4
JA
33 events.EventEmitter.call(this);
34
8b0eb787 35 http_handler = new HttpHandler(web_config);
a8bf3ea4 36
71c81a3b
D
37 // Standard options for the socket.io connections
38 ws_opts = {
39 'log level': 0,
40 'log colors': 0
41 };
42
43
8b0eb787 44 if (web_config.ssl) {
a8bf3ea4 45 opts = {
562ecbe0
PV
46 key: fs.readFileSync(web_config.ssl_key),
47 cert: fs.readFileSync(web_config.ssl_cert)
a8bf3ea4 48 };
186531ed 49
a8bf3ea4 50 // Do we have an intermediate certificate?
480552a2
D
51 if (typeof web_config.ssl_ca !== 'undefined') {
52 // An array of them?
53 if (typeof web_config.ssl_ca.map !== 'undefined') {
54 opts.ca = web_config.ssl_ca.map(function (f) { return fs.readFileSync(f); });
186531ed 55
480552a2
D
56 } else {
57 opts.ca = fs.readFileSync(web_config.ssl_ca);
58 }
59 }
186531ed 60
8f2efe03
JA
61 hs = spdy.createServer(opts, handleHttpRequest);
62
186531ed 63 // Start socket.io listening on this weblistener
71c81a3b 64 this.ws = ws.listen(hs, _.extend({ssl: true}, ws_opts));
e380bc9e
D
65 hs.listen(web_config.port, web_config.address, function () {
66 that.emit('listening');
67 });
a8bf3ea4 68 } else {
186531ed 69
a8bf3ea4 70 // Start some plain-text server up
186531ed
D
71 hs = http.createServer(handleHttpRequest);
72
73 // Start socket.io listening on this weblistener
71c81a3b 74 this.ws = ws.listen(hs, _.extend({ssl: false}, ws_opts));
e380bc9e
D
75 hs.listen(web_config.port, web_config.address, function () {
76 that.emit('listening');
77 });
a8bf3ea4 78 }
d558508c
JA
79
80 hs.on('error', function (err) {
81 that.emit('error', err);
82 })
a8bf3ea4 83
a8bf3ea4
JA
84 this.ws.enable('browser client minification');
85 this.ws.enable('browser client etag');
86 this.ws.set('transports', transports);
b737610b 87 this.ws.set('resource', (global.config.http_base_path || '') + '/transport');
a8bf3ea4 88
c6e3ed44
D
89 this.ws.of('/kiwi').authorization(authoriseConnection)
90 .on('connection', function () {
91 newConnection.apply(that, arguments);
92 }
93 );
a8bf3ea4
JA
94 this.ws.of('/kiwi').on('error', console.log);
95};
96util.inherits(WebListener, events.EventEmitter);
97
186531ed
D
98
99
100function handleHttpRequest(request, response) {
101 var uri = url.parse(request.url, true);
102
103 // If this isn't a socket.io request, pass it onto the http handler
104 if (uri.pathname.substr(0, 10) !== '/socket.io') {
105 http_handler.serve(request, response);
106 }
107}
108
a8bf3ea4 109
15fefff7
D
110/**
111 * Get the reverse DNS entry for this connection.
112 * Used later on for webirc, etc functionality
113 */
772a4bb6 114function authoriseConnection(handshakeData, callback) {
c6e3ed44
D
115 var address = handshakeData.address.address;
116
117 // If a forwarded-for header is found, switch the source address
f2fb32b7 118 if (handshakeData.headers[global.config.http_proxy_ip_header || 'x-forwarded-for']) {
c6e3ed44 119 // Check we're connecting from a whitelisted proxy
f2fb32b7 120 if (!global.config.http_proxies || !range_check.in_range(address, global.config.http_proxies)) {
c6e3ed44
D
121 console.log('Unlisted proxy:', address);
122 callback(null, false);
123 return;
124 }
125
126 // We're sent from a whitelisted proxy, replace the hosts
127 address = handshakeData.headers['x-forwarded-for'];
128 }
129
c36ed4eb
JA
130 handshakeData.real_address = address;
131
13d7faa3 132 // If enabled, don't go over the connection limit
b737610b
JA
133 if (global.config.max_client_conns && global.config.max_client_conns > 0) {
134 if (global.clients.numOnAddress(address) + 1 > global.config.max_client_conns) {
13d7faa3
D
135 return callback(null, false);
136 }
c36ed4eb 137 }
be481108
D
138
139
140 try {
141 dns.reverse(address, function (err, domains) {
142 if (err || domains.length === 0) {
143 handshakeData.revdns = address;
144 } else {
145 handshakeData.revdns = _.first(domains) || address;
146 }
147
148 // All is well, authorise the connection
149 callback(null, true);
150 });
151 } catch (err) {
152 handshakeData.revdns = address;
a8bf3ea4 153 callback(null, true);
be481108 154 }
15fefff7 155}
a8bf3ea4 156
772a4bb6 157function newConnection(websocket) {
c36ed4eb
JA
158 var client, that = this;
159 client = new Client(websocket);
57566ca2
D
160 client.on('dispose', function () {
161 that.emit('client_dispose', this);
c36ed4eb
JA
162 });
163 this.emit('connection', client);
15fefff7 164}
186531ed
D
165
166
167
168
169
562ecbe0 170module.exports = WebListener;