mirror of
https://github.com/snailyp/gemini-balance.git
synced 2026-05-12 11:30:20 +08:00
本次提交主要包含以下更新:
- **错误日志页面增强**:
- 重构了 [`app/static/js/error_logs.js`](app/static/js/error_logs.js) 中的分页逻辑,将样式控制移至 CSS,简化了 JavaScript 代码。
- 更新了 [`app/templates/error_logs.html`](app/templates/error_logs.html) 中的分页样式,使其与 `keys_status.html` 保持一致,提升了视觉统一性。
- 在错误日志页面新增了“清空全部”按钮,方便用户一键清除所有错误记录。
- 调整了错误日志表格头部的文本颜色为白色,以改善深色主题下的可读性。
- **应用初始化与配置优化**:
- 调整了 [`app/config/config.py`](app/config/config.py) 中日志记录器的获取方式,确保在配置加载早期即可用。
- 在 [`app/core/application.py`](app/core/application.py) 中引入了更明确的数据库连接管理(连接、断开、初始化)逻辑。
- 优化了 [`app/utils/helpers.py`](app/utils/helpers.py) 中项目路径和版本文件路径的定义方式,使其在模块级别初始化。
- **依赖清理**:
- 从 [`requirements.txt`](requirements.txt) 中移除了不必要的注释。
这些更改旨在提升错误日志模块的用户体验和功能性,并优化应用程序的启动和配置管理流程。
63 lines
2.5 KiB
Python
63 lines
2.5 KiB
Python
"""
|
|
数据库模型模块
|
|
"""
|
|
import datetime
|
|
from sqlalchemy import Column, Integer, String, Text, DateTime, JSON, Boolean # 添加 Boolean
|
|
|
|
from app.database.connection import Base
|
|
|
|
|
|
class Settings(Base):
|
|
"""
|
|
设置表,对应.env中的配置项
|
|
"""
|
|
__tablename__ = "t_settings"
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
|
key = Column(String(100), nullable=False, unique=True, comment="配置项键名")
|
|
value = Column(Text, nullable=True, comment="配置项值")
|
|
description = Column(String(255), nullable=True, comment="配置项描述")
|
|
created_at = Column(DateTime, default=datetime.datetime.now, comment="创建时间")
|
|
updated_at = Column(DateTime, default=datetime.datetime.now, onupdate=datetime.datetime.now, comment="更新时间")
|
|
|
|
def __repr__(self):
|
|
return f"<Settings(key='{self.key}', value='{self.value}')>"
|
|
|
|
|
|
class ErrorLog(Base):
|
|
"""
|
|
错误日志表
|
|
"""
|
|
__tablename__ = "t_error_logs"
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
|
gemini_key = Column(String(100), nullable=True, comment="Gemini API密钥")
|
|
model_name = Column(String(100), nullable=True, comment="模型名称")
|
|
error_type = Column(String(50), nullable=True, comment="错误类型")
|
|
error_log = Column(Text, nullable=True, comment="错误日志")
|
|
error_code = Column(Integer, nullable=True, comment="错误代码")
|
|
request_msg = Column(JSON, nullable=True, comment="请求消息")
|
|
request_time = Column(DateTime, default=datetime.datetime.now, comment="请求时间")
|
|
|
|
def __repr__(self):
|
|
return f"<ErrorLog(id='{self.id}', gemini_key='{self.gemini_key}')>"
|
|
|
|
|
|
class RequestLog(Base):
|
|
"""
|
|
API 请求日志表
|
|
"""
|
|
|
|
__tablename__ = "t_request_log"
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
|
request_time = Column(DateTime, default=datetime.datetime.now, comment="请求时间")
|
|
model_name = Column(String(100), nullable=True, comment="模型名称")
|
|
api_key = Column(String(100), nullable=True, comment="使用的API密钥") # 考虑安全性,后续可优化
|
|
is_success = Column(Boolean, nullable=False, comment="请求是否成功")
|
|
status_code = Column(Integer, nullable=True, comment="API响应状态码")
|
|
latency_ms = Column(Integer, nullable=True, comment="请求耗时(毫秒)")
|
|
|
|
def __repr__(self):
|
|
return f"<RequestLog(id='{self.id}', key='{self.api_key[:4]}...', success='{self.is_success}')>"
|