Module slack_bolt.adapter.asgi.http_request

Expand source code
from typing import Callable, Dict, Union

from .utils import scope_type, ENCODING


class AsgiHttpRequest:
    __slots__ = ("receive", "query_string", "raw_headers")

    def __init__(self, scope: scope_type, receive: Callable):
        self.receive = receive
        self.query_string = str(scope["query_string"], ENCODING)
        self.raw_headers = scope["headers"]

    def get_headers(self) -> Dict[str, str]:
        return {str(header[0], ENCODING): str(header[1], (ENCODING)) for header in self.raw_headers}

    async def get_raw_body(self) -> str:
        chunks = bytearray()
        while True:
            chunk: Dict[str, Union[str, bytes]] = await self.receive()

            if chunk["type"] != "http.request":
                raise Exception("Body chunks could not be received from asgi server")

            chunks.extend(chunk.get("body", b""))
            if not chunk.get("more_body", False):
                break
        return bytes(chunks).decode(ENCODING)

Classes

class AsgiHttpRequest (scope: Dict[str, Union[str, bytes, Iterable[Tuple[bytes, bytes]]]], receive: Callable)
Expand source code
class AsgiHttpRequest:
    __slots__ = ("receive", "query_string", "raw_headers")

    def __init__(self, scope: scope_type, receive: Callable):
        self.receive = receive
        self.query_string = str(scope["query_string"], ENCODING)
        self.raw_headers = scope["headers"]

    def get_headers(self) -> Dict[str, str]:
        return {str(header[0], ENCODING): str(header[1], (ENCODING)) for header in self.raw_headers}

    async def get_raw_body(self) -> str:
        chunks = bytearray()
        while True:
            chunk: Dict[str, Union[str, bytes]] = await self.receive()

            if chunk["type"] != "http.request":
                raise Exception("Body chunks could not be received from asgi server")

            chunks.extend(chunk.get("body", b""))
            if not chunk.get("more_body", False):
                break
        return bytes(chunks).decode(ENCODING)

Instance variables

var query_string

Return an attribute of instance, which is of type owner.

var raw_headers

Return an attribute of instance, which is of type owner.

var receive

Return an attribute of instance, which is of type owner.

Methods

def get_headers(self) ‑> Dict[str, str]
Expand source code
def get_headers(self) -> Dict[str, str]:
    return {str(header[0], ENCODING): str(header[1], (ENCODING)) for header in self.raw_headers}
async def get_raw_body(self) ‑> str
Expand source code
async def get_raw_body(self) -> str:
    chunks = bytearray()
    while True:
        chunk: Dict[str, Union[str, bytes]] = await self.receive()

        if chunk["type"] != "http.request":
            raise Exception("Body chunks could not be received from asgi server")

        chunks.extend(chunk.get("body", b""))
        if not chunk.get("more_body", False):
            break
    return bytes(chunks).decode(ENCODING)