etherpad-lite/node/server.js

176 lines
5.0 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
*
* 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
require('joose');
var socketio = require('socket.io');
2011-06-30 21:03:09 +02:00
var fs = require('fs');
var settings = require('./settings');
var socketIORouter = require("./SocketIORouter");
var db = require('./db');
2011-05-19 18:36:26 +02:00
var async = require('async');
var express = require('express');
var path = require('path');
var minify = require('./minify');
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 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.error("Can't get git version for server header\n" + e.message)
}
var serverName = "Etherpad-Lite " + version + " (http://j.mp/ep-lite)";
//cache a week
exports.maxAge = 1000*60*60*6;
2011-05-19 18:36:26 +02:00
2011-05-14 19:57:07 +02:00
async.waterfall([
2011-05-19 18:36:26 +02:00
//initalize the database
2011-05-14 19:57:07 +02:00
function (callback)
{
db.init(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();
//set logging
if(settings.logHTTP)
app.use(express.logger({ format: ':date: :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 });
2011-05-14 19:57:07 +02:00
});
2011-05-19 18:36:26 +02:00
//serve minified files
app.get('/minified/:id', function(req, res)
{
res.header("Server", serverName);
var id = req.params.id;
if(id == "pad.js")
{
minify.padJS(req,res);
}
else
{
res.send('404 - Not Found', 404);
}
});
2011-05-19 18:36:26 +02:00
//serve pad.html under /p
2011-06-30 13:40:31 +02:00
app.get('/p/:pad', function(req, res, next)
2011-05-19 18:36:26 +02:00
{
2011-06-30 13:40:31 +02:00
//ensure the padname is valid and the url doesn't end with a /
if(!isValidPadname(req.params.pad) || /\/$/.test(req.url))
{
next();
return;
}
2011-05-19 18:36:26 +02:00
res.header("Server", serverName);
var filePath = path.normalize(__dirname + "/../static/pad.html");
res.sendfile(filePath, { maxAge: exports.maxAge });
2011-05-19 18:36:26 +02:00
});
//serve timeslider.html under /p/$padname/timeslider
2011-06-30 13:40:31 +02:00
app.get('/p/:pad/timeslider', function(req, res, next)
{
2011-06-30 13:40:31 +02:00
//ensure the padname is valid and the url doesn't end with a /
if(!isValidPadname(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 });
});
2011-05-19 18:36:26 +02:00
//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 });
2011-05-19 18:36:26 +02:00
});
//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 });
2011-05-19 18:36:26 +02:00
});
//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 });
2011-05-19 18:36:26 +02:00
});
//let the server listen
app.listen(settings.port);
2011-05-14 19:57:07 +02:00
console.log("Server is listening at port " + settings.port);
2011-05-19 18:36:26 +02:00
//init socket.io and redirect all requests to the MessageHandler
var io = socketio.listen(app);
var padMessageHandler = require("./PadMessageHandler");
var timesliderMessageHandler = require("./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
]);
2011-06-30 13:40:31 +02:00
function isValidPadname(padname)
{
//ensure there is no dollar sign in the pad name
if(padname.indexOf("$")!=-1)
return false;
return true;
}