summaryrefslogtreecommitdiffstats
blob: b6029ae5d8e184f2ceef3b441f5f341be217694b (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
#ifndef SWIFTEN_Responder_H
#define SWIFTEN_Responder_H

#include "Swiften/Queries/IQHandler.h"
#include "Swiften/Elements/Error.h"

namespace Swift {
	template<typename PAYLOAD_TYPE>
	class Responder : public IQHandler {
		public:
			Responder(IQRouter* router) : IQHandler(router) {
			}

		protected:
			virtual bool handleGetRequest(const JID& from, const String& id, boost::shared_ptr<PAYLOAD_TYPE> payload) = 0;
			virtual bool handleSetRequest(const JID& from, const String& id, boost::shared_ptr<PAYLOAD_TYPE> payload) = 0;

			void sendResponse(const JID& to, const String& id, boost::shared_ptr<Payload> payload) {
				getRouter()->sendIQ(IQ::createResult(to, id, payload));
			}

			void sendError(const JID& to, const String& id, Error::Condition condition, Error::Type type) {
				getRouter()->sendIQ(IQ::createError(to, id, condition, type));
			}

		private:
			virtual bool handleIQ(boost::shared_ptr<IQ> iq) {
				if (iq->getType() == IQ::Set || iq->getType() == IQ::Get) {
					boost::shared_ptr<PAYLOAD_TYPE> payload(iq->getPayload<PAYLOAD_TYPE>());
					if (payload) {
						bool result;
						if (iq->getType() == IQ::Set) {
							result = handleSetRequest(iq->getFrom(), iq->getID(), payload);
						}
						else {
							result = handleGetRequest(iq->getFrom(), iq->getID(), payload);
						}
						if (!result) {
							getRouter()->sendIQ(IQ::createError(iq->getFrom(), iq->getID(), Error::NotAllowed, Error::Cancel));
						}
						return true;
					}
				}
				return false;
			}
	};
}

#endif