-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.js
59 lines (54 loc) · 1.76 KB
/
app.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
// require modules
require('dotenv').config();
const express = require('express');
const puppeteer = require('puppeteer');
// initialize app
const app = express();
// setup boilerplate
app.use(express.urlencoded({ extended: false }));
app.use(express.json());
// initialize puppeteer function
(async () => {
// launch headless browser
const browser = await puppeteer.launch({ headless: true, args: [ '--no-sandbox' ] });
// post request is made to render
app.post('/render', (req, res) => {
// make sure authorization is present
if (req.headers.authorization === process.env.AUTH_KEY) {
// make sure both html and css are included
if (req.body.html && req.body.css) {
// generate image function
(async () => {
// open new browser page
const page = await browser.newPage();
// fill content with user submitted html and css
await page.setContent(
`<style>
${req.body.css}
</style>
<div style="height: fit-content;width: fit-content">
${req.body.html}
</div>`
);
// define content area to take screenshot
const content = await page.$('div');
// take screenshot in content area, save buffer
const buffer = await content.screenshot({ type: 'png' });
// close browser page
await page.close();
// send back base64 string of image
res.status(200).send('data:image/png;base64,' + buffer.toString('base64'));
})();
} else {
// if fields missing
res.status(400).send('Some fields are missing with request.');
}
} else {
// if no authorization present
res.status(403).send('Auth key missing with request.');
}
});
})();
// listen to port
const PORT = process.env.PORT || 5000;
app.listen(PORT, () => console.log('Server started and running on port ' + PORT));