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

#pragma once

#include <cassert>
#include <memory>

#include <Swiften/Elements/Message.h>

#include <Swift/Controllers/XMPPEvents/StanzaEvent.h>

namespace Swift {
    class MessageEvent : public StanzaEvent {
        public:
            class SystemNotification {
            public:
                SystemNotification(const std::string& title, const std::string& message) : title(title), message(message) {
                }

            public:
                std::string title;
                std::string message;
            };

        public:
            typedef std::shared_ptr<MessageEvent> ref;

            MessageEvent(std::shared_ptr<Message> stanza) : stanza_(stanza), targetsMe_(true) {}

            std::shared_ptr<Message> getStanza() {return stanza_;}

            bool isReadable() {
                return getStanza()->isError() || !getStanza()->getBody().get_value_or("").empty();
            }

            void addNotification(const std::string& title, const std::string& message) {
                systemNotifications_.push_back(SystemNotification(title, message));
            }

            const std::vector<SystemNotification>& getNotifications() const {
                return systemNotifications_;
            }

            void read() {
                assert (isReadable());
                conclude();
            }

            void setTargetsMe(bool targetsMe) {
                targetsMe_ = targetsMe;
            }

            bool targetsMe() const {
                return targetsMe_;
            }

        private:
            std::shared_ptr<Message> stanza_;
            std::vector<SystemNotification> systemNotifications_;
            bool targetsMe_;
    };
}