local Save to var

This commit is contained in:
Sewmina 2024-09-12 16:42:35 +05:30
parent 2d390e3cec
commit 4e0a04148a

View File

@ -15,7 +15,7 @@ app.get('/getRandomLink', async (req, res) => {
const buffer = Buffer.from(response.data, 'binary');
const fileName = `image_${Date.now()}.png`;
const filePath = path.join(__dirname, 'downloads', fileName);
const filePath = path.join('/var/www/html/randomPfp/', fileName);
await fs.mkdir(path.dirname(filePath), { recursive: true });
await fs.writeFile(filePath, buffer);
@ -24,7 +24,7 @@ app.get('/getRandomLink', async (req, res) => {
};
const localImagePath = await downloadAndSaveImage();
res.json({ link: pfp() });
res.json({ link: pfp(), localLink: `https://vps.playpoolstudios.com/randomPfp/${fileName}` });
});