forked from typpo/quickchart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
179 lines (150 loc) · 4.22 KB
/
index.js
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
const path = require('path');
const express = require('express');
const expressNunjucks = require('express-nunjucks');
const qs = require('qs');
const text2png = require('text2png');
const winston = require('winston');
const { renderChart } = require('./lib/charts');
const { renderQr } = require('./lib/qr');
const logger = new (winston.Logger)({
transports: [
new (winston.transports.Console)({ timestamp: true, colorize: true }),
],
});
const app = express();
const isDev = app.get('env') === 'development';
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.set('views', `${__dirname}/templates`);
app.use(express.static('public'));
expressNunjucks(app, {
watch: isDev,
noCache: isDev,
});
app.get('/', (req, res) => {
res.render('index');
});
app.get('/robots.txt', (req, res) => {
res.sendFile(path.join(__dirname, './templates/robots.txt'));
});
function failPng(res, msg) {
res.writeHead(500, {
'Content-Type': 'image/png',
});
res.end(text2png(`Chart Error: ${msg}`, {
padding: 10,
backgroundColor: '#fff',
}));
}
app.get('/chart', (req, res) => {
if (!req.query.c) {
failPng(res, 'You are missing variable `c`');
return;
}
let height = 300;
let width = 500;
if (req.query.h || req.query.height) {
const heightNum = parseInt(req.query.h || req.query.height, 10);
if (!Number.isNaN(heightNum)) {
height = heightNum;
}
}
if (req.query.w || req.query.width) {
const widthNum = parseInt(req.query.w || req.query.width, 10);
if (!Number.isNaN(widthNum)) {
width = widthNum;
}
}
let untrustedInput;
try {
untrustedInput = req.query.c;
} catch (err) {
logger.error('URI malformed', err);
failPng(res, err);
return;
}
const backgroundColor = req.query.backgroundColor || req.query.bkg || 'transparent';
renderChart(width, height, backgroundColor, untrustedInput).then((buf) => {
res.writeHead(200, {
'Content-Type': 'image/png',
'Content-Length': buf.length,
// 1 week cache
'Cache-Control': 'public, max-age=604800',
});
res.end(buf);
}).catch((err) => {
logger.error('Chart error', err);
failPng(res, err);
});
});
app.get('/qr', (req, res) => {
if (!req.query.text) {
failPng(res, 'You are missing variable `text`');
return;
}
let format = 'png';
if (req.query.format === 'svg') {
format = 'svg';
}
const { mode } = req.query;
const margin = parseInt(req.query.margin, 10) || 4;
const ecLevel = req.query.ecLevel || undefined;
const size = Math.min(3000, parseInt(req.query.size, 10)) || 150;
const darkColor = req.query.dark || '000';
const lightColor = req.query.light || 'fff';
let qrData;
try {
qrData = decodeURIComponent(req.query.text);
} catch (err) {
logger.error('URI malformed', err);
failPng(res, 'URI malformed');
return;
}
const qrOpts = {
margin,
width: size,
errorCorrectionLevel: ecLevel,
color: {
dark: darkColor,
light: lightColor,
},
};
renderQr(format, mode, qrData, qrOpts).then((buf) => {
res.writeHead(200, {
'Content-Type': `image/${format}`,
'Content-Length': buf.length,
// 1 week cache
'Cache-Control': 'public, max-age=604800',
});
res.end(buf);
}).catch((err) => {
failPng(res, err);
});
});
const port = process.env.PORT || 3400;
const server = app.listen(port);
logger.info('NODE_ENV:', process.env.NODE_ENV);
logger.info('Running 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);
}
module.exports = app;