xmpp/message/receive/
mod.rs

1// Copyright (c) 2023 xmpp-rs contributors.
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7use tokio_xmpp::parsers::{
8    message::{Message, MessageType},
9    ns,
10};
11
12use crate::{delay::message_time_info, pubsub, Agent, Event};
13
14pub mod chat;
15pub mod group_chat;
16
17pub async fn handle_message(agent: &mut Agent, mut message: Message) -> Vec<Event> {
18    let mut events = vec![];
19    let from = message.from.clone().unwrap();
20    let time_info = message_time_info(&message);
21
22    match message.type_ {
23        MessageType::Groupchat => {
24            group_chat::handle_message_group_chat(
25                agent,
26                &mut events,
27                from.clone(),
28                &mut message,
29                time_info,
30            )
31            .await;
32        }
33        MessageType::Chat | MessageType::Normal => {
34            chat::handle_message_chat(agent, &mut events, from.clone(), &mut message, time_info)
35                .await;
36        }
37        _ => {}
38    }
39
40    // TODO: should this be here or in specific branch of messagetype?
41    // We may drop some payloads in branches before (&mut message), but
42    // that's ok because pubsub only wants the pubsub payload.
43    for child in message.payloads {
44        if child.is("event", ns::PUBSUB_EVENT) {
45            let new_events = pubsub::handle_event(&from, child, agent).await;
46            events.extend(new_events);
47        }
48    }
49
50    events
51}