This repository has been archived on 2026-02-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
market/bp/browse/services/slugs.py
giles 478636f799 feat: decouple market from shared_lib, add app-owned models
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>
2026-02-11 12:46:32 +00:00

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")