01d0331136
Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/1e4a1f06-55b9-4040-853e-6aaf9ee574c8 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
68 lines
2.3 KiB
Python
68 lines
2.3 KiB
Python
from datetime import datetime
|
|
|
|
from sqlalchemy import Boolean, Column, DateTime, ForeignKey, Index, Integer, String, Text
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from app.core.database import Base
|
|
|
|
|
|
class Domain(Base):
|
|
"""Domain model representing a monitored domain"""
|
|
|
|
__tablename__ = "domains"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
name = Column(String, unique=True, index=True, nullable=False)
|
|
description = Column(Text, nullable=True)
|
|
active = Column(Boolean, default=True, index=True)
|
|
|
|
# DMARC policy information
|
|
dmarc_policy = Column(String, nullable=True, index=True)
|
|
spf_record = Column(String, nullable=True)
|
|
dkim_selectors = Column(String, nullable=True) # Comma-separated list of DKIM selectors
|
|
|
|
# DNS verification status
|
|
verified = Column(Boolean, default=False, index=True)
|
|
verification_token = Column(String, nullable=True)
|
|
|
|
# Date fields
|
|
created_at = Column(DateTime, default=datetime.utcnow, index=True)
|
|
updated_at = Column(DateTime, default=datetime.utcnow, onupdate=datetime.utcnow)
|
|
|
|
# Relationships
|
|
reports = relationship("DMARCReport", back_populates="domain", cascade="all, delete-orphan")
|
|
user_domains = relationship("UserDomain", back_populates="domain", cascade="all, delete-orphan")
|
|
|
|
# Indexes for common queries
|
|
__table_args__ = (
|
|
# Index for finding active and verified domains
|
|
Index("ix_domains_active_verified", "active", "verified"),
|
|
# Index for finding domains by policy
|
|
Index("ix_domains_policy", "dmarc_policy"),
|
|
# Index for finding recently updated domains
|
|
Index("ix_domains_updated", "updated_at"),
|
|
)
|
|
|
|
def __repr__(self):
|
|
return f"<Domain {self.name}>"
|
|
|
|
|
|
class UserDomain(Base):
|
|
"""Association table for users and domains"""
|
|
|
|
__tablename__ = "user_domains"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
user_id = Column(Integer, ForeignKey("users.id"), nullable=False)
|
|
domain_id = Column(Integer, ForeignKey("domains.id"), nullable=False)
|
|
|
|
# Access level (admin, viewer, etc)
|
|
role = Column(String, default="viewer", nullable=False)
|
|
|
|
# Date fields
|
|
created_at = Column(DateTime, default=datetime.utcnow)
|
|
|
|
# Relationships
|
|
user = relationship("User", back_populates="user_domains")
|
|
domain = relationship("Domain", back_populates="user_domains")
|