pad.libre-service.eu-etherpad/node/server.js

255 lines
7.3 KiB
JavaScript
Raw Normal View History

/**
2011-05-30 16:53:11 +02: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 14:10:41 +01:00
var ERR = require("async-stacktrace");
var log4js = require('log4js');
2011-08-18 22:29:34 +02:00
var os = require("os");
var socketio = require('socket.io');
2011-06-30 21:03:09 +02:00
var fs = require('fs');
2011-07-27 19:52:23 +02:00
var settings = require('./utils/Settings');
var db = require('./db/DB');
2011-05-19 18:36:26 +02:00
var async = require('async');
var express = require('express');
var path = require('path');
2011-07-27 19:52:23 +02:00
var minify = require('./utils/Minify');
var formidable = require('formidable');
var plugins = require("./pluginfw/plugins");
var hooks = require("./pluginfw/hooks");
var apiHandler;
var exportHandler;
2011-07-21 21:13:58 +02:00
var importHandler;
2011-07-08 19:33:01 +02:00
var exporthtml;
var readOnlyManager;
var padManager;
var securityManager;
var socketIORouter;
2011-05-19 18:36:26 +02:00
2011-06-30 21:03:09 +02: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 21:03:09 +02:00
version = fs.readFileSync(refPath, "utf-8");
2011-08-19 23:01:33 +02:00
version = version.substring(0, 7);
console.log("Your Etherpad Lite git version is " + version);
2011-06-30 21:03:09 +02:00
}
catch(e)
{
2011-07-31 19:25:51 +02:00
console.warn("Can't get git version for server header\n" + e.message)
2011-06-30 21:03:09 +02:00
}
2011-08-21 20:52:24 +02:00
console.log("Report bugs at https://github.com/Pita/etherpad-lite/issues")
2011-06-30 21:03:09 +02:00
var serverName = "Etherpad-Lite " + version + " (http://j.mp/ep-lite)";
2011-07-21 21:13:58 +02:00
//cache 6 hours
exports.maxAge = 1000*60*60*6;
2011-05-19 18:36:26 +02:00
2011-08-17 18:45:47 +02:00
//set loglevel
log4js.setGlobalLogLevel(settings.loglevel);
2011-05-14 19:57:07 +02:00
async.waterfall([
//initalize the database
function (callback)
{
db.init(callback);
},
plugins.update,
function (callback) {
console.log(["plugins", plugins.plugins]);
console.log(["parts", plugins.parts]);
console.log(["hooks", plugins.hooks]);
callback();
},
2011-05-19 18:36:26 +02:00
//initalize the http server
2011-05-14 19:57:07 +02:00
function (callback)
2011-03-26 14:10:41 +01:00
{
2011-05-19 18:36:26 +02:00
//create server
var app = express.createServer();
2012-02-25 13:38:09 +01:00
hooks.callAll("expressCreateServer", {"app": app});
app.use(function (req, res, next) {
res.header("Server", serverName);
next();
});
2011-07-08 19:33:01 +02:00
//load modules that needs a initalized db
2011-07-27 19:52:23 +02:00
readOnlyManager = require("./db/ReadOnlyManager");
exporthtml = require("./utils/ExportHtml");
exportHandler = require('./handler/ExportHandler');
importHandler = require('./handler/ImportHandler');
apiHandler = require('./handler/APIHandler');
padManager = require('./db/PadManager');
securityManager = require('./db/SecurityManager');
socketIORouter = require("./handler/SocketIORouter");
2012-02-25 00:15:57 +01:00
hasPadAccess = require("./padaccess");
2011-07-08 19:33:01 +02:00
2011-07-31 19:25:51 +02:00
//install logging
var httpLogger = log4js.getLogger("http");
2012-02-25 13:38:09 +01:00
app.configure(function() { hooks.callAll("expressConfigure", {"app": app}); });
2011-05-19 18:36:26 +02:00
app.error(function(err, req, res, next){
res.send(500);
console.error(err.stack ? err.stack : err.toString());
gracefulShutdown();
});
//serve timeslider.html under /p/$padname/timeslider
app.get('/p/:pad/:rev?/export/:type', function(req, res, next)
{
2012-01-29 03:51:25 +01:00
var types = ["pdf", "doc", "txt", "html", "odt", "dokuwiki"];
//send a 404 if we don't support this filetype
if(types.indexOf(req.params.type) == -1)
{
next();
return;
}
//if abiword is disabled, and this is a format we only support with abiword, output a message
if(settings.abiword == null &&
["odt", "pdf", "doc"].indexOf(req.params.type) !== -1)
{
res.send("Abiword is not enabled at this Etherpad Lite instance. Set the path to Abiword in settings.json to enable this feature");
return;
}
res.header("Access-Control-Allow-Origin", "*");
hasPadAccess(req, res, function()
{
exportHandler.doExport(req, res, req.params.pad, req.params.type);
});
});
2011-07-21 21:13:58 +02:00
//handle import requests
app.post('/p/:pad/import', function(req, res, next)
{
2012-01-29 03:51:25 +01:00
//if abiword is disabled, skip handling this request
if(settings.abiword == null)
{
next();
return;
}
hasPadAccess(req, res, function()
{
importHandler.doImport(req, res, req.params.pad);
});
2011-07-21 21:13:58 +02:00
});
2011-05-19 18:36:26 +02:00
//let the server listen
app.listen(settings.port, settings.ip);
console.log("Server is listening at " + settings.ip + ":" + settings.port);
2011-05-14 19:57:07 +02:00
2011-08-17 16:58:42 +02: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 16:58:42 +02: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 16:58:42 +02:00
process.on('uncaughtException', gracefulShutdown);
2011-05-19 18:36:26 +02: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 19:39:33 +01:00
io.set('transports', ['xhr-polling']);
2011-07-05 19:26:31 +02:00
2011-07-31 19:25:51 +02:00
var socketIOLogger = log4js.getLogger("socket.io");
io.set('logger', {
debug: function (str)
{
2011-11-19 23:14:31 +01:00
socketIOLogger.debug.apply(socketIOLogger, arguments);
2011-07-31 19:25:51 +02:00
},
info: function (str)
{
2011-11-19 23:14:31 +01:00
socketIOLogger.info.apply(socketIOLogger, arguments);
2011-07-31 19:25:51 +02:00
},
warn: function (str)
{
2011-11-19 23:14:31 +01:00
socketIOLogger.warn.apply(socketIOLogger, arguments);
2011-07-31 19:25:51 +02:00
},
error: function (str)
{
2011-11-19 23:14:31 +01:00
socketIOLogger.error.apply(socketIOLogger, arguments);
2011-07-31 19:25:51 +02:00
},
});
2011-07-07 19:15:39 +02:00
2011-07-27 15:46:45 +02:00
//minify socket.io javascript
if(settings.minify)
io.enable('browser client minification');
2011-07-27 19:52:23 +02: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 14:10:41 +01:00
2011-05-14 19:57:07 +02:00
callback(null);
2011-03-26 14:10:41 +01:00
}
2011-05-14 19:57:07 +02:00
]);