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

#include <Swiften/Parser/PayloadParsers/DiscoItemsParser.h>

namespace Swift {

DiscoItemsParser::DiscoItemsParser() : level_(TopLevel) {
}

void DiscoItemsParser::handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes) {
	if (level_ == PayloadLevel) {
		if (element == "item") {
			getPayloadInternal()->addItem(DiscoItems::Item(attributes.getAttribute("name"), JID(attributes.getAttribute("jid")), attributes.getAttribute("node")));
		}
	}
	else if (level_ == TopLevel) {
		if (element == "query") {
			getPayloadInternal()->setNode(attributes.getAttribute("node"));
		}
	}
	++level_;
}

void DiscoItemsParser::handleEndElement(const std::string&, const std::string&) {
	--level_;
}

void DiscoItemsParser::handleCharacterData(const std::string&) {
}

}