summaryrefslogtreecommitdiffstats
blob: 2cf5017aace495b7768b19428593b3346624daad (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
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * Copyright (c) 2010-2017 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <memory>
#include <string>

#include <boost/optional.hpp>

#include <Swiften/Base/API.h>
#include <Swiften/Elements/ErrorPayload.h>
#include <Swiften/Elements/IQ.h>
#include <Swiften/Elements/Payload.h>
#include <Swiften/JID/JID.h>
#include <Swiften/Queries/IQHandler.h>

namespace Swift {
    class IQRouter;

    /**
     * An IQ get/set request query.
     */
    class SWIFTEN_API Request : public IQHandler, public std::enable_shared_from_this<Request> {
        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> 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> 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_ = payload;
            }

            std::shared_ptr<Payload> getPayload() const {
                return payload_;
            }

            virtual void handleResponse(std::shared_ptr<Payload>, std::shared_ptr<ErrorPayload>) = 0;

        private:
            bool handleIQ(std::shared_ptr<IQ>);
            bool isCorrectSender(const JID& jid);

        private:
            IQRouter* router_;
            IQ::Type type_;
            JID sender_;
            JID receiver_;
            std::shared_ptr<Payload> payload_;
            std::string id_;
            bool sent_;
    };
}