localwrappedmusicstatus-com.../websitepart.py

230 lines
8.8 KiB
Python

import flask
import datetime
import random
import string
import os
import re
app = flask.Flask(__name__)
code = ""
history = []
@app.route('/musicstatus.html', methods=['GET', 'POST'])
def musicstatus():
global code, history
if flask.request.method == 'POST':
data = flask.request.get_json()
if code != data['verificationcode']:
return "Verification failed", 403
entry = (
data['music'],
data['time'],
data['resetstatus'],
data['videoid']
)
if data['resetstatus'].lower() == "true":
history.clear()
history.append(entry)
return "Entry added successfully"
elif flask.request.method == 'GET':
current_playing = history[-1] if history else None
return flask.render_template_string('''
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Halhadus' Music Status</title>
<link rel="icon" type="image/png" href="assets/favicon.png">
<meta name="description" content="Halhadus' Music Status">
<meta name="author" content="Halhadus">
<meta property="og:title" content="Halhadus' Music Status">
<meta property="og:description" content="Halhadus' Music Status">
<meta property="og:url" content="https://halhadus.rocks/musicstatus.html">
<style>
:root {
--bg-color: #1f1f1f;
--card-bg: #2a2a2a;
--border-color: #333;
--text-color: #ffffff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem;
}
.music-card {
background: var(--card-bg);
border-radius: 8px;
margin: 1rem 0;
padding: 1rem;
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
}
.thumbnail-container {
order: 2;
}
.thumbnail {
width: 100%;
border-radius: 6px;
aspect-ratio: 16/9;
object-fit: cover;
border: 2px solid var(--border-color);
}
.play-button {
background: #333;
border: 1px solid #444;
color: var(--text-color);
padding: 0.6rem 1rem;
margin: 0.3rem;
border-radius: 5px;
text-decoration: none;
display: inline-block;
text-align: center;
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
}
.history-table {
width: 100%;
border-collapse: collapse;
margin-top: 2rem;
overflow-x: auto;
display: block;
}
.history-table th,
.history-table td {
border: 1px solid var(--border-color);
padding: 0.8rem;
min-width: 120px;
}
.history-table img {
width: 80px;
border-radius: 4px;
}
@media (min-width: 768px) {
.music-card {
grid-template-columns: 200px 1fr;
gap: 2rem;
padding: 2rem;
}
.thumbnail-container {
order: 0;
}
.play-button {
padding: 0.8rem 1.5rem;
font-size: 1rem;
}
}
</style>
</head>
<body style="background-color: var(--bg-color); color: var(--text-color); font-family: 'JetBrains Mono', monospace;">
<div class="container">
<h1>🎵 Music Status</h1>
<a href="/index.html" class="play-button">← Main Page</a>
{% if current_playing %}
<div class="music-card">
<div class="thumbnail-container">
<img src="https://img.youtube.com/vi/{{ current_playing[3] }}/hqdefault.jpg"
class="thumbnail"
alt="{{ current_playing[0] }} cover">
</div>
<div>
<h2>{{ current_playing[0] }}</h2>
<p>🕒 Last Updated: {{ format_timestamp(current_playing[1]) }}</p>
<div>
<a href="https://www.youtube.com/watch?v={{ current_playing[3] }}"
class="play-button"
target="_blank">
▶ YouTube
</a>
<a href="https://music.youtube.com/watch?v={{ current_playing[3] }}"
class="play-button"
target="_blank">
▶ YT Music
</a>
</div>
</div>
</div>
{% else %}
<div class="music-card">
<p>No music currently playing</p>
</div>
{% endif %}
<h2>Play History</h2>
<table class="history-table">
<thead>
<tr>
<th>Cover</th>
<th>Title</th>
<th>Time</th>
<th>Play</th>
</tr>
</thead>
<tbody>
{% for entry in history|reverse %}
<tr>
<td>
<img src="https://img.youtube.com/vi/{{ entry[3] }}/hqdefault.jpg"
alt="{{ entry[0] }} thumbnail">
</td>
<td>{{ entry[0] }}</td>
<td>{{ format_timestamp(entry[1]) }}</td>
<td>
<a href="https://www.youtube.com/watch?v={{ entry[3] }}"
class="play-button"
target="_blank">
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>
''', current_playing=current_playing, history=history, format_timestamp=format_timestamp)
def format_timestamp(timestamp):
return datetime.datetime.fromtimestamp(
int(timestamp),
datetime.timezone.utc
).strftime("%Y-%m-%d %H:%M UTC")
@app.route('/verifykey', methods=['POST'])
def verifycert():
global code
data = flask.request.get_json()
with open("key.txt", "r") as f:
if data.get('key') == f.read():
code = ''.join(random.choices(string.ascii_uppercase + string.digits, k=64))
return code
return "0"
@app.route('/<path:path>')
def catch_all(path):
if path == None:
return flask.redirect('https://halhadus.rocks')
if not path == 'musicstatus.html' or not path == 'verifykey':
return flask.redirect(f'https://halhadus.rocks/{path}')
@app.route('/')
def index():
return flask.redirect('https://halhadus.rocks')
if __name__ == '__main__':
app.run(host='0.0.0.0', port=int(os.environ.get('PORT')))