Merge pull request #1161 from LasterAlex/fix-vec-msg-ids-serialization

Fix Vec<MessageId> serialization
This commit is contained in:
Сырцев Вадим Игоревич 2024-08-30 06:31:10 +00:00 committed by GitHub
commit 4b4dd29d99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 42 additions and 0 deletions

View file

@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Some dependencies was bumped: `sqlx` to `0.8.1`, `tower` to `0.5.0`, `reqwest` to `0.12.7`
- `tokio` version was explicitly specified as `1.39`
### Fixed
- Now Vec<MessageId> in requests serializes into [number] instead of [ {message_id: number} ], `forward_messages`, `copy_messages` and `delete_messages` now work properly
[pr1147]: https://github.com/teloxide/teloxide/pull/1147
## 0.13.0 - 2024-08-16

View file

@ -223,6 +223,9 @@ fn params(params: impl Iterator<Item = impl Borrow<Param>>) -> String {
{
"\n #[serde(flatten)]"
}
Type::ArrayOf(b) if **b == Type::RawTy("MessageId".to_string()) => {
"\n #[serde(with = \"crate::types::vec_msg_id_as_vec_int\")]"
}
_ => "",
};
let with = match ty {

View file

@ -17,6 +17,7 @@ impl_payload! {
/// Unique identifier for the chat where the original message was sent (or channel username in the format `@channelusername`)
pub from_chat_id: Recipient [into],
/// Identifiers of 1-100 messages in the chat _from\_chat\_id_ to copy. The identifiers must be specified in a strictly increasing order.
#[serde(with = "crate::types::vec_msg_id_as_vec_int")]
pub message_ids: Vec<MessageId> [collect],
}
optional {

View file

@ -14,6 +14,7 @@ impl_payload! {
/// Identifiers of 1-100 messages to delete. See [`DeleteMessage`] for limitations on which messages can be deleted
///
/// [`DeleteMessage`]: crate::payloads::DeleteMessage
#[serde(with = "crate::types::vec_msg_id_as_vec_int")]
pub message_ids: Vec<MessageId> [collect],
}
}

View file

@ -16,6 +16,7 @@ impl_payload! {
/// Unique identifier for the chat where the original message was sent (or channel username in the format `@channelusername`)
pub from_chat_id: Recipient [into],
/// A JSON-serialized list of 1-100 identifiers of messages in the chat _from\_chat\_id_ to forward. The identifiers must be specified in a strictly increasing order.
#[serde(with = "crate::types::vec_msg_id_as_vec_int")]
pub message_ids: Vec<MessageId> [collect],
}
optional {

View file

@ -546,3 +546,35 @@ pub(crate) mod option_msg_id_as_int {
}
}
}
pub(crate) mod vec_msg_id_as_vec_int {
use crate::types::MessageId;
use serde::{ser::SerializeSeq, Serializer};
pub(crate) fn serialize<S>(msg_ids: &Vec<MessageId>, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut seq = serializer.serialize_seq(Some(msg_ids.len()))?;
for e in msg_ids {
seq.serialize_element(&e.0)?;
}
seq.end()
}
#[test]
fn test() {
#[derive(serde::Serialize)]
struct Struct {
#[serde(with = "crate::types::vec_msg_id_as_vec_int")]
msg_ids: Vec<MessageId>,
}
{
let s = Struct { msg_ids: vec![MessageId(1), MessageId(2)] };
let json = serde_json::to_string(&s).unwrap();
assert_eq!(json, "{\"msg_ids\":[1,2]}");
}
}
}