Spaces:
Running
Running
File size: 13,152 Bytes
ecdd7f6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 | const path = require('path');
const express = require('express');
const javascriptStringify = require('javascript-stringify').stringify;
const qs = require('qs');
const rateLimit = require('express-rate-limit');
const text2png = require('text2png');
const packageJson = require('./package.json');
const telemetry = require('./telemetry');
const { getPdfBufferFromPng, getPdfBufferWithText } = require('./lib/pdf');
const { logger } = require('./logging');
const { renderChartJs } = require('./lib/charts');
const { renderGraphviz } = require('./lib/graphviz');
const { toChartJs, parseSize } = require('./lib/google_image_charts');
const { renderQr, DEFAULT_QR_SIZE } = require('./lib/qr');
const app = express();
const isDev = app.get('env') === 'development' || app.get('env') === 'test';
app.set('query parser', (str) =>
qs.parse(str, {
decode(s) {
// Default express implementation replaces '+' with space. We don't want
// that. See https://github.com/expressjs/express/issues/3453
return decodeURIComponent(s);
},
}),
);
app.use(
express.json({
limit: process.env.EXPRESS_JSON_LIMIT || '100kb',
}),
);
app.use(express.urlencoded());
if (process.env.RATE_LIMIT_PER_MIN) {
const limitMax = parseInt(process.env.RATE_LIMIT_PER_MIN, 10);
logger.info('Enabling rate limit:', limitMax);
const limiter = rateLimit({
windowMs: 60 * 1000,
max: limitMax,
message:
'Please slow down your requests! This is a shared public endpoint. Email support@quickchart.io or go to https://quickchart.io/pricing/ for rate limit exceptions or to purchase a commercial license.',
onLimitReached: (req) => {
logger.info('User hit rate limit!', req.ip);
},
keyGenerator: (req) => {
return req.headers['x-forwarded-for'] || req.ip;
},
});
app.use('/chart', limiter);
}
app.get('/', (req, res) => {
res.send(
'QuickChart is running!<br><br>If you are using QuickChart commercially, please consider <a href="https://quickchart.io/pricing/">purchasing a license</a> to support the project.',
);
});
app.post('/telemetry', (req, res) => {
const chartCount = parseInt(req.body.chartCount, 10);
const qrCount = parseInt(req.body.qrCount, 10);
const pid = req.body.pid;
if (chartCount && !isNaN(chartCount)) {
telemetry.receive(pid, 'chartCount', chartCount);
}
if (qrCount && !isNaN(qrCount)) {
telemetry.receive(pid, 'qrCount', qrCount);
}
res.send({ success: true });
});
function utf8ToAscii(str) {
const enc = new TextEncoder();
const u8s = enc.encode(str);
return Array.from(u8s)
.map((v) => String.fromCharCode(v))
.join('');
}
function sanitizeErrorHeader(msg) {
if (typeof msg === 'string') {
return utf8ToAscii(msg).replace(/\r?\n|\r/g, '');
}
return '';
}
function failPng(res, msg, statusCode = 500) {
res.writeHead(statusCode, {
'Content-Type': 'image/png',
'X-quickchart-error': sanitizeErrorHeader(msg),
});
res.end(
text2png(`Chart Error: ${msg}`, {
padding: 10,
backgroundColor: '#fff',
}),
);
}
function failSvg(res, msg, statusCode = 500) {
res.writeHead(statusCode, {
'Content-Type': 'image/svg+xml',
'X-quickchart-error': sanitizeErrorHeader(msg),
});
res.end(`
<svg viewBox="0 0 240 80" xmlns="http://www.w3.org/2000/svg">
<style>
p {
font-size: 8px;
}
</style>
<foreignObject width="240" height="80"
requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility">
<p xmlns="http://www.w3.org/1999/xhtml">${msg}</p>
</foreignObject>
</svg>`);
}
async function failPdf(res, msg) {
const buf = await getPdfBufferWithText(msg);
res.writeHead(500, {
'Content-Type': 'application/pdf',
'X-quickchart-error': sanitizeErrorHeader(msg),
});
res.end(buf);
}
function renderChartToPng(req, res, opts) {
opts.failFn = failPng;
opts.onRenderHandler = (buf) => {
res
.type('image/png')
.set({
// 1 week cache
'Cache-Control': isDev ? 'no-cache' : 'public, max-age=604800',
})
.send(buf)
.end();
};
doChartjsRender(req, res, opts);
}
function renderChartToSvg(req, res, opts) {
opts.failFn = failSvg;
opts.onRenderHandler = (buf) => {
res
.type('image/svg+xml')
.set({
// 1 week cache
'Cache-Control': isDev ? 'no-cache' : 'public, max-age=604800',
})
.send(buf)
.end();
};
doChartjsRender(req, res, opts);
}
async function renderChartToPdf(req, res, opts) {
opts.failFn = failPdf;
opts.onRenderHandler = async (buf) => {
const pdfBuf = await getPdfBufferFromPng(buf);
res.writeHead(200, {
'Content-Type': 'application/pdf',
'Content-Length': pdfBuf.length,
// 1 week cache
'Cache-Control': isDev ? 'no-cache' : 'public, max-age=604800',
});
res.end(pdfBuf);
};
doChartjsRender(req, res, opts);
}
function doChartjsRender(req, res, opts) {
if (!opts.chart) {
opts.failFn(res, 'You are missing variable `c` or `chart`');
return;
}
const width = parseInt(opts.width, 10) || 500;
const height = parseInt(opts.height, 10) || 300;
let untrustedInput = opts.chart;
if (opts.encoding === 'base64') {
// TODO(ian): Move this decoding up the call stack.
try {
untrustedInput = Buffer.from(opts.chart, 'base64').toString('utf8');
} catch (err) {
logger.warn('base64 malformed', err);
opts.failFn(res, err);
return;
}
}
renderChartJs(
width,
height,
opts.backgroundColor,
opts.devicePixelRatio,
opts.version || '2.9.4',
opts.format,
untrustedInput,
)
.then(opts.onRenderHandler)
.catch((err) => {
logger.warn('Chart error', err);
opts.failFn(res, err);
});
}
async function handleGraphviz(req, res, graphVizDef, opts) {
try {
const buf = await renderGraphviz(req.query.chl, opts);
res
.status(200)
.type(opts.format === 'png' ? 'image/png' : 'image/svg+xml')
.end(buf);
} catch (err) {
if (opts.format === 'png') {
failPng(res, `Graph Error: ${err}`);
} else {
failSvg(res, `Graph Error: ${err}`);
}
}
}
function handleGChart(req, res) {
// TODO(ian): Move these special cases into Google Image Charts-specific
// handler.
if (req.query.cht.startsWith('gv')) {
// Graphviz chart
const format = req.query.chof;
const engine = req.query.cht.indexOf(':') > -1 ? req.query.cht.split(':')[1] : 'dot';
const opts = {
format,
engine,
};
if (req.query.chs) {
const size = parseSize(req.query.chs);
opts.width = size.width;
opts.height = size.height;
}
handleGraphviz(req, res, req.query.chl, opts);
return;
} else if (req.query.cht === 'qr') {
const size = parseInt(req.query.chs.split('x')[0], 10);
const qrData = req.query.chl;
const chldVals = (req.query.chld || '').split('|');
const ecLevel = chldVals[0] || 'L';
const margin = chldVals[1] || 4;
const qrOpts = {
margin: margin,
width: size,
errorCorrectionLevel: ecLevel,
};
const format = 'png';
const encoding = 'UTF-8';
renderQr(format, encoding, qrData, qrOpts)
.then((buf) => {
res.writeHead(200, {
'Content-Type': format === 'png' ? 'image/png' : 'image/svg+xml',
'Content-Length': buf.length,
// 1 week cache
'Cache-Control': isDev ? 'no-cache' : 'public, max-age=604800',
});
res.end(buf);
})
.catch((err) => {
failPng(res, err);
});
telemetry.count('qrCount');
return;
}
let converted;
try {
converted = toChartJs(req.query);
} catch (err) {
logger.error(`GChart error: Could not interpret ${req.originalUrl}`);
res.status(500).end('Sorry, this chart configuration is not supported right now');
return;
}
if (req.query.format === 'chartjs-config') {
// Chart.js config
res.writeHead(200, {
'Content-Type': 'application/json',
});
res.end(javascriptStringify(converted.chart, undefined, 2));
return;
}
renderChartJs(
converted.width,
converted.height,
converted.backgroundColor,
1.0 /* devicePixelRatio */,
'2.9.4' /* version */,
undefined /* format */,
converted.chart,
).then((buf) => {
res.writeHead(200, {
'Content-Type': 'image/png',
'Content-Length': buf.length,
// 1 week cache
'Cache-Control': isDev ? 'no-cache' : 'public, max-age=604800',
});
res.end(buf);
});
telemetry.count('chartCount');
}
app.get('/chart', (req, res) => {
if (req.query.cht) {
// This is a Google Image Charts-compatible request.
handleGChart(req, res);
return;
}
const outputFormat = (req.query.f || req.query.format || 'png').toLowerCase();
const opts = {
chart: req.query.c || req.query.chart,
height: req.query.h || req.query.height,
width: req.query.w || req.query.width,
backgroundColor: req.query.backgroundColor || req.query.bkg,
devicePixelRatio: req.query.devicePixelRatio,
version: req.query.v || req.query.version,
encoding: req.query.encoding || 'url',
format: outputFormat,
};
if (outputFormat === 'pdf') {
renderChartToPdf(req, res, opts);
} else if (outputFormat === 'svg') {
renderChartToSvg(req, res, opts);
} else if (!outputFormat || outputFormat === 'png') {
renderChartToPng(req, res, opts);
} else {
logger.error(`Request for unsupported format ${outputFormat}`);
res.status(500).end(`Unsupported format ${outputFormat}`);
}
telemetry.count('chartCount');
});
app.post('/chart', (req, res) => {
const outputFormat = (req.body.f || req.body.format || 'png').toLowerCase();
const opts = {
chart: req.body.c || req.body.chart,
height: req.body.h || req.body.height,
width: req.body.w || req.body.width,
backgroundColor: req.body.backgroundColor || req.body.bkg,
devicePixelRatio: req.body.devicePixelRatio,
version: req.body.v || req.body.version,
encoding: req.body.encoding || 'url',
format: outputFormat,
};
if (outputFormat === 'pdf') {
renderChartToPdf(req, res, opts);
} else if (outputFormat === 'svg') {
renderChartToSvg(req, res, opts);
} else {
renderChartToPng(req, res, opts);
}
telemetry.count('chartCount');
});
app.get('/qr', (req, res) => {
const qrText = req.query.text;
if (!qrText) {
failPng(res, 'You are missing variable `text`');
return;
}
let format = 'png';
if (req.query.format === 'svg') {
format = 'svg';
}
const { mode } = req.query;
const margin = typeof req.query.margin === 'undefined' ? 4 : parseInt(req.query.margin, 10);
const ecLevel = req.query.ecLevel || undefined;
const size = Math.min(3000, parseInt(req.query.size, 10)) || DEFAULT_QR_SIZE;
const darkColor = req.query.dark || '000';
const lightColor = req.query.light || 'fff';
const qrOpts = {
margin,
width: size,
errorCorrectionLevel: ecLevel,
color: {
dark: darkColor,
light: lightColor,
},
};
renderQr(format, mode, qrText, qrOpts)
.then((buf) => {
res.writeHead(200, {
'Content-Type': format === 'png' ? 'image/png' : 'image/svg+xml',
'Content-Length': buf.length,
// 1 week cache
'Cache-Control': isDev ? 'no-cache' : 'public, max-age=604800',
});
res.end(buf);
})
.catch((err) => {
failPng(res, err);
});
telemetry.count('qrCount');
});
app.get('/gchart', handleGChart);
app.get('/healthcheck', (req, res) => {
// A lightweight healthcheck endpoint.
res.send({ success: true, version: packageJson.version });
});
app.get('/healthcheck/chart', (req, res) => {
// A heavier healthcheck endpoint that redirects to a unique chart.
const labels = [...Array(5)].map(() => Math.random());
const data = [...Array(5)].map(() => Math.random());
const template = `
{
type: 'bar',
data: {
labels: [${labels.join(',')}],
datasets: [{
data: [${data.join(',')}]
}]
}
}
`;
res.redirect(`/chart?c=${template}`);
});
const port = process.env.PORT || 3400;
const server = app.listen(port);
const timeout = parseInt(process.env.REQUEST_TIMEOUT_MS, 10) || 5000;
server.setTimeout(timeout);
logger.info(`Setting request timeout: ${timeout} ms`);
logger.info(`NODE_ENV: ${process.env.NODE_ENV}`);
logger.info(`Listening on port ${port}`);
if (!isDev) {
const gracefulShutdown = function gracefulShutdown() {
logger.info('Received kill signal, shutting down gracefully.');
server.close(() => {
logger.info('Closed out remaining connections.');
process.exit();
});
setTimeout(() => {
logger.error('Could not close connections in time, forcefully shutting down');
process.exit();
}, 10 * 1000);
};
// listen for TERM signal .e.g. kill
process.on('SIGTERM', gracefulShutdown);
// listen for INT signal e.g. Ctrl-C
process.on('SIGINT', gracefulShutdown);
process.on('SIGABRT', () => {
logger.info('Caught SIGABRT');
});
}
module.exports = app;
|