summaryrefslogtreecommitdiffstats
blob: 087dece86d5c712f071d87e0e786fa4c266b3a15 (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
38
39
40
41
42
43
44
45
/*
 * Copyright (c) 2010 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "Swiften/Serializer/PayloadSerializers/MUCPayloadSerializer.h"

#include "Swiften/Serializer/XML/XMLElement.h"

namespace Swift {

MUCPayloadSerializer::MUCPayloadSerializer() : GenericPayloadSerializer<MUCPayload>() {
}

String MUCPayloadSerializer::serializePayload(boost::shared_ptr<MUCPayload> muc)  const {
	XMLElement mucElement("x", "http://jabber.org/protocol/muc");
	boost::shared_ptr<XMLElement> historyElement(new XMLElement("history"));
	bool history = false;
	if (muc->getMaxChars() >= 0) {
		historyElement->setAttribute("maxchars", boost::lexical_cast<std::string>(muc->getMaxChars()));
		history = true;
	}
	if (muc->getMaxStanzas() >= 0) {
		historyElement->setAttribute("maxstanzas", boost::lexical_cast<std::string>(muc->getMaxStanzas()));
		history = true;
	}
	if (muc->getSeconds() >= 0) {
		historyElement->setAttribute("seconds", boost::lexical_cast<std::string>(muc->getSeconds()));
		history = true;
	}
	if (muc->getSince() != boost::posix_time::not_a_date_time) {
		String sinceString = String(boost::posix_time::to_iso_extended_string(muc->getSince()));
		sinceString.replaceAll(',', ".");
		sinceString += "Z";
		historyElement->setAttribute("since", sinceString);
		history = true;
	}
	if (history) {
		mucElement.addNode(historyElement);
	}
	return mucElement.serialize();
}

}