aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/auth/requests.py
blob: 01ff76579f2a3101adc337e136f27e9014ac7252 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""Utilities to deal with requests."""
from flask import request

def request_json() -> dict:
    """Retrieve the JSON sent in a request."""
    if request.headers.get("Content-Type") == "application/json":
        # KLUDGE: We have this check here since request.json has the
        # type Any | None; see:
        # <https://github.com/pallets/werkzeug/blob/7868bef5d978093a8baa0784464ebe5d775ae92a/src/werkzeug/wrappers/request.py#L545>
        return request.json or {}
    else:
        return dict(request.args) or dict(request.form) or {}