mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-27 23:35:01 +00:00
Behaviour-preserving lift-and-shift of the condition module out of legacy backend/condition/ into domain/condition, infrastructure/condition, infrastructure/postgres/condition_tables.py, repositories/condition, applications/condition, and tests/condition. Imports rewritten to the DDD paths; ConditionPostgres and the ORM models keep the legacy backend.app.db Base/db_session bridges so the existing suite proves behaviour is unchanged (SQLModel + session-DI conversion tracked as a follow-up in ADR-0064). 16 condition tests pass at the new location. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
33 lines
1 KiB
Python
33 lines
1 KiB
Python
from enum import Enum
|
|
from typing import Optional
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class ConditionFileType(Enum):
|
|
LBWF = "LBWF"
|
|
Peabody = "Peabody"
|
|
# TODO: make these asset management systems rather than client names
|
|
|
|
|
|
class ConditionTriggerRequest(BaseModel):
|
|
file_type: ConditionFileType
|
|
trigger_file_bucket: str # TODO: get this from settings
|
|
trigger_file_key: str
|
|
|
|
uprn_lookup_file_bucket: Optional[str] = None # TODO: get this from settings
|
|
uprn_lookup_file_key: Optional[str] = None
|
|
|
|
|
|
# {
|
|
# "file_type": "Peabody",
|
|
# "trigger_file_bucket": "condition-data-dev",
|
|
# "trigger_file_key": "input/peabody/2026_01_06 - Peabody - Stock Condition Data - Survey Records - D Lower.xlsx",
|
|
# "uprn_lookup_file_bucket": "condition-data-dev",
|
|
# "uprn_lookup_file_key": "input/peabody/uprn-lookup/PeabodyPropertymatched_Dec25_propref_UPRN.csv"
|
|
# }
|
|
|
|
# {
|
|
# "file_type": "LBWF",
|
|
# "trigger_file_bucket": "condition-data-dev",
|
|
# "trigger_file_key": "input/lbwf/LBWF - Example Asset Data September 2025.xlsx"
|
|
# }
|