314 lines
10 KiB
HTML
314 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>aCloud - File Sharing Service</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
background-color: #1a1a1a;
|
|
color: #f0f0f0;
|
|
}
|
|
.container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
}
|
|
nav {
|
|
margin-bottom: 20px;
|
|
}
|
|
nav a {
|
|
color: #4CAF50;
|
|
text-decoration: none;
|
|
margin: 0 10px;
|
|
}
|
|
.upload-options {
|
|
margin-bottom: 20px;
|
|
}
|
|
.upload-options button {
|
|
background-color: #4CAF50;
|
|
border: none;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
.upload-form {
|
|
display: none;
|
|
background-color: #2a2a2a;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
max-width: 400px;
|
|
width: 100%;
|
|
}
|
|
.upload-form.active {
|
|
display: block;
|
|
}
|
|
.upload-form input[type="text"],
|
|
.upload-form input[type="file"],
|
|
.upload-form textarea {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
border-radius: 4px;
|
|
border: 1px solid #4CAF50;
|
|
background-color: #333;
|
|
color: #f0f0f0;
|
|
}
|
|
.upload-form button {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
.result {
|
|
margin-top: 10px;
|
|
color: #4CAF50;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
padding: 10px;
|
|
background-color: #2a2a2a;
|
|
color: #f0f0f0;
|
|
}
|
|
.typewriter-container {
|
|
font-family: monospace;
|
|
white-space: pre-wrap;
|
|
overflow: hidden;
|
|
font-size: 1.2em;
|
|
margin-bottom: 20px;
|
|
}
|
|
.cursor {
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 20px;
|
|
background-color: #4CAF50;
|
|
animation: blink 0.7s infinite;
|
|
}
|
|
@keyframes blink {
|
|
0% { opacity: 0; }
|
|
50% { opacity: 1; }
|
|
100% { opacity: 0; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<nav>
|
|
{% if user %}
|
|
<a href="{{ url_for('user_files', username=user.username) }}">View Dashboard</a>
|
|
<a href="{{ url_for('logout') }}">Logout</a>
|
|
{% else %}
|
|
<a href="{{ url_for('login') }}">Login</a>
|
|
<a href="{{ url_for('register') }}">Register</a>
|
|
{% endif %}
|
|
</nav>
|
|
|
|
<div class="typewriter-container">
|
|
<span id="typewriter-text"></span><span id="cursor" class="cursor"></span>
|
|
</div>
|
|
|
|
<div class="upload-options">
|
|
<button onclick="showForm('text')">Upload Text</button>
|
|
<button onclick="showForm('file')">Upload File</button>
|
|
<button onclick="showForm('url')">Shorten URL</button>
|
|
</div>
|
|
<div id="uploadFormContainer">
|
|
<div id="textForm" class="upload-form">
|
|
<h2>Upload Text</h2>
|
|
<form>
|
|
<textarea name="content" rows="4" placeholder="Enter text here..."></textarea>
|
|
<button type="button" onclick="uploadText()">Upload Text</button>
|
|
</form>
|
|
<div id="textResult" class="result"></div>
|
|
</div>
|
|
<div id="fileForm" class="upload-form">
|
|
<h2>Upload File</h2>
|
|
<form enctype="multipart/form-data">
|
|
<input type="file" name="file" />
|
|
<button type="button" onclick="uploadFile()">Upload File</button>
|
|
</form>
|
|
<div id="fileResult" class="result"></div>
|
|
</div>
|
|
<div id="urlForm" class="upload-form">
|
|
<h2>Shorten URL</h2>
|
|
<form>
|
|
<input type="text" name="url" placeholder="Enter URL here..." />
|
|
<button type="button" onclick="shortenUrl()">Shorten URL</button>
|
|
</form>
|
|
<div id="urlResult" class="result"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<p>Source code available on:
|
|
<a href="https://github.com/realcgcristi/order" target="_blank">GitHub (not up-to-date)</a> |
|
|
<a href="https://git.spitkov.hu/cgcristi/aCloud" target="_blank">Spitkov's Git (main)</a>
|
|
</p>
|
|
</footer>
|
|
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
const message1 = "Welcome to aCloud.";
|
|
const message2 = "\n A simple toolbox for file uploading,\n URL shortening and pastebin.";
|
|
const typewriterTextElement = document.getElementById('typewriter-text');
|
|
const cursorElement = document.getElementById('cursor');
|
|
const typingSpeed = 70;
|
|
|
|
function typeMessage(message, callback) {
|
|
let index = 0;
|
|
|
|
function typeCharacter() {
|
|
if (index < message.length) {
|
|
if (message[index] === '\n') {
|
|
typewriterTextElement.innerHTML += '<br>';
|
|
} else {
|
|
typewriterTextElement.innerHTML += message[index];
|
|
}
|
|
index++;
|
|
updateCursorPosition();
|
|
setTimeout(typeCharacter, typingSpeed);
|
|
} else if (callback) {
|
|
setTimeout(callback, typingSpeed);
|
|
}
|
|
}
|
|
|
|
typeCharacter();
|
|
}
|
|
|
|
function updateCursorPosition() {
|
|
|
|
const textRect = typewriterTextElement.getBoundingClientRect();
|
|
cursorElement.style.left = (textRect.width + textRect.left - cursorElement.offsetWidth) + 'px';
|
|
}
|
|
|
|
typeMessage(message1, function() {
|
|
typeMessage(message2);
|
|
});
|
|
});;
|
|
|
|
|
|
document.getElementById('uploadForm').onsubmit = function(e) {
|
|
e.preventDefault();
|
|
var formData = new FormData(this);
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open('POST', '/upload/file', true);
|
|
|
|
xhr.upload.onprogress = function(e) {
|
|
if (e.lengthComputable) {
|
|
var percentComplete = (e.loaded / e.total) * 100;
|
|
document.getElementById('progressBar').style.display = 'block';
|
|
document.getElementById('progressBar').value = percentComplete;
|
|
}
|
|
};
|
|
|
|
xhr.onload = function() {
|
|
if (xhr.status === 200) {
|
|
alert('Upload complete!');
|
|
document.getElementById('progressBar').style.display = 'none';
|
|
} else {
|
|
alert('Upload failed.');
|
|
}
|
|
};
|
|
xhr.send(formData);
|
|
};
|
|
|
|
function showForm(type) {
|
|
document.querySelectorAll('.upload-form').forEach(form => {
|
|
form.classList.remove('active');
|
|
});
|
|
document.getElementById(type + 'Form').classList.add('active');
|
|
}
|
|
|
|
function uploadText() {
|
|
const content = document.querySelector('#textForm textarea').value;
|
|
fetch('/upload/pastebin', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ content: content }),
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.success) {
|
|
const simpleUrl = `${window.location.origin}/${data.vanity}`;
|
|
document.getElementById('textResult').innerHTML = `Pastebin created. Access it <a href="${simpleUrl}">${simpleUrl}</a>`;
|
|
} else {
|
|
document.getElementById('textResult').innerHTML = `Error: ${data.error}`;
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error('Error:', error);
|
|
document.getElementById('textResult').innerHTML = `An error occurred: ${error}`;
|
|
});
|
|
}
|
|
|
|
function uploadFile() {
|
|
const formData = new FormData();
|
|
const fileInput = document.querySelector('#fileForm input[type="file"]');
|
|
formData.append('file', fileInput.files[0]);
|
|
fetch('/upload/file', {
|
|
method: 'POST',
|
|
body: formData,
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.success) {
|
|
const simpleUrl = `${window.location.origin}/${data.vanity}`;
|
|
document.getElementById('fileResult').innerHTML = `File uploaded. Access it <a href="${simpleUrl}">${simpleUrl}</a>`;
|
|
} else {
|
|
document.getElementById('fileResult').innerHTML = `Error: ${data.error}`;
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error('Error:', error);
|
|
document.getElementById('fileResult').innerHTML = `An error occurred: ${error}`;
|
|
});
|
|
}
|
|
|
|
function shortenUrl() {
|
|
const url = document.querySelector('#urlForm input[name="url"]').value;
|
|
fetch('/shorten', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ url: url }),
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.success) {
|
|
document.getElementById('urlResult').innerHTML = `URL shortened. Access it <a href="${data.short_url}">${data.short_url}</a>`;
|
|
} else {
|
|
document.getElementById('urlResult').innerHTML = `Error: ${data.error}`;
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error('Error:', error);
|
|
document.getElementById('urlResult').innerHTML = `An error occurred: ${error}`;
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|