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

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

#include <cassert>
#include <memory>

#include <boost/lexical_cast.hpp>

#include <Swiften/Serializer/XML/XMLElement.h>
#include <Swiften/Serializer/XML/XMLTextNode.h>
#include <Swiften/StringCodecs/Base64.h>

namespace Swift {

IBBSerializer::IBBSerializer() {
}

std::string IBBSerializer::serializePayload(std::shared_ptr<IBB> ibb) const {
    switch(ibb->getAction()) {
        case IBB::Data: {
            XMLElement ibbElement("data", "http://jabber.org/protocol/ibb");
            ibbElement.setAttribute("sid", ibb->getStreamID());
            if (ibb->getSequenceNumber() >= 0) {
                ibbElement.setAttribute("seq", std::to_string(ibb->getSequenceNumber()));
            }
            ibbElement.addNode(std::make_shared<XMLTextNode>(Base64::encode(ibb->getData())));
            return ibbElement.serialize();
        }
        case IBB::Open: {
            XMLElement ibbElement("open", "http://jabber.org/protocol/ibb");
            ibbElement.setAttribute("sid", ibb->getStreamID());
            switch (ibb->getStanzaType()) {
                case IBB::IQStanza: ibbElement.setAttribute("stanza", "iq"); break;
                case IBB::MessageStanza: ibbElement.setAttribute("stanza", "message"); break;
            }
            assert(ibb->getBlockSize() > 0);
            ibbElement.setAttribute("block-size", std::to_string(ibb->getBlockSize()));
            return ibbElement.serialize();
        }
        case IBB::Close: {
            XMLElement ibbElement("close", "http://jabber.org/protocol/ibb");
            ibbElement.setAttribute("sid", ibb->getStreamID());
            return ibbElement.serialize();
        }
    }
    assert(false);
    return "";
}

}