from flask import Flask, jsonify import socket import os from datetime import datetime import random app = Flask(__name__) # 从环境变量读取版本号 VERSION = os.getenv('APP_VERSION', 'v1.0') BUGGY = os.getenv('BUGGY', 'false').lower() == 'true' # 版本主题配置 THEMES = { 'v1.0': {'color': '#4A90E2', 'name': '蓝色经典版', 'features': '基础功能'}, 'v2.0': {'color': '#50C878', 'name': '绿色升级版', 'features': '新增健康检查、API接口'}, 'v2.1': {'color': '#50C878', 'name': '绿色稳定版', 'features': '性能优化、Bug修复'}, 'v3.0-buggy': {'color': '#E74C3C', 'name': '红色测试版', 'features': '⚠️ 此版本存在已知问题'} } @app.route('/') def hello(): # 模拟 v3.0-buggy 的问题 if BUGGY and random.random() < 0.5: return "💥 服务异常:数据库连接失败", 500 theme = THEMES.get(VERSION, THEMES['v1.0']) return f"""
| 📦 容器主机名 | {socket.gethostname()} |
| 🎓 学号服务 | s{os.getenv('STUDENT_ID', '00')} |
| ⏰ 当前时间 | {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} |
| ✨ 版本特性 | {theme['features']} |