poem-web / poem

A full-featured and easy-to-use web framework with the Rust programming language.
Apache License 2.0
3.49k stars 283 forks source link

Why not rely on serde for `poem_openapi::Object` serializations instead of a custom implementation? #723

Open kik4444 opened 8 months ago

kik4444 commented 8 months ago

Recently I was evaluating using poem-openapi instead of axum with utoipa, but ultimately went with the latter because of utoipa's integration with serde.

Just as an example, I have a struct which is parsed from a toml file, so it must derive serde's Deserialize. I also want to return this struct from an API in JSON format, but I want a specific field to be serialized differently to hide the actual value. Normally I would also derive serde's Serialize and put a #[serde(serialize_with = "...")] field parameter above the struct's field. Since I want to return this struct from an API and generate OpenAPI documentation for it, I also derive poem_openapi::Object.

Unfortunately, this led me to realize that Object implements its own serialization which does not rely on serde, meaning that my serialize_with was ignored.

This also means that if I have a struct which I want to serialize and deserialize with serde (e.g. between yaml, toml) and return from an API with poem-openapi, I would have to duplicate macro field parameters like #[serde(default = "abc")] with #[oai(default = "abc")] and if there is no oai equivalent like for serialize_with then I'm screwed.

So why doesn't poem_openapi::Object integrate with serde instead of doing its own thing and re-implementing some of its functionality? For example utoipa provides serde integration and if a struct field has #[serde(default)] on it then the field is marked as not required in the OpenAPI documentation (though if you want the documentation to show what the default value is you'd have to additionally write #[schema(default = "...")]).

I believe such an integration would also solve #585, at least as far as parsing is concerned. The actual OpenAPI documentation would likely still require additional impls

NexRX commented 8 months ago

I've wondered to if its possible but i've assumed its because some parts of serde can't be supported because they would create differences between the OpenAPI doc generated and the data serialized. E.g. #[serde(serialize_with = "...")] would change the field's serialized type and it might not be easy (assuming possible) to follow the attribute path and use the MetaSchema for the serialized type instead.

attila-lin commented 7 months ago

maybe https://github.com/poem-web/poem/issues/362#issuecomment-1210088259