mirror of
https://github.com/complexcaresolutions/dak.c2s.git
synced 2026-03-17 21:53:41 +00:00
PostgreSQL requires globally unique index names (unlike MySQL which scopes them per table). Prefix generic names: idx_user→idx_al_user/idx_rt_user, idx_token→idx_rt_token, idx_case/idx_code/idx_haupt→idx_icd_*. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
174 lines
5.8 KiB
Python
174 lines
5.8 KiB
Python
"""Import log, audit log, and notification models."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import datetime as dt
|
|
from typing import Optional
|
|
|
|
from sqlalchemy import (
|
|
Boolean,
|
|
CheckConstraint,
|
|
DateTime,
|
|
ForeignKey,
|
|
Index,
|
|
Integer,
|
|
JSON,
|
|
String,
|
|
Text,
|
|
func,
|
|
)
|
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
|
|
|
from app.database import Base
|
|
|
|
|
|
class ImportLog(Base):
|
|
__tablename__ = "import_log"
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
|
filename: Mapped[str] = mapped_column(String(255), nullable=False)
|
|
import_type: Mapped[str] = mapped_column(String(50), nullable=False)
|
|
cases_imported: Mapped[int] = mapped_column(
|
|
Integer, nullable=False, server_default="0"
|
|
)
|
|
cases_skipped: Mapped[int] = mapped_column(
|
|
Integer, nullable=False, server_default="0"
|
|
)
|
|
cases_updated: Mapped[int] = mapped_column(
|
|
Integer, nullable=False, server_default="0"
|
|
)
|
|
errors: Mapped[Optional[str]] = mapped_column(Text, nullable=True)
|
|
details: Mapped[Optional[dict]] = mapped_column(JSON, nullable=True)
|
|
imported_by: Mapped[Optional[int]] = mapped_column(
|
|
Integer, ForeignKey("users.id"), nullable=True
|
|
)
|
|
imported_at: Mapped[dt.datetime] = mapped_column(
|
|
DateTime, nullable=False, server_default=func.now()
|
|
)
|
|
|
|
# Relationships
|
|
imported_by_user: Mapped[Optional["User"]] = relationship(
|
|
foreign_keys=[imported_by]
|
|
)
|
|
|
|
__table_args__ = (
|
|
CheckConstraint(
|
|
"import_type IN ('csv_crm','icd_xlsx','historical_excel','excel_sync')",
|
|
name="chk_imp_type",
|
|
),
|
|
)
|
|
|
|
|
|
class AuditLog(Base):
|
|
__tablename__ = "audit_log"
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
|
user_id: Mapped[Optional[int]] = mapped_column(
|
|
Integer, ForeignKey("users.id"), nullable=True
|
|
)
|
|
action: Mapped[str] = mapped_column(String(100), nullable=False)
|
|
entity_type: Mapped[Optional[str]] = mapped_column(String(50), nullable=True)
|
|
entity_id: Mapped[Optional[int]] = mapped_column(Integer, nullable=True)
|
|
old_values: Mapped[Optional[dict]] = mapped_column(JSON, nullable=True)
|
|
new_values: Mapped[Optional[dict]] = mapped_column(JSON, nullable=True)
|
|
ip_address: Mapped[Optional[str]] = mapped_column(String(45), nullable=True)
|
|
user_agent: Mapped[Optional[str]] = mapped_column(Text, nullable=True)
|
|
created_at: Mapped[dt.datetime] = mapped_column(
|
|
DateTime, nullable=False, server_default=func.now()
|
|
)
|
|
|
|
# Relationships
|
|
user: Mapped[Optional["User"]] = relationship(foreign_keys=[user_id])
|
|
|
|
__table_args__ = (
|
|
Index("idx_al_user", "user_id"),
|
|
Index("idx_al_entity", "entity_type", "entity_id"),
|
|
Index("idx_al_created", "created_at"),
|
|
)
|
|
|
|
|
|
class Notification(Base):
|
|
__tablename__ = "notifications"
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
|
recipient_id: Mapped[int] = mapped_column(
|
|
Integer, ForeignKey("users.id"), nullable=False
|
|
)
|
|
notification_type: Mapped[str] = mapped_column(String(50), nullable=False)
|
|
title: Mapped[str] = mapped_column(String(255), nullable=False)
|
|
message: Mapped[Optional[str]] = mapped_column(Text, nullable=True)
|
|
related_entity_type: Mapped[Optional[str]] = mapped_column(
|
|
String(50), nullable=True
|
|
)
|
|
related_entity_id: Mapped[Optional[int]] = mapped_column(
|
|
Integer, nullable=True
|
|
)
|
|
is_read: Mapped[bool] = mapped_column(
|
|
Boolean, nullable=False, server_default="0"
|
|
)
|
|
email_sent: Mapped[bool] = mapped_column(
|
|
Boolean, nullable=False, server_default="0"
|
|
)
|
|
email_sent_at: Mapped[Optional[dt.datetime]] = mapped_column(
|
|
DateTime, nullable=True
|
|
)
|
|
created_at: Mapped[dt.datetime] = mapped_column(
|
|
DateTime, nullable=False, server_default=func.now()
|
|
)
|
|
|
|
# Relationships
|
|
recipient: Mapped["User"] = relationship(foreign_keys=[recipient_id])
|
|
|
|
__table_args__ = (
|
|
Index("idx_recipient", "recipient_id", "is_read"),
|
|
CheckConstraint(
|
|
"notification_type IN ("
|
|
"'new_cases_uploaded','icd_entered','icd_uploaded',"
|
|
"'report_ready','coding_completed',"
|
|
"'disclosure_request','disclosure_resolved')",
|
|
name="chk_notif",
|
|
),
|
|
)
|
|
|
|
|
|
class DisclosureRequest(Base):
|
|
__tablename__ = "disclosure_requests"
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
|
case_id: Mapped[int] = mapped_column(
|
|
Integer, ForeignKey("cases.id"), nullable=False
|
|
)
|
|
requester_id: Mapped[int] = mapped_column(
|
|
Integer, ForeignKey("users.id"), nullable=False
|
|
)
|
|
reason: Mapped[str] = mapped_column(String(500), nullable=False)
|
|
status: Mapped[str] = mapped_column(
|
|
String(20), nullable=False, server_default="pending"
|
|
)
|
|
reviewed_by: Mapped[Optional[int]] = mapped_column(
|
|
Integer, ForeignKey("users.id"), nullable=True
|
|
)
|
|
reviewed_at: Mapped[Optional[dt.datetime]] = mapped_column(
|
|
DateTime, nullable=True
|
|
)
|
|
expires_at: Mapped[Optional[dt.datetime]] = mapped_column(
|
|
DateTime, nullable=True
|
|
)
|
|
created_at: Mapped[dt.datetime] = mapped_column(
|
|
DateTime, nullable=False, server_default=func.now()
|
|
)
|
|
|
|
# Relationships
|
|
case: Mapped["Case"] = relationship(foreign_keys=[case_id])
|
|
requester: Mapped["User"] = relationship(foreign_keys=[requester_id])
|
|
reviewer: Mapped[Optional["User"]] = relationship(foreign_keys=[reviewed_by])
|
|
|
|
__table_args__ = (
|
|
CheckConstraint(
|
|
"status IN ('pending','approved','rejected')",
|
|
name="chk_dr_status",
|
|
),
|
|
Index("idx_dr_case_status", "case_id", "status"),
|
|
Index("idx_dr_requester", "requester_id"),
|
|
Index("idx_dr_status", "status"),
|
|
)
|