2e0838d73e97ac4fdec6b3ae3372b03d141f929d
[quassel.git] / src / common / ircevent.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 "ircevent.h"
22
23 Event* IrcEvent::create(EventManager::EventType type, QVariantMap& map, Network* network)
24 {
25     if ((type & ~EventManager::IrcEventNumericMask) == EventManager::IrcEventNumeric)
26         return new IrcEventNumeric(type, map, network);
27
28     if ((type & EventManager::EventGroupMask) != EventManager::IrcEvent)
29         return nullptr;
30
31     switch (type) {
32     case EventManager::IrcEventRawPrivmsg:
33     case EventManager::IrcEventRawNotice:
34         return new IrcEventRawMessage(type, map, network);
35
36     default:
37         return new IrcEvent(type, map, network);
38     }
39 }
40
41 IrcEvent::IrcEvent(EventManager::EventType type, QVariantMap& map, Network* network)
42     : NetworkEvent(type, map, network)
43 {
44     _prefix = map.take("prefix").toString();
45     _params = map.take("params").toStringList();
46 }
47
48 void IrcEvent::toVariantMap(QVariantMap& map) const
49 {
50     NetworkEvent::toVariantMap(map);
51     map["prefix"] = prefix();
52     map["params"] = params();
53 }
54
55 IrcEventNumeric::IrcEventNumeric(EventManager::EventType type, QVariantMap& map, Network* network)
56     : IrcEvent(type, map, network)
57 {
58     _number = map.take("number").toUInt();
59     _target = map.take("target").toString();
60 }
61
62 void IrcEventNumeric::toVariantMap(QVariantMap& map) const
63 {
64     IrcEvent::toVariantMap(map);
65     map["number"] = number();
66     map["target"] = target();
67 }
68
69 IrcEventRawMessage::IrcEventRawMessage(EventManager::EventType type, QVariantMap& map, Network* network)
70     : IrcEvent(type, map, network)
71 {
72     _rawMessage = map.take("rawMessage").toByteArray();
73 }
74
75 void IrcEventRawMessage::toVariantMap(QVariantMap& map) const
76 {
77     IrcEvent::toVariantMap(map);
78     map["rawMessage"] = rawMessage();
79 }