summaryrefslogtreecommitdiffstats
blob: e61c2b2f1e4ea0eb9e0153c0c221f51805e8e50d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2011-2014 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Parser/PayloadParsers/MUCInvitationPayloadParser.h>
#include <Swiften/Parser/Tree/NullParserElement.h>

namespace Swift {

void MUCInvitationPayloadParser::handleTree(ParserElement::ref root) {
	MUCInvitationPayload::ref invite = getPayloadInternal();
	invite->setIsContinuation(root->getAttributes().getBoolAttribute("continue", false));
	invite->setJID(JID(root->getAttributes().getAttribute("jid")));
	invite->setPassword(root->getAttributes().getAttribute("password"));
	invite->setReason(root->getAttributes().getAttribute("reason"));
	invite->setThread(root->getAttributes().getAttribute("thread"));
	ParserElement::ref impromptuNode = root->getChild("impromptu", "http://swift.im/impromptu");
	invite->setIsImpromptu(!boost::dynamic_pointer_cast<NullParserElement>(impromptuNode));
}

}