2022-11-06 20:48:04 +00:00
|
|
|
from django.http import Http404
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-11-06 20:48:04 +00:00
|
|
|
from users.models import Domain, Identity
|
2022-11-05 20:17:27 +00:00
|
|
|
|
|
|
|
|
2022-11-10 05:29:33 +00:00
|
|
|
def by_handle_or_404(request, handle, local=True, fetch=False) -> Identity:
|
2022-11-05 20:17:27 +00:00
|
|
|
"""
|
|
|
|
Retrieves an Identity by its long or short handle.
|
|
|
|
Domain-sensitive, so it will understand short handles on alternate domains.
|
|
|
|
"""
|
|
|
|
if "@" not in handle:
|
2022-12-05 21:44:50 +00:00
|
|
|
if "host" not in request.headers:
|
2022-11-06 20:48:04 +00:00
|
|
|
raise Http404("No hostname available")
|
|
|
|
username = handle
|
2022-12-05 21:44:50 +00:00
|
|
|
domain_instance = Domain.get_domain(request.headers["host"])
|
2022-11-06 20:48:04 +00:00
|
|
|
if domain_instance is None:
|
|
|
|
raise Http404("No matching domains found")
|
|
|
|
domain = domain_instance.domain
|
|
|
|
else:
|
|
|
|
username, domain = handle.split("@", 1)
|
2022-11-07 07:19:00 +00:00
|
|
|
# Resolve the domain to the display domain
|
2022-11-11 06:42:43 +00:00
|
|
|
domain_instance = Domain.get_domain(domain)
|
|
|
|
if domain_instance is None:
|
|
|
|
domain_instance = Domain.get_remote_domain(domain)
|
|
|
|
domain = domain_instance.domain
|
2022-11-07 07:19:00 +00:00
|
|
|
identity = Identity.by_username_and_domain(
|
|
|
|
username,
|
|
|
|
domain,
|
|
|
|
local=local,
|
|
|
|
fetch=fetch,
|
|
|
|
)
|
2022-11-07 04:30:07 +00:00
|
|
|
if identity is None:
|
|
|
|
raise Http404(f"No identity for handle {handle}")
|
2022-12-17 02:42:48 +00:00
|
|
|
if identity.blocked:
|
|
|
|
raise Http404("Blocked user")
|
2022-11-07 04:30:07 +00:00
|
|
|
return identity
|