index.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. const express = require('express');
  2. const app = express();
  3. const port = 1854;
  4. const pfp = require('random-pfp');
  5. app.get('/getRandomLink', async (req, res) => {
  6. const axios = require('axios');
  7. const fs = require('fs').promises;
  8. const path = require('path');
  9. const downloadAndSaveImage = async () => {
  10. const imageUrl = pfp();
  11. const response = await axios.get(imageUrl, { responseType: 'arraybuffer' });
  12. const buffer = Buffer.from(response.data, 'binary');
  13. const fileName = `image_${Date.now()}.png`;
  14. const filePath = path.join('/var/www/html/randomPfp/', fileName);
  15. await fs.mkdir(path.dirname(filePath), { recursive: true });
  16. await fs.writeFile(filePath, buffer);
  17. return filePath;
  18. };
  19. const localImagePath = await downloadAndSaveImage();
  20. res.json({ link: pfp(), localLink: `https://vps.playpoolstudios.com/randomPfp/${fileName}` });
  21. });
  22. app.get('/', (req, res)=>{
  23. res.send(`<img src="${pfp()}" width="250px">`)
  24. })
  25. app.listen(port, () => {
  26. console.log(`Server running on port ${port}`);
  27. });