blob: 3f79dfae6c23747e59bdac1f60ab983e80ea7883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* Copyright (c) 2017 Tarun Gupta
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#include <Swiften/Serializer/PayloadSerializers/MIXParticipantSerializer.h>
#include <memory>
#include <Swiften/Serializer/XML/XMLElement.h>
#include <Swiften/Serializer/XML/XMLRawTextNode.h>
#include <Swiften/Serializer/XML/XMLTextNode.h>
namespace Swift {
MIXParticipantSerializer::MIXParticipantSerializer() : GenericPayloadSerializer<MIXParticipant>() {
}
std::string MIXParticipantSerializer::serializePayload(std::shared_ptr<MIXParticipant> payload) const {
XMLElement participantElement("participant", "urn:xmpp:mix:0");
if (payload->getNick()) {
std::shared_ptr<XMLElement> nickElement = std::make_shared<XMLElement>("nick");
nickElement->addNode(std::make_shared<XMLTextNode>(*payload->getNick()));
participantElement.addNode(nickElement);
}
if (payload->getJID()) {
std::shared_ptr<XMLElement> jidElement = std::make_shared<XMLElement>("jid");
jidElement->addNode(std::make_shared<XMLTextNode>(*payload->getJID()));
participantElement.addNode(jidElement);
}
return participantElement.serialize();
}
}
|