summaryrefslogtreecommitdiffstats
blob: bfef7c3fb8d5914952a692b13ada81ca24ddff43 (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) 2012 Mateusz Piękos
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#include <Swiften/Whiteboard/WhiteboardSession.h>

#include <boost/smart_ptr/make_shared.hpp>
#include <Swiften/Elements/WhiteboardPayload.h>
#include <Swiften/Elements/ErrorPayload.h>

#include <iostream>

namespace Swift {
	WhiteboardSession::WhiteboardSession(const JID& jid, IQRouter* router) : toJID_(jid), router_(router) {
	}

	WhiteboardSession::~WhiteboardSession() {
	}

	void WhiteboardSession::handleIncomingAction(boost::shared_ptr<WhiteboardPayload> payload) {
		if (payload->getType() == WhiteboardPayload::SessionTerminate) {
			onSessionTerminateReceived(toJID_);
			return;
		}

		switch (payload->getType()) {
		case WhiteboardPayload::Data:
			onDataReceived(payload->getData());
			break;
		case WhiteboardPayload::SessionAccept:
			onRequestAccepted(toJID_);
			break;
		}
	}

	void WhiteboardSession::sendData(const std::string& data) {
		boost::shared_ptr<WhiteboardPayload> payload = boost::make_shared<WhiteboardPayload>();
		payload->setData(data);
		boost::shared_ptr<GenericRequest<WhiteboardPayload> > request = boost::make_shared<GenericRequest<WhiteboardPayload> >(IQ::Set, toJID_, payload, router_);
		request->send();
	}

	void WhiteboardSession::cancel() {
		boost::shared_ptr<WhiteboardPayload> payload = boost::make_shared<WhiteboardPayload>(WhiteboardPayload::SessionTerminate);
		boost::shared_ptr<GenericRequest<WhiteboardPayload> > request = boost::make_shared<GenericRequest<WhiteboardPayload> >(IQ::Set, toJID_, payload, router_);
		request->send();
		onSessionCancelled(toJID_);
	}

	const JID& WhiteboardSession::getTo() const {
		return toJID_;
	}
}