2011-03-26 15:52:56 +01:00
|
|
|
/**
|
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-08-11 16:26:41 +02:00
|
|
|
* 2011 Peter 'Pita' Martischka (Primary Technology Ltd)
|
2011-03-26 15:52:56 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2011-08-03 20:31:25 +02:00
|
|
|
var log4js = require('log4js');
|
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');
|
2012-03-01 19:00:58 +01:00
|
|
|
var plugins = require("ep_etherpad-lite/static/js/pluginfw/plugins");
|
|
|
|
var hooks = require("ep_etherpad-lite/static/js/pluginfw/hooks");
|
2012-02-26 14:14:54 +01:00
|
|
|
var npm = require("npm/lib/npm.js");
|
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
|
|
|
|
{
|
2012-02-26 14:14:54 +01:00
|
|
|
var rootPath = path.resolve(npm.dir, '..');
|
|
|
|
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-08-17 18:45:47 +02:00
|
|
|
//set loglevel
|
|
|
|
log4js.setGlobalLogLevel(settings.loglevel);
|
|
|
|
|
2011-05-14 19:57:07 +02:00
|
|
|
async.waterfall([
|
2012-02-24 23:38:37 +01:00
|
|
|
//initalize the database
|
|
|
|
function (callback)
|
|
|
|
{
|
|
|
|
db.init(callback);
|
|
|
|
},
|
|
|
|
|
2012-02-24 17:59:14 +01:00
|
|
|
plugins.update,
|
|
|
|
|
2012-02-24 20:45:02 +01:00
|
|
|
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());
|
2012-02-24 20:45:02 +01:00
|
|
|
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-24 17:59:14 +01:00
|
|
|
|
2012-01-17 10:42:06 +01:00
|
|
|
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
|
|
|
|
2012-03-04 21:23:05 +01:00
|
|
|
hooks.callAll("expressCreateServer", {"app": app});
|
|
|
|
|
2011-05-19 18:36:26 +02:00
|
|
|
//let the server listen
|
2011-07-30 17:39:53 +02:00
|
|
|
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
|
|
|
]);
|