-
-
Save tj/548454 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require.paths.unshift('./support'); | |
require.paths.unshift('./support/connect/lib'); | |
require('proto'); | |
var log = require('./lib/util/log').from(__filename), | |
Connect = require('connect'), | |
Express = require('express'), | |
Assets = require('./lib/assets'), | |
objToHTML = require('./lib/util/prettyJSON'), | |
Content = require('./lib/content'), | |
Jobs = require('./lib/jobs'), | |
viewsDir = __dirname + '/views', | |
publicDir = __dirname + '/public', | |
port = parseInt(process.env.PORT || 3000), | |
public_host = 'www.opowerjobs.com', | |
Server = Express.createServer(); | |
function common() { | |
log('common'); | |
Server.set('views', viewsDir); | |
Server.helpers({ | |
debug: objToHTML, | |
log: log | |
}); | |
Server.use(Connect.gzip()); | |
Server.use(Connect.favicon(publicDir + '/favicon.ico')); | |
Server.use(Assets.handler(publicDir)); | |
Server.use(Connect.staticProvider(publicDir)); | |
Server.helpers({assets: Assets, currentPageID: false, pages: []}); | |
Server.use(Server.router); | |
} | |
function production(){ | |
log('starting in production mode'); | |
//app.use(Connect.logger()); | |
Server.use(Connect.conditionalGet()); | |
Server.use(Connect.errorHandler()); | |
Assets.compress(true); | |
Jobs.autoUpdate(); | |
} | |
function development() { | |
log('starting in development mode'); | |
Server.use(Connect.errorHandler({ dumpExceptions: false, showStack: false })); | |
} | |
Server.configure(common); | |
//hack for testing poduction settings | |
if (port != 3000 || __dirname.indexOf('slug') !== -1) { | |
Server.configure(production); | |
} else { | |
Server.configure('development', development); | |
Server.configure('production', production); | |
} | |
Server.error(function(err, req, res, next){ | |
log('*************************************'); | |
log('****************ERROR****************'); | |
log('*************************************'); | |
log(err); | |
log('*************************************'); | |
res.render('error.ejs', { locals: { title: 'Error', message: objToHTML(err) } }); | |
}); | |
// Redirect other servers to the main one | |
Server.get(/.*/, function(req, res, next){ | |
var host = req.headers.host.split(':')[0]; | |
if (host != 'localhost' && host != public_host) { | |
res.redirect('http://' + public_host + req.originalUrl); | |
} else { | |
next(); | |
} | |
}); | |
Content.addHandlers( {Server: Server }); | |
Jobs.addHandlers( { Server: Server}); | |
//For Google Web Master | |
Server.get('/google97924ebf42be7c40.html', function(req, res) { | |
res.send('google-site-verification: google97924ebf42be7c40.html'); | |
res.end(); | |
}); | |
// Required for 404's to return something | |
Server.get('/*', function(req, res){ | |
log('404: ' + req.url); | |
var host = req.headers.host.split(':')[0]; | |
if (host == 'localhost') { | |
res.render('error.ejs', { locals: { message: "404, man, 404. <br /> When in production the server will autmoatically redirect to an appropriate page." } }); | |
} else { | |
var array = req.url.split('/'); | |
array.pop(); | |
res.redirect(array.join('/')); | |
} | |
}); | |
// For spark, an app launcher | |
module.exports.server = Server; | |
Server.listen(port, null); | |
log('Starting OPOWER JOBS on ' + port + '...'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment