Add StanzaTimeInfo for <delay> (XEP-0203)
This commit is contained in:
parent
a21cd76b5d
commit
3d9bdd6fe2
8 changed files with 114 additions and 18 deletions
|
|
@ -14,6 +14,7 @@ license = "MPL-2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
chrono = "0.4"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
tokio = { version = "1", features = ["fs"] }
|
tokio = { version = "1", features = ["fs"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
|
||||||
|
|
@ -52,8 +52,8 @@ async fn main() -> Result<(), Option<()>> {
|
||||||
Event::ContactChanged(contact) => {
|
Event::ContactChanged(contact) => {
|
||||||
println!("Contact {} changed.", contact.jid);
|
println!("Contact {} changed.", contact.jid);
|
||||||
}
|
}
|
||||||
Event::ChatMessage(_id, jid, body) => {
|
Event::ChatMessage(_id, jid, body, time_info) => {
|
||||||
println!("Message from {}: {}", jid, body.0);
|
println!("Message from {} at {}: {}", jid, time_info.received, body.0);
|
||||||
}
|
}
|
||||||
Event::JoinRoom(jid, conference) => {
|
Event::JoinRoom(jid, conference) => {
|
||||||
println!("Joining room {} ({:?})…", jid, conference.name);
|
println!("Joining room {} ({:?})…", jid, conference.name);
|
||||||
|
|
@ -82,8 +82,11 @@ async fn main() -> Result<(), Option<()>> {
|
||||||
Event::RoomLeft(jid) => {
|
Event::RoomLeft(jid) => {
|
||||||
println!("Left room {}.", jid);
|
println!("Left room {}.", jid);
|
||||||
}
|
}
|
||||||
Event::RoomMessage(_id, jid, nick, body) => {
|
Event::RoomMessage(_id, jid, nick, body, time_info) => {
|
||||||
println!("Message in room {} from {}: {}", jid, nick, body.0);
|
println!(
|
||||||
|
"Message in room {} from {} at {}: {}",
|
||||||
|
jid, nick, time_info.received, body.0
|
||||||
|
);
|
||||||
}
|
}
|
||||||
Event::AvatarRetrieved(jid, path) => {
|
Event::AvatarRetrieved(jid, path) => {
|
||||||
println!("Received avatar for {} in {}.", jid, path);
|
println!("Received avatar for {} in {}.", jid, path);
|
||||||
|
|
|
||||||
65
xmpp/src/delay.rs
Normal file
65
xmpp/src/delay.rs
Normal file
|
|
@ -0,0 +1,65 @@
|
||||||
|
// Copyright (c) 2023 xmpp-rs contributors.
|
||||||
|
//
|
||||||
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
use chrono::{DateTime, Utc};
|
||||||
|
use tokio_xmpp::{
|
||||||
|
parsers::{delay::Delay, message::Message, ns},
|
||||||
|
Jid,
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Time information associated with a stanza.
|
||||||
|
///
|
||||||
|
/// Contains information about when the message was received, and any claim about when it was sent.
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct StanzaTimeInfo {
|
||||||
|
/// Time information when the message was received by the library
|
||||||
|
pub received: DateTime<Utc>,
|
||||||
|
|
||||||
|
/// Time information claimed by the sender or an intermediary.
|
||||||
|
///
|
||||||
|
/// **Warning**: this has security implications. See [XEP-0203 security section](https://xmpp.org/extensions/xep-0203.html#security).
|
||||||
|
pub delays: Vec<Delay>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl StanzaTimeInfo {
|
||||||
|
pub fn delay_from(&self, jid: &Jid) -> Option<&Delay> {
|
||||||
|
self.delays.iter().find(|delay| {
|
||||||
|
if let Some(from) = &delay.from {
|
||||||
|
return from == jid;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Parsing a [`Message`], store the current time it was processed, as well [XEP-0203](https://xmpp.org/extensions/xep-0203.html#protocol)
|
||||||
|
/// [`Delay`] contained in the message's payloads.
|
||||||
|
///
|
||||||
|
/// Specifically, this method will look for any <delay/> element in the message's payloads. If they were found,
|
||||||
|
/// they will be added to the [`StanzaTimeInfo`] result.
|
||||||
|
pub fn message_time_info(message: &Message) -> StanzaTimeInfo {
|
||||||
|
let mut delays = vec![];
|
||||||
|
|
||||||
|
// Scan the message payloads for XEP-0203 delays.
|
||||||
|
for payload in &message.payloads {
|
||||||
|
if payload.is("delay", ns::DELAY) {
|
||||||
|
match Delay::try_from(payload.clone()) {
|
||||||
|
Ok(delay) => delays.push(delay),
|
||||||
|
Err(e) => {
|
||||||
|
error!("Wrong <delay> format in payload from {}:{}\n{:?}\nUsing received time only.",
|
||||||
|
message.from.as_ref().unwrap().to_owned(),
|
||||||
|
e,
|
||||||
|
payload);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
StanzaTimeInfo {
|
||||||
|
received: Utc::now(),
|
||||||
|
delays,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
use tokio_xmpp::parsers::{bookmarks2, message::Body, roster::Item as RosterItem, BareJid, Jid};
|
use tokio_xmpp::parsers::{bookmarks2, message::Body, roster::Item as RosterItem, BareJid, Jid};
|
||||||
|
|
||||||
use crate::{Error, Id, RoomNick};
|
use crate::{delay::StanzaTimeInfo, Error, Id, RoomNick};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum Event {
|
pub enum Event {
|
||||||
|
|
@ -17,21 +17,26 @@ pub enum Event {
|
||||||
ContactChanged(RosterItem),
|
ContactChanged(RosterItem),
|
||||||
#[cfg(feature = "avatars")]
|
#[cfg(feature = "avatars")]
|
||||||
AvatarRetrieved(Jid, String),
|
AvatarRetrieved(Jid, String),
|
||||||
ChatMessage(Id, BareJid, Body),
|
/// A chat message was received. It may have been delayed on the network.
|
||||||
|
/// - The [`Id`] is a unique identifier for this message.
|
||||||
|
/// - The [`BareJid`] is the sender's JID.
|
||||||
|
/// - The [`Body`] is the message body.
|
||||||
|
/// - The [`StanzaTimeInfo`] about when message was received, and when the message was claimed sent.
|
||||||
|
ChatMessage(Id, BareJid, Body, StanzaTimeInfo),
|
||||||
JoinRoom(BareJid, bookmarks2::Conference),
|
JoinRoom(BareJid, bookmarks2::Conference),
|
||||||
LeaveRoom(BareJid),
|
LeaveRoom(BareJid),
|
||||||
LeaveAllRooms,
|
LeaveAllRooms,
|
||||||
RoomJoined(BareJid),
|
RoomJoined(BareJid),
|
||||||
RoomLeft(BareJid),
|
RoomLeft(BareJid),
|
||||||
RoomMessage(Id, BareJid, RoomNick, Body),
|
RoomMessage(Id, BareJid, RoomNick, Body, StanzaTimeInfo),
|
||||||
/// The subject of a room was received.
|
/// The subject of a room was received.
|
||||||
/// - The BareJid is the room's address.
|
/// - The BareJid is the room's address.
|
||||||
/// - The RoomNick is the nickname of the room member who set the subject.
|
/// - The RoomNick is the nickname of the room member who set the subject.
|
||||||
/// - The String is the new subject.
|
/// - The String is the new subject.
|
||||||
RoomSubject(BareJid, Option<RoomNick>, String),
|
RoomSubject(BareJid, Option<RoomNick>, String, StanzaTimeInfo),
|
||||||
/// A private message received from a room, containing the message ID, the room's BareJid,
|
/// A private message received from a room, containing the message ID, the room's BareJid,
|
||||||
/// the sender's nickname, and the message body.
|
/// the sender's nickname, and the message body.
|
||||||
RoomPrivateMessage(Id, BareJid, RoomNick, Body),
|
RoomPrivateMessage(Id, BareJid, RoomNick, Body, StanzaTimeInfo),
|
||||||
ServiceMessage(Id, BareJid, Body),
|
ServiceMessage(Id, BareJid, Body, StanzaTimeInfo),
|
||||||
HttpUploadedFile(String),
|
HttpUploadedFile(String),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ extern crate log;
|
||||||
|
|
||||||
pub mod agent;
|
pub mod agent;
|
||||||
pub mod builder;
|
pub mod builder;
|
||||||
|
pub mod delay;
|
||||||
pub mod disco;
|
pub mod disco;
|
||||||
pub mod event;
|
pub mod event;
|
||||||
pub mod event_loop;
|
pub mod event_loop;
|
||||||
|
|
|
||||||
|
|
@ -9,13 +9,14 @@ use tokio_xmpp::{
|
||||||
Jid,
|
Jid,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{Agent, Event};
|
use crate::{delay::StanzaTimeInfo, Agent, Event};
|
||||||
|
|
||||||
pub async fn handle_message_chat(
|
pub async fn handle_message_chat(
|
||||||
agent: &mut Agent,
|
agent: &mut Agent,
|
||||||
events: &mut Vec<Event>,
|
events: &mut Vec<Event>,
|
||||||
from: Jid,
|
from: Jid,
|
||||||
message: &Message,
|
message: &Message,
|
||||||
|
time_info: StanzaTimeInfo,
|
||||||
) {
|
) {
|
||||||
let langs: Vec<&str> = agent.lang.iter().map(String::as_str).collect();
|
let langs: Vec<&str> = agent.lang.iter().map(String::as_str).collect();
|
||||||
if let Some((_lang, body)) = message.get_best_body(langs) {
|
if let Some((_lang, body)) = message.get_best_body(langs) {
|
||||||
|
|
@ -27,13 +28,19 @@ pub async fn handle_message_chat(
|
||||||
Jid::Bare(bare) => {
|
Jid::Bare(bare) => {
|
||||||
// TODO: Can a service message be of type Chat/Normal and not Groupchat?
|
// TODO: Can a service message be of type Chat/Normal and not Groupchat?
|
||||||
warn!("Received misformed MessageType::Chat in muc#user namespace from a bare JID.");
|
warn!("Received misformed MessageType::Chat in muc#user namespace from a bare JID.");
|
||||||
Event::ServiceMessage(message.id.clone(), bare, body.clone())
|
Event::ServiceMessage(
|
||||||
|
message.id.clone(),
|
||||||
|
bare,
|
||||||
|
body.clone(),
|
||||||
|
time_info.clone(),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
Jid::Full(full) => Event::RoomPrivateMessage(
|
Jid::Full(full) => Event::RoomPrivateMessage(
|
||||||
message.id.clone(),
|
message.id.clone(),
|
||||||
full.to_bare(),
|
full.to_bare(),
|
||||||
full.resource_str().to_owned(),
|
full.resource_str().to_owned(),
|
||||||
body.clone(),
|
body.clone(),
|
||||||
|
time_info.clone(),
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -43,7 +50,8 @@ pub async fn handle_message_chat(
|
||||||
}
|
}
|
||||||
|
|
||||||
if !found_special_message {
|
if !found_special_message {
|
||||||
let event = Event::ChatMessage(message.id.clone(), from.to_bare(), body.clone());
|
let event =
|
||||||
|
Event::ChatMessage(message.id.clone(), from.to_bare(), body.clone(), time_info);
|
||||||
events.push(event);
|
events.push(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,13 +6,14 @@
|
||||||
|
|
||||||
use tokio_xmpp::{parsers::message::Message, Jid};
|
use tokio_xmpp::{parsers::message::Message, Jid};
|
||||||
|
|
||||||
use crate::{Agent, Event};
|
use crate::{delay::StanzaTimeInfo, Agent, Event};
|
||||||
|
|
||||||
pub async fn handle_message_group_chat(
|
pub async fn handle_message_group_chat(
|
||||||
agent: &mut Agent,
|
agent: &mut Agent,
|
||||||
events: &mut Vec<Event>,
|
events: &mut Vec<Event>,
|
||||||
from: Jid,
|
from: Jid,
|
||||||
message: &Message,
|
message: &Message,
|
||||||
|
time_info: StanzaTimeInfo,
|
||||||
) {
|
) {
|
||||||
let langs: Vec<&str> = agent.lang.iter().map(String::as_str).collect();
|
let langs: Vec<&str> = agent.lang.iter().map(String::as_str).collect();
|
||||||
|
|
||||||
|
|
@ -21,6 +22,7 @@ pub async fn handle_message_group_chat(
|
||||||
from.to_bare(),
|
from.to_bare(),
|
||||||
from.resource_str().map(String::from),
|
from.resource_str().map(String::from),
|
||||||
subject.0.clone(),
|
subject.0.clone(),
|
||||||
|
time_info.clone(),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -31,8 +33,11 @@ pub async fn handle_message_group_chat(
|
||||||
from.to_bare(),
|
from.to_bare(),
|
||||||
full.resource_str().to_owned(),
|
full.resource_str().to_owned(),
|
||||||
body.clone(),
|
body.clone(),
|
||||||
|
time_info,
|
||||||
),
|
),
|
||||||
Jid::Bare(bare) => Event::ServiceMessage(message.id.clone(), bare, body.clone()),
|
Jid::Bare(bare) => {
|
||||||
|
Event::ServiceMessage(message.id.clone(), bare, body.clone(), time_info)
|
||||||
|
}
|
||||||
};
|
};
|
||||||
events.push(event)
|
events.push(event)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ use tokio_xmpp::parsers::{
|
||||||
ns,
|
ns,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{pubsub, Agent, Event};
|
use crate::{delay::message_time_info, pubsub, Agent, Event};
|
||||||
|
|
||||||
pub mod chat;
|
pub mod chat;
|
||||||
pub mod group_chat;
|
pub mod group_chat;
|
||||||
|
|
@ -17,13 +17,21 @@ pub mod group_chat;
|
||||||
pub async fn handle_message(agent: &mut Agent, message: Message) -> Vec<Event> {
|
pub async fn handle_message(agent: &mut Agent, message: Message) -> Vec<Event> {
|
||||||
let mut events = vec![];
|
let mut events = vec![];
|
||||||
let from = message.from.clone().unwrap();
|
let from = message.from.clone().unwrap();
|
||||||
|
let time_info = message_time_info(&message);
|
||||||
|
|
||||||
match message.type_ {
|
match message.type_ {
|
||||||
MessageType::Groupchat => {
|
MessageType::Groupchat => {
|
||||||
group_chat::handle_message_group_chat(agent, &mut events, from.clone(), &message).await;
|
group_chat::handle_message_group_chat(
|
||||||
|
agent,
|
||||||
|
&mut events,
|
||||||
|
from.clone(),
|
||||||
|
&message,
|
||||||
|
time_info,
|
||||||
|
)
|
||||||
|
.await;
|
||||||
}
|
}
|
||||||
MessageType::Chat | MessageType::Normal => {
|
MessageType::Chat | MessageType::Normal => {
|
||||||
chat::handle_message_chat(agent, &mut events, from.clone(), &message).await;
|
chat::handle_message_chat(agent, &mut events, from.clone(), &message, time_info).await;
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue