aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlitch (adventurous-damselfly) <none>2019-10-27 06:16:27 +0000
committerGlitch (adventurous-damselfly) <none>2019-10-27 06:16:27 +0000
commit05100ff2e9713a43694780b653cd4596b9e62958 (patch)
treef82682cb10af2e0eb052e18e82f23c08cf7f2e49
parentce5c5cf486218dde6692d5fd60929cd6117ec298 (diff)
downloadcrabravebot-05100ff2e9713a43694780b653cd4596b9e62958.tar.gz
crabravebot-05100ff2e9713a43694780b653cd4596b9e62958.zip
🔮⛪️ Updated with Glitch
-rw-r--r--bot.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/bot.js b/bot.js
index dc538d6..7c94fcf 100644
--- a/bot.js
+++ b/bot.js
@@ -76,6 +76,7 @@ module.exports = {
res.end(`
<html>
<head>
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<title>Crab Rave Bot</title>
</head>
<body>
@@ -92,7 +93,7 @@ module.exports = {
</form>
<a href="https://t.me/crabravebot">also available as a Telegram bot</a>
</main>
- <img id="preview" src="https://${process.env.PROJECT_DOMAIN}.glitch.me/video/.png">
+ <img id="preview" style="max-width: 100%;" src="https://${process.env.PROJECT_DOMAIN}.glitch.me/video/.png">
<script type="text/javascript">
const img = document.getElementById('preview'),
text = document.getElementById('text'),
@@ -137,7 +138,13 @@ module.exports = {
ev.send();
}
const style = parsed.query.style || 'classic';
- const path = require('path').join('/tmp', style, match[0]);
+ if (!Object.keys(STYLES).includes(style)) {
+ console.error("Bad style");
+ res.writeHead(400);
+ res.end();
+ return;
+ }
+ const path = require('path').join('/tmp', style, encodeURIComponent(match[0]));
if (type === 'mp4') {
res.setHeader('Content-Type', 'video/mp4');
} else {