diff options
author | Peter Powell <petpow@saberuk.com> | 2019-06-07 13:32:56 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-06-07 20:22:43 +0100 |
commit | 638e4bb417ebcd4f0a384ac19585620b0fde1569 (patch) | |
tree | 2a7e23824ed453e4b159852fa24326410f603b31 /src/modules/m_ircv3_msgid.cpp | |
parent | ca161e8637384af9ba7e437c1e45611560517fdf (diff) |
Add the msgid tag to all outgoing messages.
Diffstat (limited to 'src/modules/m_ircv3_msgid.cpp')
-rw-r--r-- | src/modules/m_ircv3_msgid.cpp | 58 |
1 files changed, 31 insertions, 27 deletions
diff --git a/src/modules/m_ircv3_msgid.cpp b/src/modules/m_ircv3_msgid.cpp index 4d34455b9..00854a19c 100644 --- a/src/modules/m_ircv3_msgid.cpp +++ b/src/modules/m_ircv3_msgid.cpp @@ -22,18 +22,49 @@ #include "modules/cap.h" #include "modules/ctctags.h" +class MsgIdGenerator +{ + uint64_t counter; + std::string strid; + const std::string::size_type baselen; + + public: + MsgIdGenerator() + : counter(0) + , strid(InspIRCd::Format("%s~%lu~", ServerInstance->Config->GetSID().c_str(), ServerInstance->startup_time)) + , baselen(strid.length()) + { + } + + const std::string& GetNext() + { + strid.erase(baselen); + strid.append(ConvToStr(counter++)); + return strid; + } +}; + class MsgIdTag : public ClientProtocol::MessageTagProvider { private: Cap::Reference ctctagcap; public: + MsgIdGenerator generator; + MsgIdTag(Module* mod) : ClientProtocol::MessageTagProvider(mod) , ctctagcap(mod, "message-tags") { } + void OnPopulateTags(ClientProtocol::Message& msg) CXX11_OVERRIDE + { + const ClientProtocol::TagMap& tags = msg.GetTags(); + if (tags.find("msgid") == tags.end()) + msg.AddTag("msgid", this, generator.GetNext()); + } + ModResult OnProcessTag(User* user, const std::string& tagname, std::string& tagvalue) CXX11_OVERRIDE { if (!irc::equals(tagname, "msgid")) @@ -49,35 +80,12 @@ class MsgIdTag : public ClientProtocol::MessageTagProvider } }; -class MsgIdGenerator -{ - uint64_t counter; - std::string strid; - const std::string::size_type baselen; - - public: - MsgIdGenerator() - : counter(0) - , strid(InspIRCd::Format("%s~%lu~", ServerInstance->Config->GetSID().c_str(), ServerInstance->startup_time)) - , baselen(strid.length()) - { - } - - const std::string& GetNext() - { - strid.erase(baselen); - strid.append(ConvToStr(counter++)); - return strid; - } -}; - class ModuleMsgId : public Module , public CTCTags::EventListener { private: MsgIdTag tag; - MsgIdGenerator generator; ModResult CopyMessageId(const ClientProtocol::TagMap& tags_in, ClientProtocol::TagMap& tags_out) { @@ -87,11 +95,7 @@ class ModuleMsgId // If the remote server has sent a message identifier we should use that as // identifiers need to be the same on all sides of the network. tags_out.insert(*iter); - return MOD_RES_PASSTHRU; } - - // Otherwise, we can just create a new message identifier. - tags_out.insert(std::make_pair("msgid", ClientProtocol::MessageTagData(&tag, generator.GetNext()))); return MOD_RES_PASSTHRU; } |