|
| 1 | +from typing import Dict |
| 2 | +from typing import Optional |
| 3 | + |
| 4 | +from werkzeug.datastructures import Headers |
| 5 | +from werkzeug.datastructures import ImmutableMultiDict |
| 6 | + |
| 7 | +from openapi_core.contrib.aws.datatypes import APIGatewayEvent |
| 8 | +from openapi_core.contrib.aws.datatypes import APIGatewayEventV2 |
| 9 | +from openapi_core.contrib.aws.types import APIGatewayEventPayload |
| 10 | +from openapi_core.datatypes import RequestParameters |
| 11 | + |
| 12 | + |
| 13 | +class APIGatewayEventOpenAPIRequest: |
| 14 | + """ |
| 15 | + Converts an API Gateway event payload to an OpenAPI request. |
| 16 | +
|
| 17 | + Designed to be used with API Gateway REST API specification exports for |
| 18 | + integrations that use event v1 payload. Uses API Gateway event v1 httpMethod |
| 19 | + and path data. Requires APIGatewayPathFinder to resolve ANY methods. |
| 20 | + """ |
| 21 | + |
| 22 | + def __init__(self, payload: APIGatewayEventPayload): |
| 23 | + self.event = APIGatewayEvent(**payload) |
| 24 | + |
| 25 | + self.parameters = RequestParameters( |
| 26 | + path=self.path_params, |
| 27 | + query=ImmutableMultiDict(self.query_params), |
| 28 | + header=Headers(self.event.headers), |
| 29 | + cookie=ImmutableMultiDict(), |
| 30 | + ) |
| 31 | + |
| 32 | + @property |
| 33 | + def path_params(self) -> Dict[str, str]: |
| 34 | + params = self.event.pathParameters |
| 35 | + if params is None: |
| 36 | + return {} |
| 37 | + return params |
| 38 | + |
| 39 | + @property |
| 40 | + def query_params(self) -> Dict[str, str]: |
| 41 | + params = self.event.queryStringParameters |
| 42 | + if params is None: |
| 43 | + return {} |
| 44 | + return params |
| 45 | + |
| 46 | + @property |
| 47 | + def proto(self) -> str: |
| 48 | + return self.event.headers.get("X-Forwarded-Proto", "https") |
| 49 | + |
| 50 | + @property |
| 51 | + def host(self) -> str: |
| 52 | + return self.event.headers["Host"] |
| 53 | + |
| 54 | + @property |
| 55 | + def host_url(self) -> str: |
| 56 | + return "://".join([self.proto, self.host]) |
| 57 | + |
| 58 | + @property |
| 59 | + def path(self) -> str: |
| 60 | + return self.event.path |
| 61 | + |
| 62 | + @property |
| 63 | + def method(self) -> str: |
| 64 | + return self.event.httpMethod.lower() |
| 65 | + |
| 66 | + @property |
| 67 | + def body(self) -> Optional[str]: |
| 68 | + return self.event.body |
| 69 | + |
| 70 | + @property |
| 71 | + def mimetype(self) -> str: |
| 72 | + return self.event.headers.get("Content-Type", "") |
| 73 | + |
| 74 | + |
| 75 | +class APIGatewayEventV2OpenAPIRequest: |
| 76 | + """ |
| 77 | + Converts an API Gateway event v2 payload to an OpenAPI request. |
| 78 | +
|
| 79 | + Designed to be used with API Gateway HTTP API specification exports for |
| 80 | + integrations that use event v2 payload. Uses API Gateway event v2 routeKey |
| 81 | + and rawPath data. Requires APIGatewayPathFinder to resolve ANY methods. |
| 82 | +
|
| 83 | + .. note:: |
| 84 | + API Gateway HTTP APIs don't support request validation |
| 85 | + """ |
| 86 | + |
| 87 | + def __init__(self, payload: APIGatewayEventPayload): |
| 88 | + self.event = APIGatewayEventV2(**payload) |
| 89 | + |
| 90 | + self.parameters = RequestParameters( |
| 91 | + path=self.path_params, |
| 92 | + query=ImmutableMultiDict(self.query_params), |
| 93 | + header=Headers(self.event.headers), |
| 94 | + cookie=ImmutableMultiDict(), |
| 95 | + ) |
| 96 | + |
| 97 | + @property |
| 98 | + def path_params(self) -> Dict[str, str]: |
| 99 | + if self.event.pathParameters is None: |
| 100 | + return {} |
| 101 | + return self.event.pathParameters |
| 102 | + |
| 103 | + @property |
| 104 | + def query_params(self) -> Dict[str, str]: |
| 105 | + if self.event.queryStringParameters is None: |
| 106 | + return {} |
| 107 | + return self.event.queryStringParameters |
| 108 | + |
| 109 | + @property |
| 110 | + def proto(self) -> str: |
| 111 | + return self.event.headers.get("x-forwarded-proto", "https") |
| 112 | + |
| 113 | + @property |
| 114 | + def host(self) -> str: |
| 115 | + return self.event.headers["host"] |
| 116 | + |
| 117 | + @property |
| 118 | + def host_url(self) -> str: |
| 119 | + return "://".join([self.proto, self.host]) |
| 120 | + |
| 121 | + @property |
| 122 | + def path(self) -> str: |
| 123 | + return self.event.rawPath |
| 124 | + |
| 125 | + @property |
| 126 | + def method(self) -> str: |
| 127 | + return self.event.routeKey.split(" ")[0].lower() |
| 128 | + |
| 129 | + @property |
| 130 | + def body(self) -> Optional[str]: |
| 131 | + return self.event.body |
| 132 | + |
| 133 | + @property |
| 134 | + def mimetype(self) -> str: |
| 135 | + return self.event.headers.get("content-type", "") |
| 136 | + |
| 137 | + |
| 138 | +class APIGatewayEventV2HTTPOpenAPIRequest(APIGatewayEventV2OpenAPIRequest): |
| 139 | + """ |
| 140 | + Converts an API Gateway event v2 payload to an OpenAPI request. |
| 141 | +
|
| 142 | + Uses http integration path and method data. |
| 143 | + """ |
| 144 | + |
| 145 | + @property |
| 146 | + def path(self) -> str: |
| 147 | + return self.event.http.path |
| 148 | + |
| 149 | + @property |
| 150 | + def method(self) -> str: |
| 151 | + return self.event.http.method.lower() |
0 commit comments