"""Config template, template tag, and template push job models.""" import uuid from datetime import datetime from sqlalchemy import ( DateTime, Float, ForeignKey, String, Text, UniqueConstraint, func, ) from sqlalchemy.dialects.postgresql import JSON, UUID from sqlalchemy.orm import Mapped, mapped_column, relationship from app.database import Base class ConfigTemplate(Base): __tablename__ = "config_templates" __table_args__ = ( UniqueConstraint("tenant_id", "name", name="uq_config_templates_tenant_name"), ) id: Mapped[uuid.UUID] = mapped_column( UUID(as_uuid=True), primary_key=True, default=uuid.uuid4, server_default=func.gen_random_uuid(), ) tenant_id: Mapped[uuid.UUID] = mapped_column( UUID(as_uuid=True), ForeignKey("tenants.id", ondelete="CASCADE"), nullable=False, index=True, ) name: Mapped[str] = mapped_column(Text, nullable=False) description: Mapped[str | None] = mapped_column(Text, nullable=True) content: Mapped[str] = mapped_column(Text, nullable=False) variables: Mapped[list] = mapped_column(JSON, nullable=False, default=list, server_default="[]") created_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), server_default=func.now(), nullable=False, ) updated_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), server_default=func.now(), onupdate=func.now(), nullable=False, ) # Relationships tenant: Mapped["Tenant"] = relationship("Tenant") # type: ignore[name-defined] tags: Mapped[list["ConfigTemplateTag"]] = relationship( "ConfigTemplateTag", back_populates="template", cascade="all, delete-orphan" ) def __repr__(self) -> str: return f"" class ConfigTemplateTag(Base): __tablename__ = "config_template_tags" __table_args__ = ( UniqueConstraint("template_id", "name", name="uq_config_template_tags_template_name"), ) id: Mapped[uuid.UUID] = mapped_column( UUID(as_uuid=True), primary_key=True, default=uuid.uuid4, server_default=func.gen_random_uuid(), ) tenant_id: Mapped[uuid.UUID] = mapped_column( UUID(as_uuid=True), ForeignKey("tenants.id", ondelete="CASCADE"), nullable=False, ) name: Mapped[str] = mapped_column(String(100), nullable=False) template_id: Mapped[uuid.UUID] = mapped_column( UUID(as_uuid=True), ForeignKey("config_templates.id", ondelete="CASCADE"), nullable=False, index=True, ) # Relationships template: Mapped["ConfigTemplate"] = relationship( "ConfigTemplate", back_populates="tags" ) def __repr__(self) -> str: return f"" class TemplatePushJob(Base): __tablename__ = "template_push_jobs" id: Mapped[uuid.UUID] = mapped_column( UUID(as_uuid=True), primary_key=True, default=uuid.uuid4, server_default=func.gen_random_uuid(), ) tenant_id: Mapped[uuid.UUID] = mapped_column( UUID(as_uuid=True), ForeignKey("tenants.id", ondelete="CASCADE"), nullable=False, ) template_id: Mapped[uuid.UUID | None] = mapped_column( UUID(as_uuid=True), ForeignKey("config_templates.id", ondelete="SET NULL"), nullable=True, ) device_id: Mapped[uuid.UUID] = mapped_column( UUID(as_uuid=True), ForeignKey("devices.id", ondelete="CASCADE"), nullable=False, ) rollout_id: Mapped[uuid.UUID | None] = mapped_column( UUID(as_uuid=True), nullable=True, ) rendered_content: Mapped[str] = mapped_column(Text, nullable=False) status: Mapped[str] = mapped_column( Text, nullable=False, default="pending", server_default="pending", ) pre_push_backup_sha: Mapped[str | None] = mapped_column(Text, nullable=True) error_message: Mapped[str | None] = mapped_column(Text, nullable=True) started_at: Mapped[datetime | None] = mapped_column( DateTime(timezone=True), nullable=True ) completed_at: Mapped[datetime | None] = mapped_column( DateTime(timezone=True), nullable=True ) created_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), server_default=func.now(), nullable=False, ) # Relationships template: Mapped["ConfigTemplate | None"] = relationship("ConfigTemplate") device: Mapped["Device"] = relationship("Device") # type: ignore[name-defined] def __repr__(self) -> str: return f""