Stackedit/app/index.js
2014-08-28 00:04:27 +01:00

61 lines
1.5 KiB
JavaScript

var express = require('express');
var app = express();
var compression = require('compression');
var serveStatic = require('serve-static');
// Configure ejs engine
app.set('views', __dirname + '/../views');
app.engine('html', require('ejs').renderFile);
// Force HTTPS on stackedit.io
app.all('*', function(req, res, next) {
if (req.headers.host == 'stackedit.io' && req.headers['x-forwarded-proto'] != 'https') {
return res.redirect('https://stackedit.io' + req.url);
}
/\.(eot|ttf|woff)$/.test(req.url) && res.header('Access-Control-Allow-Origin', '*');
next();
});
// Use gzip compression
app.use(compression());
// Serve static resources
app.use(serveStatic(__dirname + '/../public'));
app.post('/pdfExport', require('./pdf').export);
app.post('/sshPublish', require('./ssh').publish);
app.post('/picasaImportImg', require('./picasa').importImg);
app.get('/downloadImport', require('./download').importPublic);
app.use(function(req, res, next) {
res.renderDebug = function(page) {
return res.render(page, {
cache: !req.query.hasOwnProperty('debug')
});
};
next();
});
// Serve landing.html in /
app.get('/', function(req, res) {
res.renderDebug('landing.html');
});
// Serve editor.html in /viewer
app.get('/editor', function(req, res) {
res.renderDebug('editor.html');
});
// Serve viewer.html in /viewer
app.get('/viewer', function(req, res) {
res.renderDebug('viewer.html');
});
// Error 404
app.use(function(req, res) {
res.status(404);
res.render('error_404.html');
});
module.exports = app;