sigproxy: Modernize RPC calls (remote signals)
[quassel.git] / src / common / messageevent.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "messageevent.h"
22
23 #include <utility>
24
25 Event* MessageEvent::create(EventManager::EventType type, QVariantMap& map, Network* network)
26 {
27     if (type == EventManager::MessageEvent)
28         return new MessageEvent(type, map, network);
29
30     return nullptr;
31 }
32
33 MessageEvent::MessageEvent(
34     Message::Type msgType, Network* net, QString msg, const QString& sender, QString target, Message::Flags flags, const QDateTime& timestamp)
35     : NetworkEvent(EventManager::MessageEvent, net)
36     , _msgType(msgType)
37     , _text(std::move(msg))
38     , _sender(sender)
39     , _target(std::move(target))
40     , _msgFlags(flags)
41 {
42     IrcChannel* channel = network()->ircChannel(_target);
43     if (!channel) {
44         if (!_target.isEmpty() && network()->prefixes().contains(_target.at(0)))
45             _target = _target.mid(1);
46
47         if (_target.startsWith('$') || _target.startsWith('#'))
48             _target = nickFromMask(sender);
49     }
50
51     _bufferType = bufferTypeByTarget(_target);
52
53     if (timestamp.isValid())
54         setTimestamp(timestamp);
55     else
56         setTimestamp(QDateTime::currentDateTime());
57 }
58
59 MessageEvent::MessageEvent(EventManager::EventType type, QVariantMap& map, Network* network)
60     : NetworkEvent(type, map, network)
61 {
62     _msgType = static_cast<Message::Type>(map.take("messageType").toInt());
63     _msgFlags = static_cast<Message::Flags>(map.take("messageFlags").toInt());
64     _bufferType = static_cast<BufferInfo::Type>(map.take("bufferType").toInt());
65     _text = map.take("text").toString();
66     _sender = map.take("sender").toString();
67     _target = map.take("target").toString();
68 }
69
70 void MessageEvent::toVariantMap(QVariantMap& map) const
71 {
72     NetworkEvent::toVariantMap(map);
73     map["messageType"] = msgType();
74     map["messageFlags"] = (int)msgFlags();
75     map["bufferType"] = bufferType();
76     map["text"] = text();
77     map["sender"] = sender();
78     map["target"] = target();
79 }
80
81 BufferInfo::Type MessageEvent::bufferTypeByTarget(const QString& target) const
82 {
83     if (target.isEmpty())
84         return BufferInfo::StatusBuffer;
85
86     if (network()->isChannelName(target))
87         return BufferInfo::ChannelBuffer;
88
89     return BufferInfo::QueryBuffer;
90 }