spruceid / siwe-py

A Python implementation of Sign-In with Ethereum
https://login.xyz
Apache License 2.0
66 stars 28 forks source link

Refactor CustomDateField #50

Closed ameyarao98 closed 3 months ago

ameyarao98 commented 1 year ago

The current implementation is a bit hacky, and would not work with pydantic v2. It could be made into a datetime object, which Pydantic can parse from various formats,making it easier to create a message if not using a string. There should still however be a manual check when parsed from a string that it fits the ISO standard. Some custom logic (or someting in dateutil?) may be needed to turn the datetime into the proper format

fubuloubu commented 4 months ago

I have been using this w/ Pydantic V2:

def iso_format(dt: datetime) -> str:
    return dt.isoformat()

UTCTimestamp = Annotated[
    datetime,
    PlainSerializer(iso_format, return_type=str),
]

You can add a PlainValidator for help in converting to the proper iso string


Edit: You might also have to add WithJsonSchema to the annotation to get it to work well with OpenAPI schema generation