- Remove User/Quota models; quota fields now live directly on APIKey - Admin UI: login, API key management, settings (Ollama URL/model), proxy info display - .env/.env.example: ADMIN_PASSWORD, PROXY_HOST/PORT, DATABASE_URL, APP_TZ - Admin API runs on 127.0.0.1 only; proxy host/port configurable - API keys support optional expires_at; verified against Europe/Berlin timezone - Daily/monthly quota resets use Europe/Berlin midnight boundary - Fix all tests to use new flat model; add expiry tests Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
from sqlalchemy import Column, Integer, String, Boolean, DateTime, ForeignKey, BigInteger
|
|
from datetime import datetime, timezone
|
|
from database import Base
|
|
|
|
_now = lambda: datetime.now(timezone.utc)
|
|
|
|
class APIKey(Base):
|
|
__tablename__ = "api_keys"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
name = Column(String)
|
|
key = Column(String, unique=True, index=True)
|
|
is_active = Column(Boolean, default=True)
|
|
created_at = Column(DateTime(timezone=True), default=_now)
|
|
expires_at = Column(DateTime(timezone=True), nullable=True)
|
|
daily_tokens = Column(BigInteger, nullable=True)
|
|
monthly_tokens = Column(BigInteger, nullable=True)
|
|
daily_requests = Column(Integer, nullable=True)
|
|
monthly_requests = Column(Integer, nullable=True)
|
|
|
|
class Setting(Base):
|
|
__tablename__ = "settings"
|
|
|
|
key = Column(String, primary_key=True)
|
|
value = Column(String, nullable=False)
|
|
|
|
class Usage(Base):
|
|
__tablename__ = "usage"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
api_key_id = Column(Integer, ForeignKey("api_keys.id"), unique=True)
|
|
tokens_used_today = Column(BigInteger, default=0)
|
|
tokens_used_month = Column(BigInteger, default=0)
|
|
requests_today = Column(Integer, default=0)
|
|
requests_month = Column(Integer, default=0)
|
|
daily_reset_at = Column(DateTime(timezone=True), default=_now)
|
|
monthly_reset_at = Column(DateTime(timezone=True), default=_now) |