summaryrefslogtreecommitdiffstats
blob: a13a40a884682251d8c483f8e819643b533f37cd (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * Copyright (c) 2012 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#include <Swiften/Serializer/PayloadSerializers/JingleFileTransferFileInfoSerializer.h>

#include <boost/shared_ptr.hpp>
#include <boost/smart_ptr/make_shared.hpp>
#include <boost/lexical_cast.hpp>

#include <Swiften/Base/foreach.h>
#include <Swiften/Base/DateTime.h>
#include <Swiften/Serializer/XML/XMLElement.h>
#include <Swiften/Serializer/XML/XMLRawTextNode.h>
#include <Swiften/Serializer/XML/XMLTextNode.h>



namespace Swift {

JingleFileTransferFileInfoSerializer::JingleFileTransferFileInfoSerializer() {
}
								    
std::string JingleFileTransferFileInfoSerializer::serializePayload(boost::shared_ptr<JingleFileTransferFileInfo> fileInfo) const {
	XMLElement fileElement("file");

	if (fileInfo->getDate() != stringToDateTime("")) {
		boost::shared_ptr<XMLElement> date = boost::make_shared<XMLElement>("date", "", dateTimeToString(fileInfo->getDate()));
		fileElement.addNode(date);
	}
	if (!fileInfo->getDescription().empty()) {
		boost::shared_ptr<XMLElement> desc = boost::make_shared<XMLElement>("desc", "", fileInfo->getDescription());
		fileElement.addNode(desc);
	}
	if (!fileInfo->getName().empty()) {
		boost::shared_ptr<XMLElement> name = boost::make_shared<XMLElement>("name", "", fileInfo->getName());
		fileElement.addNode(name);
	}
	if (fileInfo->getSupportsRangeRequests()) {
		boost::shared_ptr<XMLElement> range = boost::make_shared<XMLElement>("range");
		if (fileInfo->getRangeOffset() != 0) {
			range->setAttribute("offset", boost::lexical_cast<std::string>(fileInfo->getRangeOffset()));
		}
		fileElement.addNode(range);
	}
	if (fileInfo->getSize() != 0) {
		boost::shared_ptr<XMLElement> size = boost::make_shared<XMLElement>("size", "", boost::lexical_cast<std::string>(fileInfo->getSize()));
		fileElement.addNode(size);
	}
	if (!fileInfo->getHash().empty()) {
		boost::shared_ptr<XMLElement> hash = boost::make_shared<XMLElement>("hash", "urn:xmpp:hashes:1", fileInfo->getHash());
		if (!fileInfo->getAlgo().empty()) {
			hash->setAttribute("algo", fileInfo->getAlgo());
		}
		fileElement.addNode(hash);
	}

	return fileElement.serialize();
}

}