Created
March 3, 2020 21:02
-
-
Save 0x15f/50e5c2457beda7b5d01e8994606a77fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const app = express() | |
const port = 3001 | |
app.get('/', async (req, res) => { | |
try { | |
const puppeteer = require('puppeteer') | |
const browser = await puppeteer.launch({ | |
headless: true, | |
args: ['--unlimited-storage', '--disable-dev-shm-usage', '--no-sandbox', '--disable-setuid-sandbox', '--window-size=1366x657'] | |
}); | |
const page = await browser.newPage(); | |
await page.setUserAgent('Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko'); | |
await page.goto(decodeURIComponent(req.query.url), {waitUntil: ['load'], timeout: 30000}); | |
page.setViewport({ | |
width: 3600, | |
height: 2400 | |
}); | |
const selector = '.tweet[data-tweet-id="' + req.query.id + '"]'; | |
const padding = typeof req.query.padding !== 'undefined'; | |
const rect = await page.evaluate((selector, padding) => { | |
const element = document.querySelector(selector); | |
if (!element) | |
return null; | |
if(padding === true) | |
{ | |
element.style.width = '1350px'; | |
element.style.height = '621px'; | |
element.querySelector('.content:first-child, .clearfix:first-child').style.marginTop = '96px'; | |
} | |
else | |
{ | |
element.style.width = '1350px'; | |
element.style.height = '525px' | |
} | |
const {x, y, width, height} = element.getBoundingClientRect(); | |
return {left: x, top: y, width, height, id: element.id}; | |
}, selector, padding); | |
if (!rect) | |
throw Error(`Could not find element that matches selector: '${selector}'.`); | |
buffer = await page.screenshot({ | |
clip: { | |
x: rect.left, | |
y: rect.top, | |
width: rect.width, | |
height: rect.height | |
} | |
}); | |
await browser.close(); | |
res.type('image/png'); | |
res.send(buffer); | |
} | |
catch(er) | |
{ | |
console.log(er); | |
if(typeof browser !== 'undefined') { | |
await browser.close(); | |
} | |
res.send('error'); | |
} | |
}); | |
app.listen(port, () => console.log(`Listening on port ${port}!`)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment