summaryrefslogtreecommitdiffstats
blob: 2c3dc06d9e9f5e1dddcdf0e60753a8a507ea9fcc (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
46
/*
 * Copyright (c) 2010 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <boost/smart_ptr/make_shared.hpp>

#include <Swiften/Serializer/PayloadSerializers/SecurityLabelsCatalogSerializer.h>
#include <Swiften/Base/foreach.h>
#include <Swiften/Serializer/XML/XMLElement.h>
#include <Swiften/Serializer/XML/XMLRawTextNode.h>
#include <Swiften/Serializer/PayloadSerializers/SecurityLabelSerializer.h>

namespace Swift {

SecurityLabelsCatalogSerializer::SecurityLabelsCatalogSerializer() : GenericPayloadSerializer<SecurityLabelsCatalog>() {
}

std::string SecurityLabelsCatalogSerializer::serializePayload(boost::shared_ptr<SecurityLabelsCatalog> catalog)  const {
	XMLElement element("catalog", "urn:xmpp:sec-label:catalog:2");
	if (!catalog->getName().empty()) {
		element.setAttribute("name", catalog->getName());
	}
	if (catalog->getTo().isValid()) {
		element.setAttribute("to", catalog->getTo());
	}
	if (!catalog->getDescription().empty()) {
		element.setAttribute("desc", catalog->getDescription());
	}
	foreach (const SecurityLabelsCatalog::Item& item, catalog->getItems()) {
		boost::shared_ptr<XMLElement> itemElement(new XMLElement("item"));
		itemElement->setAttribute("selector", item.getSelector());
		if (item.getIsDefault()) {
			itemElement->setAttribute("default", "true");
		}
		if (item.getLabel()) {
			std::string serializedLabel = SecurityLabelSerializer().serialize(item.getLabel());
			itemElement->addNode(boost::make_shared<XMLRawTextNode>(serializedLabel));
		}
		element.addNode(itemElement);
	}
	return element.serialize();
}

}