mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 03:11:46 +00:00
296780d5cc
Migrates (in a backwards-compatible way) from `/proxy/identity_image/271/` to `/proxy/identity_image/271/f5d8e72f2b/`. dently).
71 lines
2.4 KiB
Python
71 lines
2.4 KiB
Python
import hashlib
|
|
import sys
|
|
from urllib.parse import urljoin
|
|
|
|
from django.conf import settings
|
|
from django.contrib.staticfiles.storage import staticfiles_storage
|
|
|
|
|
|
class RelativeAbsoluteUrl:
|
|
"""
|
|
Represents a URL that can have both "relative" and "absolute" forms
|
|
for various use either locally or remotely.
|
|
"""
|
|
|
|
absolute: str
|
|
relative: str
|
|
|
|
def __init__(self, absolute: str, relative: str | None = None):
|
|
if "://" not in absolute:
|
|
raise ValueError(f"Absolute URL {absolute!r} is not absolute!")
|
|
self.absolute = absolute
|
|
self.relative = relative or absolute
|
|
|
|
|
|
class AutoAbsoluteUrl(RelativeAbsoluteUrl):
|
|
"""
|
|
Automatically makes the absolute variant by using either settings.MAIN_DOMAIN
|
|
or a passed identity's URI domain.
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
relative: str,
|
|
identity=None,
|
|
hash_tail_input: str | None = None,
|
|
hash_tail_length: int = 10,
|
|
):
|
|
self.relative = relative
|
|
if hash_tail_input:
|
|
# When provided, attach a hash of the input (typically the proxied URL)
|
|
# SHA1 chosen as it generally has the best performance in modern python, and security is not a concern
|
|
# Hash truncation is generally fine, as in the typical use case the hash is scoped to the identity PK
|
|
self.relative += f"{hashlib.sha1(hash_tail_input.encode('ascii')).hexdigest()[:hash_tail_length]}/"
|
|
if identity:
|
|
absolute_prefix = f"https://{identity.domain.uri_domain}/"
|
|
else:
|
|
absolute_prefix = f"https://{settings.MAIN_DOMAIN}/"
|
|
self.absolute = urljoin(absolute_prefix, self.relative)
|
|
|
|
|
|
class StaticAbsoluteUrl(RelativeAbsoluteUrl):
|
|
"""
|
|
Creates static URLs given only the static-relative path
|
|
"""
|
|
|
|
def __init__(self, path: str):
|
|
try:
|
|
static_url = staticfiles_storage.url(path)
|
|
except ValueError:
|
|
# Suppress static issues during the first collectstatic
|
|
# Yes, I know it's a big hack! Pull requests welcome :)
|
|
if "collectstatic" in sys.argv:
|
|
super().__init__("https://example.com/")
|
|
return
|
|
raise
|
|
if "://" in static_url:
|
|
super().__init__(static_url)
|
|
else:
|
|
super().__init__(
|
|
urljoin(f"https://{settings.MAIN_DOMAIN}/", static_url), static_url
|
|
)
|