mirror of
https://github.com/gigirassy/plaster.git
synced 2024-12-24 10:49:07 +00:00
Compare commits
No commits in common. "57fb644bf9d63b71529a18c2c90aa0ad6cefab22" and "07748ccaac50ec212486f72437c4df7d4168b0d9" have entirely different histories.
57fb644bf9
...
07748ccaac
@ -1,138 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>plaster bulk downloader</title>
|
|
||||||
<style>
|
|
||||||
/* Default Light Mode */
|
|
||||||
:root {
|
|
||||||
--bg-color: #ffffff;
|
|
||||||
--text-color: #000000;
|
|
||||||
--link-color: #0066cc;
|
|
||||||
--border-color: #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Dark Mode */
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
:root {
|
|
||||||
--bg-color: #1e1e1e;
|
|
||||||
--text-color: #ffffff;
|
|
||||||
--link-color: #4db8ff;
|
|
||||||
--border-color: #444;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: 'Nimbus Mono PS', 'Courier New', monospace;
|
|
||||||
margin: 0px;
|
|
||||||
background-color: var(--bg-color);
|
|
||||||
text-align:center;
|
|
||||||
color: var(--text-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.main {
|
|
||||||
text-align:center;
|
|
||||||
width:75%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer {
|
|
||||||
font-size:60%;
|
|
||||||
}
|
|
||||||
|
|
||||||
input, button {
|
|
||||||
margin: 5px 0;
|
|
||||||
padding: 10px;
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--link-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
#asciiArtContainer {
|
|
||||||
position: fixed;
|
|
||||||
z-index: -289;
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
padding: 10px;
|
|
||||||
font-family: monospace;
|
|
||||||
white-space: pre;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
/* For tablets and small screens */
|
|
||||||
#asciiArtContainer {
|
|
||||||
font-size: 0.5rem; /* Slightly smaller font */
|
|
||||||
padding: 8px; /* Reduced padding */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
|
||||||
/* For mobile devices */
|
|
||||||
#asciiArtContainer {
|
|
||||||
font-size: 0.3rem; /* Smaller font size for mobile */
|
|
||||||
padding: 5px; /* Minimal padding */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>bulk paste download</h1>
|
|
||||||
<p>enter up to 64 pastebin urls or ids, one line each to download in a handy little zip!:</p>
|
|
||||||
<form id="bulkDownloadForm" method="POST" action="/bulk-download" enctype="application/x-www-form-urlencoded">
|
|
||||||
<textarea name="pasteIds" rows="10" cols="50" placeholder="enter here, then solve the captcha"></textarea>
|
|
||||||
<label for="captchaToken">enter:</label><br>
|
|
||||||
<img id="captchaImage" alt="Captcha Image"><br>
|
|
||||||
<input type="text" id="captchaToken" required><br>
|
|
||||||
<button type="submit">go!</button>
|
|
||||||
</form>
|
|
||||||
<script defer>
|
|
||||||
let captchaToken = '';
|
|
||||||
|
|
||||||
// Fetch the CAPTCHA image when the page loads
|
|
||||||
async function loadCaptcha() {
|
|
||||||
const response = await fetch('/captcha');
|
|
||||||
const data = await response.json();
|
|
||||||
captchaToken = data.token;
|
|
||||||
document.getElementById('captchaImage').src = 'data:image/gif;base64,' + data.image;
|
|
||||||
}
|
|
||||||
|
|
||||||
loadCaptcha();
|
|
||||||
|
|
||||||
// Handle form submission
|
|
||||||
document.getElementById('bulkDownloadForm').addEventListener('submit', async (e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
const pasteIds = document.getElementById('pasteIds').value.split(',').map(id => id.trim());
|
|
||||||
if (pasteIds.length === 0) {
|
|
||||||
alert('Please enter at least one paste ID.');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await fetch('/bulk-download', {
|
|
||||||
method: 'POST',
|
|
||||||
headers: { 'Content-Type': 'application/json' },
|
|
||||||
body: JSON.stringify({
|
|
||||||
userId: 'user123', // In a real app, get this from the logged-in user
|
|
||||||
pasteIds: pasteIds,
|
|
||||||
captchaToken: captchaToken,
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
|
|
||||||
if (response.ok) {
|
|
||||||
const blob = await response.blob();
|
|
||||||
const link = document.createElement('a');
|
|
||||||
link.href = URL.createObjectURL(blob);
|
|
||||||
link.download = 'pastes.zip';
|
|
||||||
link.click();
|
|
||||||
} else {
|
|
||||||
const errorData = await response.json();
|
|
||||||
alert(errorData.message || 'An error occurred.');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<div id="asciiArtContainer" aria-hidden="true" style="position: fixed; bottom: 0; right: 0; padding: 10px; font-family: monospace; white-space: pre;"></div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in New Issue
Block a user