summaryrefslogtreecommitdiffstats
blob: 42683810b2c1dde38a8587f56be2c9bac28b1402 (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
#include "Swiften/Serializer/PayloadSerializers/StorageSerializer.h"

#include <boost/shared_ptr.hpp>

#include "Swiften/Base/foreach.h"
#include "Swiften/Serializer/XML/XMLElement.h"
#include "Swiften/Serializer/XML/XMLTextNode.h"

namespace Swift {

StorageSerializer::StorageSerializer() : GenericPayloadSerializer<Storage>() {
}

String StorageSerializer::serializePayload(boost::shared_ptr<Storage> storage)	const {
	XMLElement storageElement("storage", "storage:bookmarks");
	foreach(const Storage::Conference& conference, storage->getConferences()) {
		boost::shared_ptr<XMLElement> conferenceElement(new XMLElement("conference"));
		conferenceElement->setAttribute("name", conference.name);
		conferenceElement->setAttribute("jid", conference.jid);
		conferenceElement->setAttribute("autojoin", conference.autoJoin ? "1" : "0");
		if (!conference.nick.isEmpty()) {
			boost::shared_ptr<XMLElement> nickElement(new XMLElement("nick"));
			nickElement->addNode(boost::shared_ptr<XMLTextNode>(new XMLTextNode(conference.nick)));
			conferenceElement->addNode(nickElement);
		}
		if (!conference.password.isEmpty()) {
			boost::shared_ptr<XMLElement> passwordElement(new XMLElement("password"));
			passwordElement->addNode(boost::shared_ptr<XMLTextNode>(new XMLTextNode(conference.password)));
			conferenceElement->addNode(passwordElement);
		}
		storageElement.addNode(conferenceElement);
	}
	return storageElement.serialize();
}

}