docs/reference/adapter/pyramid/handler.html
def to_bolt_request(request: pyramid.request.Request) ‑> BoltRequest#Expand source code
def to_bolt_request(request: Request) -> BoltRequest:
body: str = ""
if request.body is not None:
if isinstance(request.body, bytes):
body = request.body.decode("utf-8")
else:
body = request.body
bolt_req = BoltRequest(
body=body,
query=request.query_string,
headers=request.headers,
)
return bolt_req
def to_pyramid_response(bolt_resp: BoltResponse) ‑> pyramid.response.Response#Expand source code
def to_pyramid_response(bolt_resp: BoltResponse) -> Response:
headers: List[Tuple[str, str]] = []
for k, vs in bolt_resp.headers.items():
for v in vs:
headers.append((k, v))
return Response(
status=bolt_resp.status,
body=bolt_resp.body or "",
headerlist=headers,
charset="utf-8",
)
class SlackRequestHandler (app: App)#Expand source code
class SlackRequestHandler:
def __init__ (self, app: App):
self.app = app
def handle(self, request: Request) -> Response:
if request.method == "GET":
if self.app.oauth_flow is not None:
oauth_flow: OAuthFlow = self.app.oauth_flow
if request.path == oauth_flow.install_path:
bolt_req = _attach_pyramid_request_to_context(to_bolt_request(request), request)
bolt_resp = oauth_flow.handle_installation(bolt_req)
return to_pyramid_response(bolt_resp)
elif request.path == oauth_flow.redirect_uri_path:
bolt_req = _attach_pyramid_request_to_context(to_bolt_request(request), request)
bolt_resp = oauth_flow.handle_callback(bolt_req)
return to_pyramid_response(bolt_resp)
elif request.method == "POST":
bolt_req = _attach_pyramid_request_to_context(to_bolt_request(request), request)
bolt_resp = self.app.dispatch(bolt_req)
return to_pyramid_response(bolt_resp)
return Response(status=404, body="Not found")
def handle(self, request: pyramid.request.Request) ‑> pyramid.response.Response#Expand source code
def handle(self, request: Request) -> Response:
if request.method == "GET":
if self.app.oauth_flow is not None:
oauth_flow: OAuthFlow = self.app.oauth_flow
if request.path == oauth_flow.install_path:
bolt_req = _attach_pyramid_request_to_context(to_bolt_request(request), request)
bolt_resp = oauth_flow.handle_installation(bolt_req)
return to_pyramid_response(bolt_resp)
elif request.path == oauth_flow.redirect_uri_path:
bolt_req = _attach_pyramid_request_to_context(to_bolt_request(request), request)
bolt_resp = oauth_flow.handle_callback(bolt_req)
return to_pyramid_response(bolt_resp)
elif request.method == "POST":
bolt_req = _attach_pyramid_request_to_context(to_bolt_request(request), request)
bolt_resp = self.app.dispatch(bolt_req)
return to_pyramid_response(bolt_resp)
return Response(status=404, body="Not found")