This commit is contained in:
August Cayzer 2026-06-01 17:08:13 +01:00 committed by GitHub
commit d1cead50b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 62 additions and 21 deletions

View file

@ -1039,6 +1039,11 @@ class MultiParams:
"""Return full list"""
return self._data.get(name) or []
def items(self):
"""Yield (key, first_value) pairs, matching ``__getitem__`` semantics."""
for key, values in self._data.items():
yield key, values[0]
class ConnectionProblem(Exception):
pass

View file

@ -17,7 +17,7 @@ from datasette.utils.multipart import (
DEFAULT_MIN_FREE_DISK_BYTES,
)
from mimetypes import guess_type
from urllib.parse import parse_qs, urlunparse, parse_qsl
from urllib.parse import parse_qs, urlunparse
from pathlib import Path
from http.cookies import SimpleCookie, Morsel
import aiofiles
@ -153,7 +153,7 @@ class Request:
async def post_vars(self):
body = await self.post_body()
return dict(parse_qsl(body.decode("utf-8"), keep_blank_values=True))
return MultiParams(parse_qs(qs=body.decode("utf-8"), keep_blank_values=True))
async def form(
self,

View file

@ -279,9 +279,9 @@ def _execute_write_disabled_reason(sql, analysis_error, analysis_rows):
def _coerce_execute_write_payload(data, is_json):
if not isinstance(data, dict):
raise QueryValidationError("JSON must be a dictionary")
if is_json:
if not isinstance(data, dict):
raise QueryValidationError("JSON must be a dictionary")
invalid_keys = set(data) - {"sql", "params"}
if invalid_keys:
raise QueryValidationError(

View file

@ -357,14 +357,17 @@ class QueryStoreView(QueryCreateView):
query_data = {}
try:
data, is_json = await _json_or_form_payload(request)
if not isinstance(data, dict):
raise QueryValidationError("JSON must be a dictionary")
query_data = data.get("query") if is_json else data
if not isinstance(query_data, dict):
raise QueryValidationError("JSON must contain a query dictionary")
if is_json:
if not isinstance(data, dict):
raise QueryValidationError("JSON must be a dictionary")
query_data = data.get("query")
if not isinstance(query_data, dict):
raise QueryValidationError("JSON must contain a query dictionary")
else:
query_data = data
prepared = await _prepare_query_create(self.ds, request, db, query_data)
except QueryValidationError as ex:
if not is_json and isinstance(query_data, dict):
if not is_json:
return await self._error_response(
request, db, query_data, ex.message, ex.status
)
@ -375,7 +378,7 @@ class QueryStoreView(QueryCreateView):
try:
await self.ds.add_query(db.name, name, replace=False, **prepared)
except sqlite3.IntegrityError as ex:
if not is_json and isinstance(query_data, dict):
if not is_json:
return await self._error_response(request, db, query_data, str(ex), 400)
return _error([str(ex)], 400)
@ -426,8 +429,8 @@ class QueryUpdateView(BaseView):
return _error(["Trusted queries cannot be updated using the API"], 403)
try:
data, _ = await _json_or_form_payload(request)
if not isinstance(data, dict):
data, is_json = await _json_or_form_payload(request)
if is_json and not isinstance(data, dict):
raise QueryValidationError("JSON must be a dictionary")
invalid_keys = set(data) - {"update", "return"}
if invalid_keys:

View file

@ -56,6 +56,7 @@ Bug fixes
- Fixed a bug where visiting ``/<database>/-/query`` without a ``?sql=`` parameter returned a 500 error. (:issue:`2743`)
- The ``datasette inspect`` command now correctly records row counts for tables with more than 10,000 rows. (:issue:`2712`)
- ``await request.post_vars()`` now returns a :ref:`MultiParams <internals_multiparams>` object instead of a ``dict``, so multiple values for the same form field are preserved. Use ``.getlist(key)`` to retrieve every value. Existing ``post_vars[key]`` access continues to work, but now returns the *first* submitted value rather than the *last* (matching ``request.args`` semantics). (:issue:`2425`)
.. _v1_0_a30:

View file

@ -103,8 +103,8 @@ The object also has the following awaitable methods:
Don't forget to read about :ref:`internals_csrf`!
``await request.post_vars()`` - dictionary
Returns a dictionary of form variables that were submitted in the request body via ``POST`` using ``application/x-www-form-urlencoded`` encoding. For multipart forms or file uploads, use ``request.form()`` instead.
``await request.post_vars()`` - MultiParams
Returns a :ref:`MultiParams <internals_multiparams>` object of form variables that were submitted in the request body via ``POST`` using ``application/x-www-form-urlencoded`` encoding. This has the same shape as ``request.args``, so use ``.getlist(key)`` to retrieve every value submitted for keys with multiple values (such as ``<select multiple>`` fields). For multipart forms or file uploads, use ``request.form()`` instead.
``await request.post_body()`` - bytes
Returns the un-parsed body of a request submitted by ``POST`` - useful for things like incoming JSON data.

View file

@ -237,7 +237,8 @@ def register_routes():
if request.method == "GET":
return Response.html(request.scope["csrftoken"]())
else:
return Response.json(await request.post_vars())
# post_vars() returns a MultiParams; convert to a plain dict for JSON
return Response.json(dict(await request.post_vars()))
async def csrftoken_form(request, datasette):
return Response.html(

View file

@ -3,8 +3,7 @@ import json
import pytest
@pytest.mark.asyncio
async def test_request_post_vars():
def _post_request(body: bytes) -> Request:
scope = {
"http_version": "1.1",
"method": "POST",
@ -19,12 +18,44 @@ async def test_request_post_vars():
async def receive():
return {
"type": "http.request",
"body": b"foo=bar&baz=1&empty=",
"body": body,
"more_body": False,
}
request = Request(scope, receive)
assert {"foo": "bar", "baz": "1", "empty": ""} == await request.post_vars()
return Request(scope, receive)
@pytest.mark.asyncio
async def test_request_post_vars():
request = _post_request(b"foo=bar&baz=1&empty=")
post_vars = await request.post_vars()
assert post_vars["foo"] == "bar"
assert post_vars["baz"] == "1"
assert post_vars["empty"] == ""
assert post_vars.get("missing") is None
assert set(post_vars.keys()) == {"foo", "baz", "empty"}
assert dict(post_vars.items()) == {"foo": "bar", "baz": "1", "empty": ""}
@pytest.mark.asyncio
async def test_request_post_vars_multi():
# post_vars() returns a MultiParams so multiple values for the same key are
# preserved, matching the behaviour of request.args. See issue #2425.
request = _post_request(b"multi=1&multi=2&single=3")
post_vars = await request.post_vars()
assert post_vars.get("multi") == "1"
assert post_vars.get("single") == "3"
assert post_vars["multi"] == "1"
assert post_vars["single"] == "3"
assert post_vars.getlist("multi") == ["1", "2"]
assert post_vars.getlist("single") == ["3"]
assert post_vars.getlist("missing") == []
assert "multi" in post_vars
assert "missing" not in post_vars
assert list(post_vars.keys()) == ["multi", "single"]
assert len(post_vars) == 2
with pytest.raises(KeyError):
post_vars["missing"]
@pytest.mark.asyncio