summaryrefslogtreecommitdiffstats
blob: 718e550fc0fe45b78439c87dfc115d4eee2bec84 (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
/*
 * Copyright (c) 2011 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

/*
 * Copyright (c) 2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

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

#include <memory>

#include <boost/lexical_cast.hpp>

#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 {

StreamInitiationFileInfoSerializer::StreamInitiationFileInfoSerializer() {
}

std::string StreamInitiationFileInfoSerializer::serializePayload(std::shared_ptr<StreamInitiationFileInfo> fileInfo) const {
    XMLElement fileElement("file", "http://jabber.org/protocol/si/profile/file-transfer");

    if (fileInfo->getDate() != stringToDateTime("")) {
        fileElement.setAttribute("date", dateTimeToString(fileInfo->getDate()));
    }
    fileElement.setAttribute("hash", fileInfo->getHash());
    if (fileInfo->getAlgo() != "md5") {
        fileElement.setAttribute("algo", fileInfo->getAlgo());
    }
    if (!fileInfo->getName().empty()) {
        fileElement.setAttribute("name", fileInfo->getName());
    }
    if (fileInfo->getSize() != 0) {
        fileElement.setAttribute("size", std::to_string(fileInfo->getSize()));
    }
    if (!fileInfo->getDescription().empty()) {
        std::shared_ptr<XMLElement> desc = std::make_shared<XMLElement>("desc", "", fileInfo->getDescription());
        fileElement.addNode(desc);
    }
    if (fileInfo->getSupportsRangeRequests()) {
        std::shared_ptr<XMLElement> range = std::make_shared<XMLElement>("range");
        if (fileInfo->getRangeOffset() != 0) {
            range->setAttribute("offset", std::to_string(fileInfo->getRangeOffset()));
        }
        fileElement.addNode(range);
    }
    return fileElement.serialize();
}

}