Skip to content

Commit 2fef9ca

Browse files
committed
Password format unmarshaller
1 parent 5a02484 commit 2fef9ca

File tree

6 files changed

+502
-484
lines changed

6 files changed

+502
-484
lines changed

openapi_core/unmarshalling/schemas/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from openapi_core.unmarshalling.schemas.unmarshallers import TypesUnmarshaller
1818
from openapi_core.unmarshalling.schemas.util import format_byte
1919
from openapi_core.unmarshalling.schemas.util import format_date
20+
from openapi_core.unmarshalling.schemas.util import format_password
2021
from openapi_core.unmarshalling.schemas.util import format_uuid
2122
from openapi_core.validation.schemas import (
2223
oas30_read_schema_validators_factory,
@@ -68,6 +69,7 @@
6869
"binary": bytes,
6970
"uuid": format_uuid,
7071
"byte": format_byte,
72+
"password": format_password,
7173
}
7274
oas31_format_unmarshallers = oas30_format_unmarshallers
7375

openapi_core/unmarshalling/schemas/util.py

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
from typing import Union
77
from uuid import UUID
88

9+
from pydantic import SecretStr
10+
911

1012
def format_date(value: str) -> date:
1113
return datetime.strptime(value, "%Y-%m-%d").date()
@@ -26,3 +28,7 @@ def format_number(value: str) -> Union[int, float]:
2628
return value
2729

2830
return float(value)
31+
32+
33+
def format_password(value: str) -> SecretStr:
34+
return SecretStr(value)

0 commit comments

Comments
 (0)