etherpad-lite/node/server.js

273 lines
8.4 KiB
JavaScript
Raw Normal View History

/**
2011-05-30 15:53:11 +01:00
* This module is started with bin/run.sh. It sets up a Express HTTP and a Socket.IO Server.
* Static file Requests are answered directly from this module, Socket.IO messages are passed
* to MessageHandler and minfied requests are passed to minified.
*/
/*
* 2011 Peter 'Pita' Martischka (Primary Technology Ltd)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2011-03-26 13:10:41 +00:00
var ERR = require("async-stacktrace");
var log4js = require('log4js');
2011-08-18 21:29:34 +01:00
var os = require("os");
var socketio = require('socket.io');
2011-06-30 20:03:09 +01:00
var fs = require('fs');
2011-07-27 18:52:23 +01:00
var settings = require('./utils/Settings');
var db = require('./db/DB');
2011-05-19 17:36:26 +01:00
var async = require('async');
var express = require('express');
var path = require('path');
2011-07-27 18:52:23 +01:00
var minify = require('./utils/Minify');
var formidable = require('formidable');
var padManager;
var socketIORouter;
2011-05-19 17:36:26 +01:00
2011-06-30 20:03:09 +01:00
//try to get the git version
var version = "";
try
{
var rootPath = path.normalize(__dirname + "/../")
var ref = fs.readFileSync(rootPath + ".git/HEAD", "utf-8");
var refPath = rootPath + ".git/" + ref.substring(5, ref.indexOf("\n"));
2011-06-30 20:03:09 +01:00
version = fs.readFileSync(refPath, "utf-8");
2011-08-19 22:01:33 +01:00
version = version.substring(0, 7);
console.log("Your Etherpad Lite git version is " + version);
2011-06-30 20:03:09 +01:00
}
catch(e)
{
2011-07-31 18:25:51 +01:00
console.warn("Can't get git version for server header\n" + e.message)
2011-06-30 20:03:09 +01:00
}
2011-08-21 19:52:24 +01:00
console.log("Report bugs at https://github.com/Pita/etherpad-lite/issues")
2011-06-30 20:03:09 +01:00
var serverName = "Etherpad-Lite " + version + " (http://j.mp/ep-lite)";
2011-07-21 20:13:58 +01:00
//cache 6 hours
exports.maxAge = 1000*60*60*6;
2011-05-19 17:36:26 +01:00
2011-08-17 17:45:47 +01:00
//set loglevel
log4js.setGlobalLogLevel(settings.loglevel);
2011-05-14 18:57:07 +01:00
async.waterfall([
2011-05-19 17:36:26 +01:00
//initalize the database
2011-05-14 18:57:07 +01:00
function (callback)
{
db.init(callback);
},
2011-05-19 17:36:26 +01:00
//initalize the http server
2011-05-14 18:57:07 +01:00
function (callback)
2011-03-26 13:10:41 +00:00
{
2011-05-19 17:36:26 +01:00
//create server
var app = express.createServer();
2012-02-08 14:21:24 +01:00
app.maxAge = exports.maxAge;
app.settings = settings;
2012-02-08 14:21:24 +01:00
app.use(function (req, res, next) {
res.header("Server", serverName);
next();
});
2012-01-28 21:51:25 -05:00
//redirects browser to the pad's sanitized url if needed. otherwise, renders the html
app.param('pad', function (req, res, next, padId) {
//ensure the padname is valid and the url doesn't end with a /
if(!padManager.isValidPadId(padId) || /\/$/.test(req.url))
{
res.send('Such a padname is forbidden', 404);
}
else
{
padManager.sanitizePadId(padId, function(sanitizedPadId) {
//the pad id was sanitized, so we redirect to the sanitized version
if(sanitizedPadId != padId)
{
var real_path = req.path.replace(/^\/p\/[^\/]+/, '/p/' + sanitizedPadId);
res.header('Location', real_path);
res.send('You should be redirected to <a href="' + real_path + '">' + real_path + '</a>', 302);
}
//the pad id was fine, so just render it
else
{
next();
}
});
}
});
2011-07-08 18:33:01 +01:00
//load modules that needs a initalized db
app.readOnlyManager = require("./db/ReadOnlyManager");
app.exporthtml = require("./utils/ExportHtml");
app.exportHandler = require('./handler/ExportHandler');
app.importHandler = require('./handler/ImportHandler');
2012-02-08 14:45:10 +01:00
app.apiHandler = require('./handler/APIHandler');
padManager = require('./db/PadManager');
app.securityManager = require('./db/SecurityManager');
socketIORouter = require("./handler/SocketIORouter");
2011-07-08 18:33:01 +01:00
2011-07-31 18:25:51 +01:00
//install logging
var httpLogger = log4js.getLogger("http");
app.configure(function()
{
// Activate http basic auth if it has been defined in settings.json
if(settings.httpAuth != null) app.use(basic_auth);
2011-11-03 07:34:51 +01:00
// If the log level specified in the config file is WARN or ERROR the application server never starts listening to requests as reported in issue #158.
// Not installing the log4js connect logger when the log level has a higher severity than INFO since it would not log at that level anyway.
if (!(settings.loglevel === "WARN" || settings.loglevel == "ERROR"))
app.use(log4js.connectLogger(httpLogger, { level: log4js.levels.INFO, format: ':status, :method :url'}));
app.use(express.cookieParser());
2011-07-31 18:25:51 +01:00
});
2011-05-19 17:36:26 +01:00
app.error(function(err, req, res, next){
res.send(500);
console.error(err.stack ? err.stack : err.toString());
gracefulShutdown();
});
2011-05-19 17:36:26 +01:00
//serve static files
app.get('/static/js/require-kernel.js', function (req, res, next) {
res.header("Content-Type","application/javascript; charset: utf-8");
res.write(minify.requireDefinition());
res.end();
});
2011-05-19 17:36:26 +01:00
//serve minified files
app.get('/minified/:filename', minify.minifyJS);
//checks for basic http auth
function basic_auth (req, res, next) {
if (req.headers.authorization && req.headers.authorization.search('Basic ') === 0) {
// fetch login and password
if (new Buffer(req.headers.authorization.split(' ')[1], 'base64').toString() == settings.httpAuth) {
next();
return;
}
}
res.header('WWW-Authenticate', 'Basic realm="Protected Area"');
if (req.headers.authorization) {
setTimeout(function () {
res.send('Authentication required', 401);
2011-12-04 17:27:36 +01:00
}, 1000);
} else {
res.send('Authentication required', 401);
}
}
require('./routes/readonly')(app);
require('./routes/import')(app);
require('./routes/export')(app);
2011-11-18 21:52:12 -05:00
2012-02-08 14:45:10 +01:00
require('./routes/api')(app);
2012-02-08 13:57:04 +01:00
require('./routes/debug')(app);
2012-02-08 14:21:24 +01:00
require('./routes/static')(app);
2011-05-19 17:36:26 +01:00
//let the server listen
app.listen(settings.port, settings.ip);
console.log("Server is listening at " + settings.ip + ":" + settings.port);
2011-05-14 18:57:07 +01:00
2011-08-17 15:58:42 +01:00
var onShutdown = false;
var gracefulShutdown = function(err)
{
if(err && err.stack)
{
console.error(err.stack);
}
else if(err)
{
console.error(err);
}
//ensure there is only one graceful shutdown running
if(onShutdown) return;
onShutdown = true;
console.log("graceful shutdown...");
//stop the http server
app.close();
//do the db shutdown
db.db.doShutdown(function()
{
console.log("db sucessfully closed.");
process.exit(0);
});
setTimeout(function(){
process.exit(1);
}, 3000);
2011-08-17 15:58:42 +01:00
}
//connect graceful shutdown with sigint and uncaughtexception
if(os.type().indexOf("Windows") == -1)
{
//sigint is so far not working on windows
//https://github.com/joyent/node/issues/1553
process.on('SIGINT', gracefulShutdown);
}
2011-08-17 15:58:42 +01:00
process.on('uncaughtException', gracefulShutdown);
2011-05-19 17:36:26 +01:00
//init socket.io and redirect all requests to the MessageHandler
var io = socketio.listen(app);
2011-07-05 19:26:31 +02:00
//this is only a workaround to ensure it works with all browers behind a proxy
//we should remove this when the new socket.io version is more stable
2011-11-25 13:39:33 -05:00
io.set('transports', ['xhr-polling']);
2011-07-05 19:26:31 +02:00
2011-07-31 18:25:51 +01:00
var socketIOLogger = log4js.getLogger("socket.io");
io.set('logger', {
debug: function (str)
{
2011-11-19 14:14:31 -08:00
socketIOLogger.debug.apply(socketIOLogger, arguments);
2011-07-31 18:25:51 +01:00
},
info: function (str)
{
2011-11-19 14:14:31 -08:00
socketIOLogger.info.apply(socketIOLogger, arguments);
2011-07-31 18:25:51 +01:00
},
warn: function (str)
{
2011-11-19 14:14:31 -08:00
socketIOLogger.warn.apply(socketIOLogger, arguments);
2011-07-31 18:25:51 +01:00
},
error: function (str)
{
2011-11-19 14:14:31 -08:00
socketIOLogger.error.apply(socketIOLogger, arguments);
2011-07-31 18:25:51 +01:00
},
});
2011-07-07 18:15:39 +01:00
2011-07-27 14:46:45 +01:00
//minify socket.io javascript
if(settings.minify)
io.enable('browser client minification');
2011-07-27 18:52:23 +01:00
var padMessageHandler = require("./handler/PadMessageHandler");
var timesliderMessageHandler = require("./handler/TimesliderMessageHandler");
//Initalize the Socket.IO Router
socketIORouter.setSocketIO(io);
socketIORouter.addComponent("pad", padMessageHandler);
socketIORouter.addComponent("timeslider", timesliderMessageHandler);
2011-03-26 13:10:41 +00:00
2011-05-14 18:57:07 +01:00
callback(null);
2011-03-26 13:10:41 +00:00
}
2011-05-14 18:57:07 +01:00
]);