c4de8cc91e2418123e2628ce2b0ea7e1093d7b8c
[quassel.git] / src / core / coresession.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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 #ifndef CORESESSION_H
22 #define CORESESSION_H
23
24 #include <QString>
25 #include <QVariant>
26
27 #include "corecoreinfo.h"
28 #include "corealiasmanager.h"
29 #include "coreignorelistmanager.h"
30 #include "peer.h"
31 #include "protocol.h"
32 #include "message.h"
33 #include "storage.h"
34
35 class CoreBacklogManager;
36 class CoreBufferSyncer;
37 class CoreBufferViewManager;
38 class CoreDccConfig;
39 class CoreIdentity;
40 class CoreIrcListHelper;
41 class CoreNetwork;
42 class CoreNetworkConfig;
43 class CoreSessionEventProcessor;
44 class CoreTransferManager;
45 class CtcpParser;
46 class EventManager;
47 class EventStringifier;
48 class InternalPeer;
49 class IrcParser;
50 class MessageEvent;
51 class NetworkConnection;
52 class RemotePeer;
53 class SignalProxy;
54
55 struct NetworkInfo;
56
57 class QScriptEngine;
58
59 class CoreSession : public QObject
60 {
61     Q_OBJECT
62
63 public:
64     CoreSession(UserId, bool restoreState, QObject *parent = 0);
65     ~CoreSession();
66
67     QList<BufferInfo> buffers() const;
68     inline UserId user() const { return _user; }
69     CoreNetwork *network(NetworkId) const;
70     CoreIdentity *identity(IdentityId) const;
71     inline CoreNetworkConfig *networkConfig() const { return _networkConfig; }
72     NetworkConnection *networkConnection(NetworkId) const;
73
74     Protocol::SessionState sessionState() const;
75
76     inline SignalProxy *signalProxy() const { return _signalProxy; }
77
78     const AliasManager &aliasManager() const { return _aliasManager; }
79     AliasManager &aliasManager() { return _aliasManager; }
80
81     inline EventManager *eventManager() const { return _eventManager; }
82     inline EventStringifier *eventStringifier() const { return _eventStringifier; }
83     inline CoreSessionEventProcessor *sessionEventProcessor() const { return _sessionEventProcessor; }
84     inline CtcpParser *ctcpParser() const { return _ctcpParser; }
85     inline IrcParser *ircParser() const { return _ircParser; }
86
87     inline CoreIrcListHelper *ircListHelper() const { return _ircListHelper; }
88
89     inline CoreIgnoreListManager *ignoreListManager() { return &_ignoreListManager; }
90     inline CoreTransferManager *transferManager() const { return _transferManager; }
91     inline CoreDccConfig *dccConfig() const { return _dccConfig; }
92
93 //   void attachNetworkConnection(NetworkConnection *conn);
94
95     //! Return necessary data for restoring the session after restarting the core
96     void restoreSessionState();
97
98 public slots:
99     void addClient(RemotePeer *peer);
100     void addClient(InternalPeer *peer);
101
102     void msgFromClient(BufferInfo, QString message);
103
104     //! Create an identity and propagate the changes to the clients.
105     /** \param identity The identity to be created.
106      */
107     void createIdentity(const Identity &identity, const QVariantMap &additional);
108     void createIdentity(const CoreIdentity &identity);
109
110     //! Remove identity and propagate that fact to the clients.
111     /** \param identity The identity to be removed.
112      */
113     void removeIdentity(IdentityId identity);
114
115     //! Create a network and propagate the changes to the clients.
116     /** \param info The network's settings.
117      */
118     void createNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
119
120     //! Remove network and propagate that fact to the clients.
121     /** \param network The id of the network to be removed.
122      */
123     void removeNetwork(NetworkId network);
124
125     //! Rename a Buffer for a given network
126     /* \param networkId The id of the network the buffer belongs to
127      * \param newName   The new name of the buffer
128      * \param oldName   The old name of the buffer
129      */
130     void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName);
131
132     void changePassword(PeerPtr peer, const QString &userName, const QString &oldPassword, const QString &newPassword);
133
134     void kickClient(int peerId);
135
136     QHash<QString, QString> persistentChannels(NetworkId) const;
137
138     /**
139      * Marks us away (or unaway) on all networks
140      *
141      * @param[in] msg             Away message, or blank to set unaway
142      * @param[in] skipFormatting  If true, skip timestamp formatting codes (e.g. if already done)
143      */
144     void globalAway(const QString &msg = QString(), const bool skipFormatting = false);
145
146 signals:
147     void initialized();
148     void sessionState(const Protocol::SessionState &sessionState);
149
150     //void msgFromGui(uint netid, QString buf, QString message);
151     void displayMsg(Message message);
152     void displayStatusMsg(QString, QString);
153
154     void scriptResult(QString result);
155
156     //! Identity has been created.
157     /** This signal is propagated to the clients to tell them that the given identity has been created.
158      *  \param identity The new identity.
159      */
160     void identityCreated(const Identity &identity);
161
162     //! Identity has been removed.
163     /** This signal is propagated to the clients to inform them about the removal of the given identity.
164      *  \param identity The identity that has been removed.
165      */
166     void identityRemoved(IdentityId identity);
167
168     void networkCreated(NetworkId);
169     void networkRemoved(NetworkId);
170     void networkDisconnected(NetworkId);
171
172     void passwordChanged(PeerPtr peer, bool success);
173
174 protected:
175     virtual void customEvent(QEvent *event);
176
177 private slots:
178     void removeClient(Peer *peer);
179
180     void recvStatusMsgFromServer(QString msg);
181     void recvMessageFromServer(NetworkId networkId, Message::Type, BufferInfo::Type, const QString &target, const QString &text, const QString &sender = "", Message::Flags flags = Message::None);
182
183     void destroyNetwork(NetworkId);
184
185     void scriptRequest(QString script);
186
187     void clientsConnected();
188     void clientsDisconnected();
189
190     void updateIdentityBySender();
191
192     void saveSessionState() const;
193
194 private:
195     void processMessages();
196
197     void loadSettings();
198     void initScriptEngine();
199
200     /// Hook for converting events to the old displayMsg() handlers
201     Q_INVOKABLE void processMessageEvent(MessageEvent *event);
202
203     UserId _user;
204
205     SignalProxy *_signalProxy;
206     CoreAliasManager _aliasManager;
207     // QHash<NetworkId, NetworkConnection *> _connections;
208     QHash<NetworkId, CoreNetwork *> _networks;
209     //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
210     QHash<IdentityId, CoreIdentity *> _identities;
211
212     CoreBufferSyncer *_bufferSyncer;
213     CoreBacklogManager *_backlogManager;
214     CoreBufferViewManager *_bufferViewManager;
215     CoreDccConfig *_dccConfig;
216     CoreIrcListHelper *_ircListHelper;
217     CoreNetworkConfig *_networkConfig;
218     CoreCoreInfo _coreInfo;
219     CoreTransferManager *_transferManager;
220
221     EventManager *_eventManager;
222     EventStringifier *_eventStringifier; // should eventually move into client
223     CoreSessionEventProcessor *_sessionEventProcessor;
224     CtcpParser *_ctcpParser;
225     IrcParser *_ircParser;
226
227     QScriptEngine *scriptEngine;
228
229     /**
230      * This method obtains the prefixes of the message's sender within a channel, by looking up their channelmodes, and
231      * processing them to prefixes based on the network's settings.
232      * @param sender The hostmask of the sender
233      * @param bufferInfo The BufferInfo object of the buffer
234      */
235     QString senderPrefixes(const QString &sender, const BufferInfo &bufferInfo) const;
236     QList<RawMessage> _messageQueue;
237     bool _processMessages;
238     CoreIgnoreListManager _ignoreListManager;
239 };
240
241
242 struct RawMessage {
243     NetworkId networkId;
244     Message::Type type;
245     BufferInfo::Type bufferType;
246     QString target;
247     QString text;
248     QString sender;
249     Message::Flags flags;
250     RawMessage(NetworkId networkId, Message::Type type, BufferInfo::Type bufferType, const QString &target, const QString &text, const QString &sender, Message::Flags flags)
251         : networkId(networkId), type(type), bufferType(bufferType), target(target), text(text), sender(sender), flags(flags) {}
252 };
253
254 #endif