1a195a96bd
- Merge origin/main into branch (resolve conflict in integrations_dashboard.html) - Add defensive JSON parsing with try/except for integration.config - Wrap tester() call in try/except to prevent 500 errors from bad config - Add i18n key integrations.connection_test_failed_fallback in en.json - Reference i18n key in template JS fallback message - Update SECURITY_AUDIT.md: add fix date (2026-03-23), update doc date - Remove accidental revert.sh file - Fix missing MagicMock/patch imports in test file - Add tests for invalid JSON config and tester exception error paths Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/daebb70e-059a-4601-8864-88eef49f99cf
30 lines
933 B
Python
30 lines
933 B
Python
"""Public view for accessing a shared document link.
|
|
|
|
This route does NOT require authentication — it is the landing page
|
|
that link recipients visit. The page fetches link metadata via the
|
|
public ``/api/share/{token}/info`` JSON endpoint and then renders the
|
|
appropriate download UI (password gate or direct download button).
|
|
"""
|
|
|
|
import logging
|
|
import pathlib
|
|
|
|
from fastapi import APIRouter, Request
|
|
from fastapi.templating import Jinja2Templates
|
|
|
|
logger = logging.getLogger(__name__)
|
|
router = APIRouter()
|
|
|
|
_templates_dir = pathlib.Path(__file__).parents[2] / "frontend" / "templates"
|
|
templates = Jinja2Templates(directory=str(_templates_dir))
|
|
|
|
|
|
@router.get("/share/{token}")
|
|
async def shared_link_view(request: Request, token: str):
|
|
"""Render the public share landing page for a given token."""
|
|
return templates.TemplateResponse(
|
|
request,
|
|
"shared_link_view.html",
|
|
context={"token": token},
|
|
)
|