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 6271a715a1
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled
feat: initialize market app with browsing, product, and scraping code
Split from coop monolith. Includes:
- Market/browse/product blueprints
- Product sync API
- Suma scraping pipeline
- Templates for market, browse, and product views
- Dockerfile and CI workflow for independent deployment
2026-02-09 23:16:34 +00:00

25 lines
725 B
Python

import re
from urllib.parse import urljoin, urlparse
from 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")