Merge branch 'i18n' into development
[KiwiIRC.git] / server / kiwi.js
1 var fs = require('fs'),
2 _ = require('lodash'),
3 util = require('util'),
4 WebListener = require('./weblistener.js'),
5 config = require('./configuration.js'),
6 rehash = require('./rehash.js'),
7 modules = require('./modules.js'),
8 Identd = require('./identd.js');
9
10
11
12 process.chdir(__dirname + '/../');
13 config.loadConfig();
14
15
16 // If we're not running in the forground and we have a log file.. switch
17 // console.log to output to a file
18 if (process.argv.indexOf('-f') === -1 && global.config && global.config.log) {
19 (function () {
20 var log_file_name = global.config.log;
21
22 if (log_file_name[0] !== '/') {
23 log_file_name = __dirname + '/../' + log_file_name;
24 }
25
26
27
28 console.log = function() {
29 var logfile = fs.openSync(log_file_name, 'a'),
30 out;
31
32 out = util.format.apply(util, arguments);
33
34 // Make sure we out somthing to log and we have an open file
35 if (!out || !logfile) return;
36
37 out += '\n';
38 fs.writeSync(logfile, out, null);
39
40 fs.closeSync(logfile);
41 };
42 })();
43 }
44
45
46
47 // Make sure we have a valid config file and at least 1 server
48 if (!global.config || Object.keys(global.config).length === 0) {
49 console.log('Couldn\'t find a valid config.js file (Did you copy the config.example.js file yet?)');
50 process.exit(1);
51 }
52
53 if ((!global.config.servers) || (global.config.servers.length < 1)) {
54 console.log('No servers defined in config file');
55 process.exit(2);
56 }
57
58
59
60
61 // Create a plugin interface
62 global.modules = new modules.Publisher();
63
64 // Register as the active interface
65 modules.registerPublisher(global.modules);
66
67 // Load any modules in the config
68 if (global.config.module_dir) {
69 (global.config.modules || []).forEach(function (module_name) {
70 if (modules.load(module_name)) {
71 console.log('Module ' + module_name + ' loaded successfuly');
72 } else {
73 console.log('Module ' + module_name + ' failed to load');
74 }
75 });
76 }
77
78
79
80
81 // Holder for all the connected clients
82 global.clients = {
83 clients: Object.create(null),
84 addresses: Object.create(null),
85
86 // Local and foriegn port pairs for identd lookups
87 // {'65483_6667': client_obj, '54356_6697': client_obj}
88 port_pairs: {},
89
90 add: function (client) {
91 this.clients[client.hash] = client;
92 if (typeof this.addresses[client.real_address] === 'undefined') {
93 this.addresses[client.real_address] = Object.create(null);
94 }
95 this.addresses[client.real_address][client.hash] = client;
96 },
97
98 remove: function (client) {
99 if (typeof this.clients[client.hash] !== 'undefined') {
100 delete this.clients[client.hash];
101 delete this.addresses[client.real_address][client.hash];
102 if (Object.keys(this.addresses[client.real_address]).length < 1) {
103 delete this.addresses[client.real_address];
104 }
105 }
106 },
107
108 numOnAddress: function (addr) {
109 if (typeof this.addresses[addr] !== 'undefined') {
110 return Object.keys(this.addresses[addr]).length;
111 } else {
112 return 0;
113 }
114 }
115 };
116
117 global.servers = {
118 servers: Object.create(null),
119
120 addConnection: function (connection) {
121 var host = connection.irc_host.hostname;
122 if (!this.servers[host]) {
123 this.servers[host] = [];
124 }
125 this.servers[host].push(connection);
126 },
127
128 removeConnection: function (connection) {
129 var host = connection.irc_host.hostname
130 if (this.servers[host]) {
131 this.servers[host] = _.without(this.servers[host], connection);
132 if (this.servers[host].length === 0) {
133 delete this.servers[host];
134 }
135 }
136 },
137
138 numOnHost: function (host) {
139 if (this.servers[host]) {
140 return this.servers[host].length;
141 } else {
142 return 0;
143 }
144 }
145 };
146
147
148
149
150 /*
151 * Identd server
152 */
153 if (global.config.identd && global.config.identd.enabled) {
154 var identd_resolve_user = function(port_here, port_there) {
155 var key = port_here.toString() + '_' + port_there.toString();
156
157 if (typeof global.clients.port_pairs[key] == 'undefined') {
158 return;
159 }
160
161 return global.clients.port_pairs[key].username;
162 };
163
164 var identd_server = new Identd({
165 bind_addr: global.config.identd.address,
166 bind_port: global.config.identd.port,
167 user_id: identd_resolve_user
168 });
169
170 identd_server.start();
171 }
172
173
174
175
176 /*
177 * Web listeners
178 */
179
180
181 // Start up a weblistener for each found in the config
182 _.each(global.config.servers, function (server) {
183 var wl = new WebListener(server, global.config.transports);
184
185 wl.on('connection', function (client) {
186 clients.add(client);
187 });
188
189 wl.on('client_dispose', function (client) {
190 clients.remove(client);
191 });
192
193 wl.on('listening', function () {
194 console.log('Listening on %s:%s %s SSL', server.address, server.port, (server.ssl ? 'with' : 'without'));
195 webListenerRunning();
196 });
197
198 wl.on('error', function (err) {
199 console.log('Error listening on %s:%s: %s', server.address, server.port, err.code);
200 // TODO: This should probably be refactored. ^JA
201 webListenerRunning();
202 });
203 });
204
205 // Once all the listeners are listening, set the processes UID/GID
206 var num_listening = 0;
207 function webListenerRunning() {
208 num_listening++;
209 if (num_listening === global.config.servers.length) {
210 setProcessUid();
211 }
212 }
213
214
215
216
217 /*
218 * Process settings
219 */
220
221 // Set process title
222 process.title = 'kiwiirc';
223
224 // Change UID/GID
225 function setProcessUid() {
226 if ((global.config.group) && (global.config.group !== '')) {
227 process.setgid(global.config.group);
228 }
229 if ((global.config.user) && (global.config.user !== '')) {
230 process.setuid(global.config.user);
231 }
232 }
233
234
235 // Make sure Kiwi doesn't simply quit on an exception
236 process.on('uncaughtException', function (e) {
237 console.log('[Uncaught exception] ' + e);
238 console.log(e.stack);
239 });
240
241
242 process.on('SIGUSR1', function() {
243 if (config.loadConfig()) {
244 console.log('New config file loaded');
245 } else {
246 console.log("No new config file was loaded");
247 }
248 });
249
250
251 process.on('SIGUSR2', function() {
252 console.log('Connected clients: ' + _.size(global.clients.clients).toString());
253 console.log('Num. remote hosts: ' + _.size(global.clients.addresses).toString());
254 });
255
256
257 /*
258 * Listen for runtime commands
259 */
260
261 process.stdin.resume();
262 process.stdin.on('data', function (buffered) {
263 var data = buffered.toString().trim();
264
265 switch (data) {
266 case 'stats':
267 console.log('Connected clients: ' + _.size(global.clients.clients).toString());
268 console.log('Num. remote hosts: ' + _.size(global.clients.addresses).toString());
269 break;
270
271 case 'reconfig':
272 if (config.loadConfig()) {
273 console.log('New config file loaded');
274 } else {
275 console.log("No new config file was loaded");
276 }
277
278 break;
279
280
281 case 'rehash':
282 (function () {
283 rehash.rehashAll();
284 console.log('Rehashed');
285 })();
286
287 break;
288
289 default:
290 console.log('Unrecognised command: ' + data);
291 }
292 });