-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreviews.js
84 lines (61 loc) · 2.03 KB
/
previews.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
const express = require("express");
const app = express();
const fs = require("fs");
const { getImage } = require('./screenshot');
const path = require("path");
const port = 5000;
// Listen on port 5000
app.listen(port, () => {
console.log(`Server is booming on port 5000
Visit http://localhost:5000`);
});
const previewTemplate = fs.readFileSync(path.resolve(__dirname, "previewImage.html"), "utf8");
//deprecated - remove after succesful usage of other api route
app.get("/api/preview", async (req, res) => {
if (!req.query.city) {
res.status(400).send("You need to specify city");
}
if (!req.query.state) {
res.status(400).send("You need to specify state");
}
const { city, state } = req.query;
const text = `Send pre-scripted emails to ${city} government officials.`
// Support linew breaks
const formattedCity = city.replace(/(?:\r\n|\r|\n)/g, "<br>");
const image = await getImage({
// output: "./image.png",
content: {city: formattedCity, state, text},
html : previewTemplate,
});
res.writeHead(200, { "Content-Type": "image/png" });
res.end(image, "binary");
});
app.get("/api/preview/:type", async (req, res) => {
if (!req.query.city) {
res.status(400).send("You need to specify city");
}
if (!req.query.state) {
res.status(400).send("You need to specify state");
}
const { city, state } = req.query;
let text;
switch(req.params.type) {
case "letter":
text = `Order physical letters to be printed and mailed to ${city} government officials.`
break;
case "email":
text = `Send pre-scripted emails to ${city} government officials.`
break;
default:
text = "Send pre-scripted emails to government officials"
}
// Support linew breaks
const formattedCity = city.replace(/(?:\r\n|\r|\n)/g, "<br>");
const image = await getImage({
// output: "./image.png",
content: {city: formattedCity, state, text},
html : previewTemplate,
});
res.writeHead(200, { "Content-Type": "image/png" });
res.end(image, "binary");
});