mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
131 lines
3.9 KiB
JavaScript
131 lines
3.9 KiB
JavaScript
////////// Requires //////////
|
|
|
|
require("fibers");
|
|
|
|
var fs = require("fs");
|
|
var path = require("path");
|
|
|
|
var connect = require('connect');
|
|
var gzip = require('connect-gzip');
|
|
var argv = require('optimist').argv;
|
|
var mime = require('mime');
|
|
var handlebars = require('handlebars');
|
|
var useragent = require('useragent');
|
|
|
|
// this is a copy of underscore that will be shipped just for use by
|
|
// this file, server.js.
|
|
var _ = require('./underscore.js');
|
|
|
|
// Keepalives so that when the outer server dies unceremoniously and
|
|
// doesn't kill us, we quit ourselves. A little gross, but better than
|
|
// pidfiles.
|
|
var init_keepalive = function () {
|
|
var keepalive_count = 0;
|
|
|
|
process.stdin.on('data', function (data) {
|
|
keepalive_count = 0;
|
|
});
|
|
|
|
process.stdin.resume();
|
|
|
|
setInterval(function () {
|
|
keepalive_count ++;
|
|
if (keepalive_count >= 2) {
|
|
console.log("Failed to receive keepalive! Exiting.");
|
|
process.exit(1);
|
|
}
|
|
}, 3000);
|
|
};
|
|
|
|
var supported_browser = function (user_agent) {
|
|
return true;
|
|
|
|
// For now, we don't actually deny anyone. The unsupported browser
|
|
// page isn't very good.
|
|
//
|
|
// var agent = useragent.lookup(user_agent);
|
|
// return !(agent.family === 'IE' && +agent.major <= 5);
|
|
};
|
|
|
|
var run = function (bundle_dir) {
|
|
var bundle_dir = path.join(__dirname, '..');
|
|
|
|
// check environment
|
|
var port = process.env.PORT ? parseInt(process.env.PORT) : 80;
|
|
var mongo_url = process.env.MONGO_URL;
|
|
if (!mongo_url)
|
|
throw new Error("MONGO_URL must be set in environment");
|
|
|
|
// webserver
|
|
var app = connect.createServer();
|
|
app.use(gzip.staticGzip(path.join(bundle_dir, 'static_cacheable'), {maxAge: 1000 * 60 * 60 * 24 * 365}));
|
|
app.use(gzip.staticGzip(path.join(bundle_dir, 'static')));
|
|
app.use(gzip.gzip());
|
|
|
|
var app_html = fs.readFileSync(path.join(bundle_dir, 'app.html'));
|
|
var unsupported_html = fs.readFileSync(path.join(bundle_dir, 'unsupported.html'));
|
|
|
|
app.use(function (req, res) {
|
|
if (req.url === '/favicon.ico') {
|
|
// prevent /favicon.ico from returning app_html
|
|
res.writeHead(404);
|
|
res.end();
|
|
return;
|
|
}
|
|
|
|
res.writeHead(200, {'Content-Type': 'text/html'});
|
|
if (supported_browser(req.headers['user-agent']))
|
|
res.write(app_html);
|
|
else
|
|
res.write(unsupported_html);
|
|
res.end();
|
|
});
|
|
|
|
// read bundle config file
|
|
var info_raw =
|
|
fs.readFileSync(path.join(bundle_dir, 'app.json'), 'utf8');
|
|
var info = JSON.parse(info_raw);
|
|
|
|
// start up app
|
|
__meteor_bootstrap__ = {require: require, startup_hooks: [], app: app};
|
|
Fiber(function () {
|
|
// (put in a fiber to let Meteor.db operations happen during loading)
|
|
|
|
// pass in database info
|
|
__meteor_bootstrap__.mongo_url = mongo_url;
|
|
|
|
// load app code
|
|
_.each(info.load, function (filename) {
|
|
var code = fs.readFileSync(path.join(bundle_dir, filename));
|
|
// it's tempting to run the code in a new context so we can
|
|
// precisely control the enviroment the user code sees. but,
|
|
// this is harder than it looks. you get a situation where []
|
|
// created in one runInContext invocation fails 'instanceof
|
|
// Array' if tested in another (reusing the same context each
|
|
// time fixes it for {} and Object, but not [] and Array.) and
|
|
// we have no pressing need to do this, so punt.
|
|
//
|
|
// the final 'true' is an undocumented argument to
|
|
// runIn[Foo]Context that causes it to print out a descriptive
|
|
// error message on parse error. it's what require() uses to
|
|
// generate its errors.
|
|
require('vm').runInThisContext(code, filename, true);
|
|
});
|
|
|
|
// run the user startup hooks.
|
|
_.each(__meteor_bootstrap__.startup_hooks, function (x) { x(); });
|
|
|
|
// only start listening after all the startup code has run.
|
|
app.listen(port, function() {
|
|
if (argv.keepalive)
|
|
console.log("LISTENING"); // must match run.js
|
|
});
|
|
|
|
}).run();
|
|
|
|
if (argv.keepalive)
|
|
init_keepalive();
|
|
};
|
|
|
|
run();
|