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
5274eaaa4d
commit
4fe9b4b341
15
app.js
15
app.js
@ -7,7 +7,7 @@ const PORT = process.env.PORT || 3000;
|
||||
app.use(express.static('public'));
|
||||
|
||||
// Route to fetch Pastebin raw text data using the Paste ID or URL
|
||||
app.get('/:pasteId?', async (req, res) => {
|
||||
app.get('/:pasteId?', (req, res) => {
|
||||
let rawUrl;
|
||||
|
||||
// If the pasteId is provided directly in the URL (like /uxK7EPux)
|
||||
@ -30,17 +30,8 @@ app.get('/:pasteId?', async (req, res) => {
|
||||
return res.status(400).json({ error: 'URL or Paste ID is required' });
|
||||
}
|
||||
|
||||
try {
|
||||
const response = await fetch(rawUrl);
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to fetch data from Pastebin');
|
||||
}
|
||||
const text = await response.text();
|
||||
res.setHeader('Content-Type', 'text/plain'); // Ensure it's treated as plain text
|
||||
res.send(text); // Send raw text
|
||||
} catch (error) {
|
||||
res.status(500).json({ error: error.message });
|
||||
}
|
||||
// Perform the redirect to the raw Pastebin URL
|
||||
res.redirect(rawUrl);
|
||||
});
|
||||
|
||||
// Start the server
|
||||
|
Loading…
Reference in New Issue
Block a user