b255a0f90e
Renames src/fabledassistant -> src/scribe and all imports, plus the default DB name and DB user/password (fabled -> scribe) in config + compose. 952 refs / 154 files. Reverses the old 'internal name stays fabledassistant' convention. Code-only: live databases are still physically named 'fabledassistant'. Deployed environments must set POSTGRES_DB / POSTGRES_USER (or rename the DB) since the defaults now resolve to 'scribe'. Repo (FabledScribe), git host (fabledsword), MCP (fabled-git) and the image name (fabledscribe) are intentionally unchanged. ruff check src/ clean locally; CI (typecheck + pytest) is the gate. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
49 lines
1.9 KiB
Python
49 lines
1.9 KiB
Python
from datetime import datetime, timezone
|
|
|
|
from sqlalchemy import DateTime, Float, Index, Integer, Text
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from scribe.models import Base
|
|
|
|
|
|
class AppLog(Base):
|
|
__tablename__ = "app_logs"
|
|
|
|
id: Mapped[int] = mapped_column(primary_key=True)
|
|
category: Mapped[str] = mapped_column(Text, nullable=False)
|
|
user_id: Mapped[int | None] = mapped_column(Integer, nullable=True)
|
|
username: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
action: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
endpoint: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
method: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
status_code: Mapped[int | None] = mapped_column(Integer, nullable=True)
|
|
duration_ms: Mapped[float | None] = mapped_column(Float, nullable=True)
|
|
ip_address: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
details: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
created_at: Mapped[datetime] = mapped_column(
|
|
DateTime(timezone=True), default=lambda: datetime.now(timezone.utc)
|
|
)
|
|
|
|
__table_args__ = (
|
|
Index("ix_app_logs_category", "category"),
|
|
Index("ix_app_logs_user_id", "user_id"),
|
|
Index("ix_app_logs_created_at", "created_at"),
|
|
Index("ix_app_logs_category_created_at", "category", created_at.desc()),
|
|
)
|
|
|
|
def to_dict(self) -> dict:
|
|
return {
|
|
"id": self.id,
|
|
"category": self.category,
|
|
"user_id": self.user_id,
|
|
"username": self.username,
|
|
"action": self.action,
|
|
"endpoint": self.endpoint,
|
|
"method": self.method,
|
|
"status_code": self.status_code,
|
|
"duration_ms": self.duration_ms,
|
|
"ip_address": self.ip_address,
|
|
"details": self.details,
|
|
"created_at": self.created_at.isoformat() if self.created_at else None,
|
|
}
|