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

/*
 * Copyright (c) 2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <map>

#include <Swiften/Base/API.h>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/Client/StanzaChannel.h>
#include <Swiften/JID/JID.h>
#include <Swiften/Queries/IQRouter.h>
#include <Swiften/Whiteboard/IncomingWhiteboardSession.h>
#include <Swiften/Whiteboard/OutgoingWhiteboardSession.h>
#include <Swiften/Whiteboard/WhiteboardSession.h>

namespace Swift {
    class IQRouter;
    class WhiteboardResponder;
    class PresenceOracle;
    class EntityCapsProvider;

    class SWIFTEN_API WhiteboardSessionManager {
        friend class WhiteboardResponder;
    public:
        WhiteboardSessionManager(IQRouter* router, StanzaChannel* stanzaChannel, PresenceOracle* presenceOracle, EntityCapsProvider* capsProvider);
        ~WhiteboardSessionManager();

        WhiteboardSession::ref getSession(const JID& to);
        WhiteboardSession::ref requestSession(const JID& to);

    public:
        boost::signal< void (IncomingWhiteboardSession::ref)> onSessionRequest;

    private:
        JID getFullJID(const JID& bareJID);
        OutgoingWhiteboardSession::ref createOutgoingSession(const JID& to);
        void handleIncomingSession(IncomingWhiteboardSession::ref session);
        void handlePresenceReceived(Presence::ref presence);
        void handleAvailableChanged(bool available);
        void deleteSessionEntry(const JID& contact);

    private:
        std::map<JID, std::shared_ptr<WhiteboardSession> > sessions_;
        IQRouter* router_;
        StanzaChannel* stanzaChannel_;
        PresenceOracle* presenceOracle_;
        EntityCapsProvider* capsProvider_;
        WhiteboardResponder* responder;
    };
}