summaryrefslogtreecommitdiffstats
blob: eb45ca21aa0ac4ed96701cbb8b86f4ff35c5ba8e (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * Copyright (c) 2010 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "Swiften/Serializer/PayloadSerializers/CommandSerializer.h"

#include <boost/shared_ptr.hpp>

#include "Swiften/Base/foreach.h"
#include "Swiften/Serializer/XML/XMLElement.h"
#include "Swiften/Serializer/XML/XMLTextNode.h"
#include "Swiften/Serializer/XML/XMLRawTextNode.h"
#include "Swiften/Serializer/PayloadSerializerCollection.h"
#include "Swiften/Serializer/PayloadSerializers/FormSerializer.h"

namespace Swift {

CommandSerializer::CommandSerializer() {
}

String CommandSerializer::serializePayload(boost::shared_ptr<Command> command)	const {
	XMLElement commandElement("command", "http://jabber.org/protocol/comands");
	commandElement.setAttribute("node", command->getNode());

	if (!command->getSessionID().isEmpty()) {
		commandElement.setAttribute("sessionid", command->getSessionID());
	}

	String action = actionToString(command->getAction());
	if (!action.isEmpty()) {
		commandElement.setAttribute("action", action);
	}

	String status;
	switch (command->getStatus()) {
		case Command::Executing: status = "executing";break;
		case Command::Completed: status = "completed";break;
		case Command::Canceled: status = "canceled";break;
		case Command::NoStatus: break;
	}
	if (!status.isEmpty()) {
		commandElement.setAttribute("status", status);
	}

	if (command->getAvailableActions().size() > 0) {
		String actions = "<actions";
		String executeAction = actionToString(command->getExecuteAction());
		if (!executeAction.isEmpty()) {
			actions += " execute='" + executeAction + "'";
		}
		actions += ">";
		foreach (Command::Action action, command->getAvailableActions()) {
			actions += "<" + actionToString(action) + "/>";
		}
		actions += "</actions>";
		commandElement.addNode(boost::shared_ptr<XMLRawTextNode>(new XMLRawTextNode(actions)));
	}

	foreach (Command::Note note, command->getNotes()) {
		boost::shared_ptr<XMLElement> noteElement(new XMLElement("note"));
		String type;
		switch (note.type) {
			case Command::Note::Info: type = "info";
			case Command::Note::Warn: type = "warn";
			case Command::Note::Error: type = "error";
		}
		if (!type.isEmpty()) {
			noteElement->setAttribute("type", type);
		}
		noteElement->addNode(boost::shared_ptr<XMLTextNode>(new XMLTextNode(note.note)));
		commandElement.addNode(noteElement);
	}

	Form::ref form = command->getForm();
	if (form) {
		commandElement.addNode(boost::shared_ptr<XMLRawTextNode>(new XMLRawTextNode(FormSerializer().serialize(form))));
	}
	return commandElement.serialize();
}

String CommandSerializer::actionToString(Command::Action action) const {
	String string;
	switch (action) {
		case Command::Cancel: string = "cancel"; break;
		case Command::Execute: string = "execute"; break;
		case Command::Complete: string = "complete"; break;
		case Command::Prev: string = "prev"; break;
		case Command::Next: string = "next"; break;
		case Command::NoAction: break;
	}
	return string;
}

}