- Add HTTPSConfig model for managing HTTPS settings - Add admin routes for HTTPS configuration management - Add beautiful admin template for HTTPS configuration - Add database migration for https_config table - Add CLI utility for HTTPS management - Add setup script for automated configuration - Add Caddy configuration generator and manager - Add comprehensive documentation (3 guides) - Add HTTPS Configuration card to admin dashboard - Implement input validation and security features - Add admin-only access control with audit trail - Add real-time configuration preview - Integrate with existing Caddy reverse proxy Features: - Enable/disable HTTPS from web interface - Configure domain, hostname, IP address, port - Automatic SSL certificate management via Let's Encrypt - Real-time Caddyfile generation and reload - Full audit trail with admin username and timestamps - Support for HTTPS and HTTP fallback access points - Beautiful, mobile-responsive UI Modified files: - app/models/__init__.py (added HTTPSConfig import) - app/blueprints/admin.py (added HTTPS routes) - app/templates/admin/admin.html (added HTTPS card) - docker-compose.yml (added Caddyfile mount and admin port) New files: - app/models/https_config.py - app/blueprints/https_config.html - app/utils/caddy_manager.py - https_manager.py - setup_https.sh - migrations/add_https_config_table.py - migrations/add_email_to_https_config.py - HTTPS_STATUS.txt - Documentation files (3 markdown guides)
50 lines
1.9 KiB
Python
Executable File
50 lines
1.9 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""Check and fix player quickconnect code."""
|
|
|
|
from app import create_app
|
|
from app.models import Player
|
|
from app.extensions import db
|
|
|
|
app = create_app()
|
|
|
|
with app.app_context():
|
|
# Find player by hostname
|
|
player = Player.query.filter_by(hostname='tv-terasa').first()
|
|
|
|
if not player:
|
|
print("❌ Player 'tv-terasa' NOT FOUND in database!")
|
|
print("\nAll registered players:")
|
|
all_players = Player.query.all()
|
|
for p in all_players:
|
|
print(f" - ID={p.id}, Name='{p.name}', Hostname='{p.hostname}'")
|
|
else:
|
|
print(f"✅ Player found:")
|
|
print(f" ID: {player.id}")
|
|
print(f" Name: {player.name}")
|
|
print(f" Hostname: {player.hostname}")
|
|
print(f" Playlist ID: {player.playlist_id}")
|
|
print(f" Status: {player.status}")
|
|
print(f" QuickConnect Hash: {player.quickconnect_code[:60] if player.quickconnect_code else 'Not set'}...")
|
|
|
|
# Test the quickconnect code
|
|
test_code = "8887779"
|
|
print(f"\n🔐 Testing quickconnect code: '{test_code}'")
|
|
|
|
if player.check_quickconnect_code(test_code):
|
|
print(f"✅ Code '{test_code}' is VALID!")
|
|
else:
|
|
print(f"❌ Code '{test_code}' is INVALID - Hash doesn't match!")
|
|
|
|
# Update it
|
|
print(f"\n🔧 Updating quickconnect code to: '{test_code}'")
|
|
player.set_quickconnect_code(test_code)
|
|
db.session.commit()
|
|
print("✅ QuickConnect code updated successfully!")
|
|
print(f" New hash: {player.quickconnect_code[:60]}...")
|
|
|
|
# Verify the update
|
|
if player.check_quickconnect_code(test_code):
|
|
print(f"✅ Verification successful - code '{test_code}' now works!")
|
|
else:
|
|
print(f"❌ Verification failed - something went wrong!")
|