- FastAPI backend: PostGIS estimator + 3 scrapers (Avito/Cian/Yandex)
- Next.js 15 frontend: tradein.html mockup design, basePath=/trade-in
- WeasyPrint PDF (Брусника-style 4-page report)
- Address autocomplete с typo-tolerance + 6 EKB presets
- Изолированный docker stack gendesign-tradein (отдельная postgres БД)
- Caddy inline routes: gendsgn.ru/trade-in/* и /trade-in/api/v1/*
- Forgejo Actions: .forgejo/workflows/deploy-tradein.yml (shell-based GHCR login)
- Триггер только по paths: tradein-mvp/** (не пересекается с deploy.yml)
- Образы: ghcr.io/lekss361/gendesign-tradein-{backend,frontend}:latest
Первый запуск на сервере (вручную, один раз):
- создать /opt/gendesign/tradein-mvp/.env.runtime (postgres pwd, contact email)
- docker network create gendesign_shared (если нет)
- docker compose -p gendesign-tradein up -d
- docker compose -p gendesign exec caddy caddy reload
62 lines
2.4 KiB
Python
62 lines
2.4 KiB
Python
"""Pydantic schemas for Trade-In Estimator.
|
|
|
|
POST /api/v1/trade-in/estimate → AggregatedEstimate
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import date, datetime
|
|
from typing import Literal
|
|
from uuid import UUID
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class TradeInEstimateInput(BaseModel):
|
|
address: str = Field(min_length=3, max_length=500)
|
|
area_m2: float = Field(gt=10, lt=500)
|
|
rooms: int = Field(ge=0, le=10) # 0 = студия
|
|
floor: int = Field(ge=1, le=100)
|
|
total_floors: int = Field(ge=1, le=100)
|
|
year_built: int | None = Field(default=None, ge=1800, le=2100)
|
|
house_type: Literal["panel", "brick", "monolith", "monolith_brick", "other"] | None = None
|
|
repair_state: Literal["needs_repair", "standard", "good", "excellent"] | None = None
|
|
has_balcony: bool | None = None
|
|
|
|
|
|
class AnalogLot(BaseModel):
|
|
address: str
|
|
area_m2: float
|
|
rooms: int
|
|
floor: int | None
|
|
total_floors: int | None
|
|
price_rub: int
|
|
price_per_m2: int
|
|
listing_date: date | None
|
|
days_on_market: int | None
|
|
photo_url: str | None = None
|
|
# ── Новые поля (Слой 5.2 — clickable links) ──
|
|
source: str | None = None # 'avito' / 'cian' / 'domklik' / 'rosreestr'
|
|
source_url: str | None = None # ссылка на оригинальное объявление / сделку
|
|
distance_m: int | None = None # расстояние до целевой квартиры в метрах
|
|
|
|
|
|
class AggregatedEstimate(BaseModel):
|
|
estimate_id: UUID
|
|
median_price_rub: int
|
|
range_low_rub: int
|
|
range_high_rub: int
|
|
median_price_per_m2: int
|
|
confidence: Literal["low", "medium", "high"]
|
|
confidence_explanation: str | None = None # «Найдено 15 аналогов, разброс ±7%»
|
|
n_analogs: int
|
|
period_months: int # 24
|
|
analogs: list[AnalogLot] # top 5-10 listings
|
|
actual_deals: list[AnalogLot] # реальные продажи last 12 mo
|
|
expires_at: datetime
|
|
# ── Дополнительные метаданные ──
|
|
target_address: str | None = None # geocoded full address
|
|
target_lat: float | None = None
|
|
target_lon: float | None = None
|
|
sources_used: list[str] = Field(default_factory=list) # ['avito', 'cian', 'rosreestr']
|
|
data_freshness_minutes: int | None = None # сколько минут назад был самый свежий парсинг
|