Phase 1-3 of decoupling: - path_setup.py adds project root to sys.path - Market-owned models in market/models/ (market, market_place) - All imports updated: shared.infrastructure, shared.db, shared.browser, etc. - MarketPlace uses container_type/container_id instead of post_id FK Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
732 B
Python
25 lines
732 B
Python
import re
|
|
from urllib.parse import urljoin, urlparse
|
|
from shared.config import config
|
|
|
|
def product_slug_from_href(href: str) -> str:
|
|
p = urlparse(href)
|
|
parts = [x for x in p.path.split("/") if x]
|
|
if not parts:
|
|
return ""
|
|
last = parts[-1]
|
|
if last.endswith(".html"):
|
|
last = last[:-5]
|
|
elif last.endswith(".htm"):
|
|
last = last[:-4]
|
|
last = re.sub(r"-(html|htm)+$", "", last, flags=re.I)
|
|
return f"{last}-html"
|
|
|
|
def canonical_html_slug(slug: str) -> str:
|
|
base = re.sub(r"-(html|htm)+$", "", slug, flags=re.I)
|
|
return f"{base}-html"
|
|
|
|
def suma_href_from_html_slug(slug: str) -> str:
|
|
canon = canonical_html_slug(slug)
|
|
return urljoin(config()["base_url"], f"/{canon}.html")
|