Merge pull request #2184 from TowyTowy/fix/serve-resource-mimetypes

Fix: serve_resource/serve_folder ignore their mimetypes and fallback_mimetype parameters
This commit is contained in:
Peter Bieringer
2026-07-18 14:37:13 +03:00
committed by GitHub
3 changed files with 21 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
# Changelog
## 3.7.7.dev
* Fix: web plugin helpers httputils.serve_resource/serve_folder ignored their mimetypes and fallback_mimetype parameters and always used the built-in mapping, so custom web plugins could not serve additional file types with a correct Content-Type
* Fix: free-busy REPORT always failed with HTTP 400 ("FREEBUSY occurrences limit of 0 hit") when [reporting] max_freebusy_occurrence is set to 0 (limit disabled), because the limit check did not honor the disabled limit
* Fix: time-range filter treated a VEVENT with a whole-day DURATION (e.g. P1D, P2D) as zero-length (timedelta.seconds instead of total_seconds), so such events were missing from calendar-query REPORT results
* Fix: calendar-data expand (REPORT) left recurrence properties (e.g. RDATE) on the expanded single-occurrence VEVENTs; a single try/except around the sequential delattr() calls stopped at the first absent property (e.g. missing EXDATE), so later ones were never removed

View File

@@ -209,8 +209,8 @@ def _serve_traversable(
traversable = traversable.joinpath(index_file)
if not traversable.is_file():
return NOT_FOUND
content_type = MIMETYPES.get(
os.path.splitext(traversable.name)[1].lower(), FALLBACK_MIMETYPE)
content_type = mimetypes.get(
os.path.splitext(traversable.name)[1].lower(), fallback_mimetype)
headers = {
"Content-Type": content_type,
}

View File

@@ -19,6 +19,7 @@ Test web plugin.
"""
from radicale import httputils
from radicale.tests import BaseTest
@@ -52,3 +53,20 @@ class TestBaseWebRequests(BaseTest):
assert answer == "custom"
_, answer = self.post("/.web", "body content")
assert answer == "echo:body content"
def test_serve_resource_custom_mimetypes(self) -> None:
"""serve_resource must honor mimetypes and fallback_mimetype."""
status, headers, _, _ = httputils.serve_resource(
"radicale.web", "internal_data", "", "/.web/index.html")
assert status == 200
assert dict(headers)["Content-Type"] == "text/html"
status, headers, _, _ = httputils.serve_resource(
"radicale.web", "internal_data", "", "/.web/index.html",
mimetypes={".html": "text/x-custom"})
assert status == 200
assert dict(headers)["Content-Type"] == "text/x-custom"
status, headers, _, _ = httputils.serve_resource(
"radicale.web", "internal_data", "", "/.web/index.html",
mimetypes={}, fallback_mimetype="application/x-fallback")
assert status == 200
assert dict(headers)["Content-Type"] == "application/x-fallback"