dcc: Add persistent settings for core-side DCC
[quassel.git] / src / client / client.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 CLIENT_H_
22 #define CLIENT_H_
23
24 #include <QList>
25 #include <QPointer>
26
27 #include "bufferinfo.h"
28 #include "coreaccount.h"
29 #include "coreconnection.h"
30 #include "quassel.h"
31 #include "types.h"
32
33 class Message;
34 class MessageModel;
35 class AbstractMessageProcessor;
36
37 class Identity;
38 class CertIdentity;
39 class Network;
40
41 class AbstractUi;
42 class AbstractUiMsg;
43 class NetworkModel;
44 class BufferModel;
45 class BufferSyncer;
46 class BufferViewOverlay;
47 class ClientAliasManager;
48 class ClientBacklogManager;
49 class ClientBufferViewManager;
50 class ClientIgnoreListManager;
51 class ClientIrcListHelper;
52 class ClientTransferManager;
53 class ClientUserInputHandler;
54 class CoreAccountModel;
55 class CoreConnection;
56 class DccConfig;
57 class IrcUser;
58 class IrcChannel;
59 class NetworkConfig;
60 class SignalProxy;
61 class TransferModel;
62
63 struct NetworkInfo;
64
65 class Client : public QObject
66 {
67     Q_OBJECT
68
69 public:
70     enum ClientMode {
71         LocalCore,
72         RemoteCore
73     };
74
75     static bool instanceExists();
76     static Client *instance();
77     static void destroy();
78     static void init(AbstractUi *);
79     static AbstractUi *mainUi();
80
81     static QList<NetworkId> networkIds();
82     static const Network *network(NetworkId);
83
84     static QList<IdentityId> identityIds();
85     static const Identity *identity(IdentityId);
86
87     //! Request creation of an identity with the given data.
88     /** The request will be sent to the core, and will be propagated back to all the clients
89      *  with a new valid IdentityId.
90      *  \param identity The identity template for the new identity. It does not need to have a valid ID.
91      */
92     static void createIdentity(const CertIdentity &identity);
93
94     //! Request update of an identity with the given data.
95     /** The request will be sent to the core, and will be propagated back to all the clients.
96      *  \param id The identity to be updated.
97      *  \param serializedData The identity's content (cf. SyncableObject::toVariantMap())
98      */
99     static void updateIdentity(IdentityId id, const QVariantMap &serializedData);
100
101     //! Request removal of the identity with the given ID from the core (and all the clients, of course).
102     /** \param id The ID of the identity to be removed.
103      */
104     static void removeIdentity(IdentityId id);
105
106     static void createNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
107     static void updateNetwork(const NetworkInfo &info);
108     static void removeNetwork(NetworkId id);
109
110     static inline NetworkModel *networkModel() { return instance()->_networkModel; }
111     static inline BufferModel *bufferModel() { return instance()->_bufferModel; }
112     static inline MessageModel *messageModel() { return instance()->_messageModel; }
113     static inline AbstractMessageProcessor *messageProcessor() { return instance()->_messageProcessor; }
114     static inline SignalProxy *signalProxy() { return instance()->_signalProxy; }
115
116     static inline ClientAliasManager *aliasManager() { return instance()->_aliasManager; }
117     static inline ClientBacklogManager *backlogManager() { return instance()->_backlogManager; }
118     static inline DccConfig *dccConfig() { return instance()->_dccConfig; }
119     static inline ClientIrcListHelper *ircListHelper() { return instance()->_ircListHelper; }
120     static inline ClientBufferViewManager *bufferViewManager() { return instance()->_bufferViewManager; }
121     static inline BufferViewOverlay *bufferViewOverlay() { return instance()->_bufferViewOverlay; }
122     static inline ClientUserInputHandler *inputHandler() { return instance()->_inputHandler; }
123     static inline NetworkConfig *networkConfig() { return instance()->_networkConfig; }
124     static inline ClientIgnoreListManager *ignoreListManager() { return instance()->_ignoreListManager; }
125     static inline ClientTransferManager *transferManager() { return instance()->_transferManager; }
126     static inline TransferModel *transferModel() { return instance()->_transferModel; }
127
128     static inline CoreAccountModel *coreAccountModel() { return instance()->_coreAccountModel; }
129     static inline CoreConnection *coreConnection() { return instance()->_coreConnection; }
130     static inline CoreAccount currentCoreAccount() { return coreConnection()->currentAccount(); }
131     static inline Quassel::Features coreFeatures() { return _coreFeatures; }
132
133     static void setCoreFeatures(Quassel::Features features);
134
135     static bool isConnected();
136     static bool internalCore();
137
138     static void userInput(const BufferInfo &bufferInfo, const QString &message);
139
140     static void setBufferLastSeenMsg(BufferId id, const MsgId &msgId); // this is synced to core and other clients
141     static void setMarkerLine(BufferId id, const MsgId &msgId); // this is synced to core and other clients
142     static MsgId markerLine(BufferId id);
143
144     static void removeBuffer(BufferId id);
145     static void renameBuffer(BufferId bufferId, const QString &newName);
146     static void mergeBuffersPermanently(BufferId bufferId1, BufferId bufferId2);
147     static void purgeKnownBufferIds();
148
149     static void changePassword(const QString &oldPassword, const QString &newPassword);
150
151 #if QT_VERSION < 0x050000
152     static void logMessage(QtMsgType type, const char *msg);
153 #else
154     static void logMessage(QtMsgType, const QMessageLogContext&, const QString&);
155 #endif
156     static inline const QString &debugLog() { return instance()->_debugLogBuffer; }
157
158 signals:
159     void requestNetworkStates();
160
161     void showConfigWizard(const QVariantMap &coredata);
162
163     void connected();
164     void disconnected();
165     void coreConnectionStateChanged(bool);
166
167     //! The identity with the given ID has been newly created in core and client.
168     /** \param id The ID of the newly created identity.
169      */
170     void identityCreated(IdentityId id);
171
172     //! The identity with the given ID has been removed.
173     /** Upon emitting this signal, the identity is already gone from the core, and it will
174      *  be deleted from the client immediately afterwards, so connected slots need to clean
175      *  up their stuff.
176      *  \param id The ID of the identity about to be removed.
177      */
178     void identityRemoved(IdentityId id);
179
180     //! Sent to the core when an identity shall be created. Should not be used elsewhere.
181     void requestCreateIdentity(const Identity &, const QVariantMap &);
182     //! Sent to the core when an identity shall be removed. Should not be used elsewhere.
183     void requestRemoveIdentity(IdentityId);
184
185     void networkCreated(NetworkId id);
186     void networkRemoved(NetworkId id);
187
188     void requestCreateNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
189     void requestRemoveNetwork(NetworkId);
190
191     void logUpdated(const QString &msg);
192
193     //! Emitted when a buffer has been marked as read
194     /** This is currently triggered by setting lastSeenMsg, either local or remote,
195      *  or by bringing the window to front.
196      *  \param id The buffer that has been marked as read
197      */
198     void bufferMarkedAsRead(BufferId id);
199
200     //! Requests a password change (user name must match the currently logged in user)
201     void requestPasswordChange(PeerPtr peer, const QString &userName, const QString &oldPassword, const QString &newPassword);
202     void passwordChanged(bool success);
203
204 public slots:
205     void disconnectFromCore();
206
207     void bufferRemoved(BufferId bufferId);
208     void bufferRenamed(BufferId bufferId, const QString &newName);
209     void buffersPermanentlyMerged(BufferId bufferId1, BufferId bufferId2);
210
211     void markBufferAsRead(BufferId id);
212
213 private slots:
214     void setSyncedToCore();
215     void setDisconnectedFromCore();
216     void connectionStateChanged(CoreConnection::ConnectionState);
217
218     void recvMessage(const Message &message);
219     void recvStatusMsg(QString network, QString message);
220
221     void networkDestroyed();
222     void coreIdentityCreated(const Identity &);
223     void coreIdentityRemoved(IdentityId);
224     void coreNetworkCreated(NetworkId);
225     void coreNetworkRemoved(NetworkId);
226
227     void corePasswordChanged(PeerPtr, bool success);
228
229     void requestInitialBacklog();
230
231     void sendBufferedUserInput();
232
233 private:
234     Client(QObject *parent = 0);
235     virtual ~Client();
236     void init();
237
238     static void addNetwork(Network *);
239     static inline BufferSyncer *bufferSyncer() { return instance()->_bufferSyncer; }
240
241     static QPointer<Client> instanceptr;
242
243     SignalProxy *_signalProxy;
244     AbstractUi *_mainUi;
245     NetworkModel *_networkModel;
246     BufferModel *_bufferModel;
247     BufferSyncer *_bufferSyncer;
248     ClientAliasManager *_aliasManager;
249     ClientBacklogManager *_backlogManager;
250     ClientBufferViewManager *_bufferViewManager;
251     BufferViewOverlay *_bufferViewOverlay;
252     DccConfig *_dccConfig;
253     ClientIrcListHelper *_ircListHelper;
254     ClientUserInputHandler *_inputHandler;
255     NetworkConfig *_networkConfig;
256     ClientIgnoreListManager *_ignoreListManager;
257     ClientTransferManager *_transferManager;
258     TransferModel *_transferModel;
259
260     MessageModel *_messageModel;
261     AbstractMessageProcessor *_messageProcessor;
262
263     CoreAccountModel *_coreAccountModel;
264     CoreConnection *_coreConnection;
265
266     ClientMode clientMode;
267
268     QHash<NetworkId, Network *> _networks;
269     QHash<IdentityId, Identity *> _identities;
270
271     bool _connected;
272     static Quassel::Features _coreFeatures;
273
274     QString _debugLogBuffer;
275     QTextStream _debugLog;
276
277     QList<QPair<BufferInfo, QString> > _userInputBuffer;
278
279     friend class CoreConnection;
280 };
281
282
283 #endif