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

109 lines
3.1 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) {
2012-02-25 15:44:04 +01:00
console.log("Installed plugins: " + plugins.formatPlugins());
console.log("Installed parts:\n" + plugins.formatParts());
console.log("Installed hooks:\n" + plugins.formatHooks());
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
2012-02-25 13:38:09 +01:00
app.configure(function() { hooks.callAll("expressConfigure", {"app": app}); });
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
callback(null);
2011-03-26 14:10:41 +01:00
}
2011-05-14 19:57:07 +02:00
]);