diff options
author | Andrew Godwin | 2022-11-17 19:31:00 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-17 17:55:50 -0700 |
commit | 2a3690d1c148da5dd799052403ba7290e1fb7de0 (patch) | |
tree | 6a1c92cdbea7ee2e307a99dd114610c83b33f82a /core | |
parent | 291d7e404e12e1d017403242f8ed199046f0904c (diff) | |
download | takahe-2a3690d1c148da5dd799052403ba7290e1fb7de0.tar.gz takahe-2a3690d1c148da5dd799052403ba7290e1fb7de0.tar.bz2 takahe-2a3690d1c148da5dd799052403ba7290e1fb7de0.zip |
Return images and summary in actor
Diffstat (limited to 'core')
-rw-r--r-- | core/html.py | 3 | ||||
-rw-r--r-- | core/ld.py | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/core/html.py b/core/html.py index fd41a50..5045b16 100644 --- a/core/html.py +++ b/core/html.py @@ -20,12 +20,13 @@ def sanitize_post(post_html: str) -> str: Only allows a, br, p and span tags, and class attributes. """ cleaner = bleach.Cleaner( - tags=["a", "br", "p", "span"], + tags=["br", "p"], attributes={ # type:ignore "a": allow_a, "p": ["class"], "span": ["class"], }, filters=[LinkifyFilter], + strip=True, ) return mark_safe(cleaner.clean(post_html)) @@ -1,4 +1,5 @@ import datetime +import os import urllib.parse as urllib_parse from typing import Dict, List, Optional, Union @@ -436,3 +437,19 @@ def parse_ld_date(value: Optional[str]) -> Optional[datetime.datetime]: return datetime.datetime.strptime(value, DATETIME_FORMAT).replace( tzinfo=datetime.timezone.utc ) + + +def media_type_from_filename(filename): + _, extension = os.path.splitext(filename) + if extension == ".png": + return "image/png" + elif extension in [".jpg", ".jpeg"]: + return "image/png" + elif extension == ".gif": + return "image/gif" + elif extension == ".apng": + return "image/apng" + elif extension == ".webp": + return "image/webp" + else: + return "application/octet-stream" |