foxy-moxy/server.js

50 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-12-19 23:52:20 +00:00
try {
const newrelic = require('newrelic');
} catch (e) {
console.error("WARNING unable to load newrelic")
}
2016-12-22 19:17:46 +00:00
const express = require('express');
const cluster = require('express-cluster');
2016-12-22 19:17:46 +00:00
const uuid = require('uuid/v4');
const sanitize = require('sanitize-filename');
const Canvas = require('canvas');
2016-12-16 18:05:14 +00:00
2016-12-22 19:17:46 +00:00
const Fox = require('./js/fox.js');
const renderFox = require('./js/render-fox.js');
2016-12-15 19:24:22 +00:00
2016-12-17 02:54:21 +00:00
function composeImage(width, height, seed) {
2016-12-17 03:46:38 +00:00
seed = seed || uuid();
2016-12-22 19:17:46 +00:00
const fox = Fox(width, height, seed);
const canvas = new Canvas(width, height);
2016-12-17 02:54:21 +00:00
renderFox(canvas, fox);
return canvas;
};
2016-12-22 19:17:46 +00:00
const cacheTimeout = 60 * 60 * 24 * 30;
2016-12-19 23:43:48 +00:00
cluster((worker) => {
const app = express();
app.get('/healthcheck', (req, res) => {
res.status(200).end();
});
app.get('/:width/:seed', (req, res) => {
let width = parseInt(req.params.width) || 400;
if (width > 400) width = 400;
const seed = sanitize(req.params.seed) || uuid();
const canvas = composeImage(width, width, seed);
const buffer = canvas.toBuffer();
res.set('Cache-Control', 'max-age=' + cacheTimeout);
res.set('Content-length', buffer.length);
res.type('png');
res.end(buffer, 'binary');
});
activePort = process.env.PORT || 3000;
app.listen(activePort, () => {
console.log('worker ' + worker.id + ' is listening on port ' + activePort);
});
})