summaryrefslogtreecommitdiffstats
blob: c1997bd4e5fc52bcae5bd503e6677a9d55818f29 (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
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <map>
#include <string>

#include <boost/signals2.hpp>

#include <Swiften/Base/API.h>
#include <Swiften/Elements/Presence.h>
#include <Swiften/JID/JID.h>

namespace Swift {
    class StanzaChannel;

    class SWIFTEN_API SubscriptionManager {
        public:
            SubscriptionManager(StanzaChannel* stanzaChannel);
            ~SubscriptionManager();

            void cancelSubscription(const JID& jid);
            void confirmSubscription(const JID& jid);
            void requestSubscription(const JID& jid);

            /**
             * This signal is emitted when a presence subscription request is
             * received.
             *
             * The third parameter of this signal is the original presence stanza
             * received. This is useful when the subscriber adds extensions to
             * the request.
             */
            boost::signals2::signal<void (const JID&, const std::string&, Presence::ref)> onPresenceSubscriptionRequest;

            boost::signals2::signal<void (const JID&, const std::string&)> onPresenceSubscriptionRevoked;

        private:
            void handleIncomingPresence(Presence::ref presence);

        private:
            StanzaChannel* stanzaChannel;
    };
}