summaryrefslogtreecommitdiff
path: root/louloulibs
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2016-08-22 00:44:17 +0200
committerlouiz’ <louiz@louiz.org>2016-08-22 00:44:17 +0200
commitd1626c929f1d313c2f0f85b7d8b756a8d488d1dc (patch)
treec3f4e4c18fbd69cf119d09e51f9c43b9da932b87 /louloulibs
parent593b3268273cac2fa58257ee8e51ce1a6de30872 (diff)
downloadbiboumi-d1626c929f1d313c2f0f85b7d8b756a8d488d1dc.tar.gz
biboumi-d1626c929f1d313c2f0f85b7d8b756a8d488d1dc.tar.bz2
biboumi-d1626c929f1d313c2f0f85b7d8b756a8d488d1dc.tar.xz
biboumi-d1626c929f1d313c2f0f85b7d8b756a8d488d1dc.zip
When joining a channel, send the most recent history found in the database
Diffstat (limited to 'louloulibs')
-rw-r--r--louloulibs/xmpp/xmpp_component.cpp28
-rw-r--r--louloulibs/xmpp/xmpp_component.hpp5
2 files changed, 33 insertions, 0 deletions
diff --git a/louloulibs/xmpp/xmpp_component.cpp b/louloulibs/xmpp/xmpp_component.cpp
index e87cdf7..22121f6 100644
--- a/louloulibs/xmpp/xmpp_component.cpp
+++ b/louloulibs/xmpp/xmpp_component.cpp
@@ -16,6 +16,9 @@
#include <uuid.h>
+#include <cstdlib>
+#include <iomanip>
+
#include <louloulibs.h>
#ifdef SYSTEMD_FOUND
# include <systemd/sd-daemon.h>
@@ -426,6 +429,31 @@ void XmppComponent::send_muc_message(const std::string& muc_name, const std::str
this->send_stanza(message);
}
+void XmppComponent::send_history_message(const std::string& muc_name, const std::string& nick, const std::string& body_txt, const std::string& jid_to, std::time_t timestamp)
+{
+ Stanza message("message");
+ message["to"] = jid_to;
+ if (!nick.empty())
+ message["from"] = muc_name + "@" + this->served_hostname + "/" + nick;
+ else
+ message["from"] = muc_name + "@" + this->served_hostname;
+ message["type"] = "groupchat";
+
+ XmlNode body("body");
+ body.set_inner(body_txt);
+ message.add_child(std::move(body));
+
+ XmlNode delay("delay");
+ delay["xmlns"] = "urn:xmpp:delay";
+ delay["from"] = muc_name + "@" + this->served_hostname;
+ std::stringstream date_ss;
+ date_ss << std::put_time(std::gmtime(&timestamp), "%FT%Tz") << std::endl;
+ delay["stamp"] = date_ss.str();
+
+ message.add_child(std::move(delay));
+ this->send_stanza(message);
+}
+
void XmppComponent::send_muc_leave(const std::string& muc_name, std::string&& nick, Xmpp::body&& message, const std::string& jid_to, const bool self)
{
Stanza presence("presence");
diff --git a/louloulibs/xmpp/xmpp_component.hpp b/louloulibs/xmpp/xmpp_component.hpp
index 5fc6d2e..3a3b10b 100644
--- a/louloulibs/xmpp/xmpp_component.hpp
+++ b/louloulibs/xmpp/xmpp_component.hpp
@@ -135,6 +135,11 @@ public:
*/
void send_muc_message(const std::string& muc_name, const std::string& nick, Xmpp::body&& body, const std::string& jid_to);
/**
+ * Send a message, with a <delay/> element, part of a MUC history
+ */
+ void send_history_message(const std::string& muc_name, const std::string& nick, const std::string& body,
+ const std::string& jid_to, const std::time_t timestamp);
+ /**
* Send an unavailable presence for this nick
*/
void send_muc_leave(const std::string& muc_name, std::string&& nick, Xmpp::body&& message, const std::string& jid_to, const bool self);