mirror of
https://github.com/gigirassy/plaster.git
synced 2024-12-23 18:39:07 +00:00
Update app.js
This commit is contained in:
parent
44892a7ec4
commit
0de22267d6
35
app.js
35
app.js
@ -6,18 +6,28 @@ const PORT = process.env.PORT || 3000;
|
|||||||
|
|
||||||
app.use(express.static('public'));
|
app.use(express.static('public'));
|
||||||
|
|
||||||
// Route to fetch Pastebin raw text data using the Paste ID
|
// Route to fetch Pastebin raw text data using the Paste ID or URL
|
||||||
app.get('/fetch-paste', async (req, res) => {
|
app.get('/:pasteId?', async (req, res) => {
|
||||||
const { url } = req.query;
|
let rawUrl;
|
||||||
if (!url) {
|
|
||||||
return res.status(400).json({ error: 'URL is required' });
|
// If the pasteId is provided directly in the URL (like /uxK7EPux)
|
||||||
|
if (req.params.pasteId) {
|
||||||
|
const pasteId = req.params.pasteId;
|
||||||
|
rawUrl = `https://pastebin.com/raw/${pasteId}`;
|
||||||
|
}
|
||||||
|
// If the URL parameter is used (like /fetch-paste?url=https://pastebin.com/...)
|
||||||
|
else if (req.query.url) {
|
||||||
|
const url = req.query.url;
|
||||||
|
if (url.includes('pastebin.com/') && !url.includes('/raw/')) {
|
||||||
|
const pasteId = url.split('/').pop();
|
||||||
|
rawUrl = `https://pastebin.com/raw/${pasteId}`;
|
||||||
|
} else {
|
||||||
|
rawUrl = url; // Assuming it already has '/raw/'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the URL is a Pastebin URL and convert to raw format
|
if (!rawUrl) {
|
||||||
let rawUrl = url;
|
return res.status(400).json({ error: 'URL or Paste ID is required' });
|
||||||
if (url.includes('pastebin.com/') && !url.includes('/raw/')) {
|
|
||||||
const pasteId = url.split('/').pop();
|
|
||||||
rawUrl = `https://pastebin.com/raw/${pasteId}`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -26,9 +36,10 @@ app.get('/fetch-paste', async (req, res) => {
|
|||||||
throw new Error('Failed to fetch data from Pastebin');
|
throw new Error('Failed to fetch data from Pastebin');
|
||||||
}
|
}
|
||||||
const text = await response.text();
|
const text = await response.text();
|
||||||
res.json({ text }); // Always send JSON
|
res.setHeader('Content-Type', 'text/plain'); // Ensure it's treated as plain text
|
||||||
|
res.send(text); // Send raw text
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
res.status(500).json({ error: error.message }); // Ensure error is JSON
|
res.status(500).json({ error: error.message });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user