File: PresenceNotifier.h

package info (click to toggle)
swift-im 5.0~alpha2.145.g12d031cf8%2Bdfsg-4.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,256 kB
  • sloc: cpp: 134,640; python: 2,701; sh: 774; xml: 561; javascript: 69; makefile: 59
file content (62 lines) | stat: -rw-r--r-- 1,887 bytes parent folder | download
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
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <memory>
#include <set>

#include <boost/signals2.hpp>

#include <Swiften/Avatars/AvatarManager.h>
#include <Swiften/Elements/Presence.h>
#include <Swiften/JID/JID.h>
#include <Swiften/Network/Timer.h>

#include <SwifTools/Notifier/Notifier.h>

namespace Swift {
    class TimerFactory;
    class StanzaChannel;
    class MUCRegistry;
    class NickResolver;
    class PresenceOracle;

    class PresenceNotifier {
        public:
            PresenceNotifier(StanzaChannel* stanzaChannel, Notifier* notifier, const MUCRegistry* mucRegistry, AvatarManager* avatarManager, NickResolver* nickResolver, const PresenceOracle* presenceOracle, TimerFactory* timerFactory);
            ~PresenceNotifier();

            void setInitialQuietPeriodMS(int ms);

            boost::signals2::signal<void (const JID&)> onNotificationActivated;

        private:
            void handlePresenceReceived(std::shared_ptr<Presence>);
            void handleStanzaChannelAvailableChanged(bool);
            void handleNotificationActivated(JID jid);
            void handleTimerTick();
            std::string getStatusType(const JID&) const;
            std::string getStatusMessage(const JID&) const;

        private:
            void showNotification(const JID& jid, Notifier::Type type);

        private:
            StanzaChannel* stanzaChannel;
            Notifier* notifier;
            const MUCRegistry* mucRegistry;
            AvatarManager* avatarManager;
            NickResolver* nickResolver;
            const PresenceOracle* presenceOracle;
            TimerFactory* timerFactory;
            std::shared_ptr<Timer> timer;
            bool justInitialized;
            bool inQuietPeriod;
            std::set<JID> availableUsers;
    };
}