/* * Copyright (c) 2010-2017 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include #include #include #include #include #include namespace Swift { class IQRouter; /** * An IQ get/set request query. */ class SWIFTEN_API Request : public IQHandler, public std::enable_shared_from_this { public: std::string send(); const JID& getReceiver() const { return receiver_; } /** * Returns the ID of this request. * This will only be set after send() is called. */ const std::string& getID() const { return id_; } protected: /** * Constructs a request of a certain type to a specific receiver, and attaches the given * payload. */ Request( IQ::Type type, const JID& receiver, std::shared_ptr payload, IQRouter* router); /** * Constructs a request of a certain type to a specific receiver from a specific sender, and attaches the given * payload. */ Request( IQ::Type type, const JID& sender, const JID& receiver, std::shared_ptr payload, IQRouter* router); /** * Constructs a request of a certain type to a specific receiver. */ Request( IQ::Type type, const JID& receiver, IQRouter* router); /** * Constructs a request of a certain type to a specific receiver from a specific sender. */ Request( IQ::Type type, const JID& sender, const JID& receiver, IQRouter* router); virtual void setPayload(std::shared_ptr payload) { payload_ = payload; } std::shared_ptr getPayload() const { return payload_; } virtual void handleResponse(std::shared_ptr, std::shared_ptr) = 0; private: bool handleIQ(std::shared_ptr); bool isCorrectSender(const JID& jid); private: IQRouter* router_; IQ::Type type_; JID sender_; JID receiver_; std::shared_ptr payload_; std::string id_; bool sent_; }; }