346 lines
10 KiB
JavaScript
346 lines
10 KiB
JavaScript
/**
|
|
* 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
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
require('joose');
|
|
|
|
var log4js = require('log4js');
|
|
var socketio = require('socket.io');
|
|
var fs = require('fs');
|
|
var settings = require('./utils/Settings');
|
|
var socketIORouter = require("./handler/SocketIORouter");
|
|
var db = require('./db/DB');
|
|
var async = require('async');
|
|
var express = require('express');
|
|
var path = require('path');
|
|
var minify = require('./utils/Minify');
|
|
var formidable = require('formidable');
|
|
var apiHandler;
|
|
var exportHandler;
|
|
var importHandler;
|
|
var exporthtml;
|
|
var readOnlyManager;
|
|
var padManager;
|
|
|
|
//try to get the git version
|
|
var version = "";
|
|
try
|
|
{
|
|
var ref = fs.readFileSync("../.git/HEAD", "utf-8");
|
|
var refPath = "../.git/" + ref.substring(5, ref.indexOf("\n"));
|
|
version = fs.readFileSync(refPath, "utf-8");
|
|
version = version.substring(0, 8);
|
|
}
|
|
catch(e)
|
|
{
|
|
console.warn("Can't get git version for server header\n" + e.message)
|
|
}
|
|
|
|
var serverName = "Etherpad-Lite " + version + " (http://j.mp/ep-lite)";
|
|
|
|
//cache 6 hours
|
|
exports.maxAge = 1000*60*60*6;
|
|
|
|
async.waterfall([
|
|
//initalize the database
|
|
function (callback)
|
|
{
|
|
db.init(callback);
|
|
},
|
|
//initalize the http server
|
|
function (callback)
|
|
{
|
|
//create server
|
|
var app = express.createServer();
|
|
|
|
//load modules that needs a initalized db
|
|
readOnlyManager = require("./db/ReadOnlyManager");
|
|
exporthtml = require("./utils/ExportHtml");
|
|
exportHandler = require('./handler/ExportHandler');
|
|
importHandler = require('./handler/ImportHandler');
|
|
apiHandler = require('./handler/APIHandler');
|
|
padManager = require('./db/PadManager');
|
|
|
|
//install logging
|
|
var httpLogger = log4js.getLogger("http");
|
|
app.configure(function()
|
|
{
|
|
app.use(log4js.connectLogger(httpLogger, { level: log4js.levels.INFO, format: ':status, :method :url'}));
|
|
});
|
|
|
|
//serve static files
|
|
app.get('/static/*', function(req, res)
|
|
{
|
|
res.header("Server", serverName);
|
|
var filePath = path.normalize(__dirname + "/.." + req.url.split("?")[0]);
|
|
res.sendfile(filePath, { maxAge: exports.maxAge });
|
|
});
|
|
|
|
//serve minified files
|
|
app.get('/minified/:id', function(req, res, next)
|
|
{
|
|
res.header("Server", serverName);
|
|
|
|
var id = req.params.id;
|
|
|
|
if(id == "pad.js" || id == "timeslider.js")
|
|
{
|
|
minify.minifyJS(req,res,id);
|
|
}
|
|
else
|
|
{
|
|
next();
|
|
}
|
|
});
|
|
|
|
//serve read only pad
|
|
app.get('/ro/:id', function(req, res)
|
|
{
|
|
res.header("Server", serverName);
|
|
|
|
var html;
|
|
var padId;
|
|
var pad;
|
|
|
|
async.series([
|
|
//translate the read only pad to a padId
|
|
function(callback)
|
|
{
|
|
readOnlyManager.getPadId(req.params.id, function(err, _padId)
|
|
{
|
|
padId = _padId;
|
|
callback(err);
|
|
});
|
|
},
|
|
//render the html document
|
|
function(callback)
|
|
{
|
|
//return if the there is no padId
|
|
if(padId == null)
|
|
{
|
|
callback("notfound");
|
|
return;
|
|
}
|
|
|
|
//render the html document
|
|
exporthtml.getPadHTMLDocument(padId, null, false, function(err, _html)
|
|
{
|
|
html = _html;
|
|
callback(err);
|
|
});
|
|
}
|
|
], function(err)
|
|
{
|
|
//throw any unexpected error
|
|
if(err && err != "notfound")
|
|
throw err;
|
|
|
|
if(err == "notfound")
|
|
res.send('404 - Not Found', 404);
|
|
else
|
|
res.send(html);
|
|
});
|
|
});
|
|
|
|
//serve pad.html under /p
|
|
app.get('/p/:pad', function(req, res, next)
|
|
{
|
|
//ensure the padname is valid and the url doesn't end with a /
|
|
if(!padManager.isValidPadId(req.params.pad) || /\/$/.test(req.url))
|
|
{
|
|
next();
|
|
return;
|
|
}
|
|
|
|
res.header("Server", serverName);
|
|
var filePath = path.normalize(__dirname + "/../static/pad.html");
|
|
res.sendfile(filePath, { maxAge: exports.maxAge });
|
|
});
|
|
|
|
//serve timeslider.html under /p/$padname/timeslider
|
|
app.get('/p/:pad/timeslider', function(req, res, next)
|
|
{
|
|
//ensure the padname is valid and the url doesn't end with a /
|
|
if(!padManager.isValidPadId(req.params.pad) || /\/$/.test(req.url))
|
|
{
|
|
next();
|
|
return;
|
|
}
|
|
|
|
res.header("Server", serverName);
|
|
var filePath = path.normalize(__dirname + "/../static/timeslider.html");
|
|
res.sendfile(filePath, { maxAge: exports.maxAge });
|
|
});
|
|
|
|
//serve timeslider.html under /p/$padname/timeslider
|
|
app.get('/p/:pad/export/:type', function(req, res, next)
|
|
{
|
|
//ensure the padname is valid and the url doesn't end with a /
|
|
if(!padManager.isValidPadId(req.params.pad) || /\/$/.test(req.url))
|
|
{
|
|
next();
|
|
return;
|
|
}
|
|
|
|
var types = ["pdf", "doc", "txt", "html", "odt"];
|
|
//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 && req.params.type != "html" && req.params.type != "txt" )
|
|
{
|
|
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("Server", serverName);
|
|
exportHandler.doExport(req, res, req.params.pad, req.params.type);
|
|
});
|
|
|
|
//handle import requests
|
|
app.post('/p/:pad/import', function(req, res, next)
|
|
{
|
|
//ensure the padname is valid and the url doesn't end with a /
|
|
if(!padManager.isValidPadId(req.params.pad) || /\/$/.test(req.url))
|
|
{
|
|
next();
|
|
return;
|
|
}
|
|
|
|
//if abiword is disabled, skip handling this request
|
|
if(settings.abiword == null)
|
|
{
|
|
next();
|
|
return;
|
|
}
|
|
|
|
res.header("Server", serverName);
|
|
importHandler.doImport(req, res, req.params.pad);
|
|
});
|
|
|
|
var apiLogger = log4js.getLogger("API");
|
|
|
|
//This is a api call, collect all post informations and pass it to the apiHandler
|
|
app.get('/api/1/:func', function(req, res)
|
|
{
|
|
res.header("Server", serverName);
|
|
|
|
apiLogger.info("REQUEST, " + req.params.func + ", " + JSON.stringify(req.query));
|
|
|
|
//wrap the send function so we can log the response
|
|
res._send = res.send;
|
|
res.send = function(response)
|
|
{
|
|
response = JSON.stringify(response);
|
|
apiLogger.info("RESPONSE, " + req.params.func + ", " + response);
|
|
res._send(response);
|
|
}
|
|
|
|
//call the api handler
|
|
apiHandler.handle(req.params.func, req.query, req, res);
|
|
});
|
|
|
|
//The Etherpad client side sends information about how a disconnect happen
|
|
app.post('/ep/pad/connection-diagnostic-info', function(req, res)
|
|
{
|
|
new formidable.IncomingForm().parse(req, function(err, fields, files)
|
|
{
|
|
console.log("DIAGNOSTIC-INFO: " + fields.diagnosticInfo);
|
|
res.end("OK");
|
|
});
|
|
});
|
|
|
|
//serve index.html under /
|
|
app.get('/', function(req, res)
|
|
{
|
|
res.header("Server", serverName);
|
|
var filePath = path.normalize(__dirname + "/../static/index.html");
|
|
res.sendfile(filePath, { maxAge: exports.maxAge });
|
|
});
|
|
|
|
//serve robots.txt
|
|
app.get('/robots.txt', function(req, res)
|
|
{
|
|
res.header("Server", serverName);
|
|
var filePath = path.normalize(__dirname + "/../static/robots.txt");
|
|
res.sendfile(filePath, { maxAge: exports.maxAge });
|
|
});
|
|
|
|
//serve favicon.ico
|
|
app.get('/favicon.ico', function(req, res)
|
|
{
|
|
res.header("Server", serverName);
|
|
var filePath = path.normalize(__dirname + "/../static/favicon.ico");
|
|
res.sendfile(filePath, { maxAge: exports.maxAge });
|
|
});
|
|
|
|
//let the server listen
|
|
app.listen(settings.port, settings.ip);
|
|
console.log("Server is listening at " + settings.ip + ":" + settings.port);
|
|
|
|
//init socket.io and redirect all requests to the MessageHandler
|
|
var io = socketio.listen(app);
|
|
|
|
//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
|
|
io.set('transports', ['xhr-polling']);
|
|
|
|
var socketIOLogger = log4js.getLogger("socket.io");
|
|
io.set('logger', {
|
|
debug: function (str)
|
|
{
|
|
//supress debug messages
|
|
//socketIOLogger.debug(str);
|
|
},
|
|
info: function (str)
|
|
{
|
|
socketIOLogger.info(str);
|
|
},
|
|
warn: function (str)
|
|
{
|
|
socketIOLogger.warn(str);
|
|
},
|
|
error: function (str)
|
|
{
|
|
socketIOLogger.error(str);
|
|
},
|
|
});
|
|
|
|
//minify socket.io javascript
|
|
if(settings.minify)
|
|
io.enable('browser client minification');
|
|
|
|
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);
|
|
|
|
callback(null);
|
|
}
|
|
]);
|