Source code for harp.asgi.bridge.requests

from typing import Optional
from urllib.parse import parse_qsl

from asgiref.typing import ASGIReceiveCallable, HTTPScope
from httpx import AsyncByteStream
from multidict import CIMultiDict, MultiDict

from harp.asgi.bridge.streams import AsyncStreamFromAsgiReceive
from harp.http import HttpRequestBridge

_default_host = (None, None)


[docs] class HttpRequestAsgiBridge(HttpRequestBridge): """Actually implements the getters required by HttpRequest using the asgi scope and receive callable. It is still an early implementation and will need to support streaming requests in the future. """
[docs] def __init__(self, scope: HTTPScope, receive: ASGIReceiveCallable): """ :param scope: see https://asgi.readthedocs.io/en/latest/specs/www.html#http-connection-scope :param receive: """ self.asgi_scope = scope self.asgi_receive = receive self._closed = False
[docs] def get_server_ipaddr(self) -> Optional[str]: """Get the server IP address from asgi scope.""" try: return (self.asgi_scope.get("server", _default_host) or _default_host)[0] except IndexError: return None
[docs] def get_server_port(self) -> Optional[int]: """Get the server port from asgi scope.""" try: return (self.asgi_scope.get("server", _default_host) or _default_host)[1] except IndexError: return None
[docs] def get_method(self) -> str: """Get the HTTP method from asgi scope.""" return self.asgi_scope.get("method", None)
[docs] def get_path(self) -> str: """Get the HTTP path from asgi scope (/foo/bar), without the query string part.""" if "raw_path" in self.asgi_scope: return self.asgi_scope["raw_path"].decode("utf-8") return self.asgi_scope.get("path", "/")
[docs] def get_query(self) -> MultiDict: """Get the query string from asgi scope, as a multidict.""" return MultiDict( parse_qsl( self.asgi_scope.get("query_string", b"").decode("utf-8"), keep_blank_values=True, ) )
[docs] def get_headers(self) -> CIMultiDict: """Get the headers from asgi scope, as a case-insensitive multidict.""" headers = CIMultiDict() for name, value in self.asgi_scope.get("headers", []): headers.add(name.decode("utf-8"), value.decode("utf-8")) return headers
[docs] def get_stream(self) -> AsyncByteStream: """Get the request body stream from asgi receive callable.""" return AsyncStreamFromAsgiReceive(self.asgi_receive)