Use timestamp format for manual away, not restore
[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     QHash<QString, QString> persistentChannels(NetworkId) const;
135
136     /**
137      * Marks us away (or unaway) on all networks
138      *
139      * @param[in] msg             Away message, or blank to set unaway
140      * @param[in] skipFormatting  If true, skip timestamp formatting codes (e.g. if already done)
141      */
142     void globalAway(const QString &msg = QString(), const bool skipFormatting = false);
143
144 signals:
145     void initialized();
146     void sessionState(const Protocol::SessionState &sessionState);
147
148     //void msgFromGui(uint netid, QString buf, QString message);
149     void displayMsg(Message message);
150     void displayStatusMsg(QString, QString);
151
152     void scriptResult(QString result);
153
154     //! Identity has been created.
155     /** This signal is propagated to the clients to tell them that the given identity has been created.
156      *  \param identity The new identity.
157      */
158     void identityCreated(const Identity &identity);
159
160     //! Identity has been removed.
161     /** This signal is propagated to the clients to inform them about the removal of the given identity.
162      *  \param identity The identity that has been removed.
163      */
164     void identityRemoved(IdentityId identity);
165
166     void networkCreated(NetworkId);
167     void networkRemoved(NetworkId);
168     void networkDisconnected(NetworkId);
169
170     void passwordChanged(PeerPtr peer, bool success);
171
172 protected:
173     virtual void customEvent(QEvent *event);
174
175 private slots:
176     void removeClient(Peer *peer);
177
178     void recvStatusMsgFromServer(QString msg);
179     void recvMessageFromServer(NetworkId networkId, Message::Type, BufferInfo::Type, const QString &target, const QString &text, const QString &sender = "", Message::Flags flags = Message::None);
180
181     void destroyNetwork(NetworkId);
182
183     void scriptRequest(QString script);
184
185     void clientsConnected();
186     void clientsDisconnected();
187
188     void updateIdentityBySender();
189
190     void saveSessionState() const;
191
192 private:
193     void processMessages();
194
195     void loadSettings();
196     void initScriptEngine();
197
198     /// Hook for converting events to the old displayMsg() handlers
199     Q_INVOKABLE void processMessageEvent(MessageEvent *event);
200
201     UserId _user;
202
203     SignalProxy *_signalProxy;
204     CoreAliasManager _aliasManager;
205     // QHash<NetworkId, NetworkConnection *> _connections;
206     QHash<NetworkId, CoreNetwork *> _networks;
207     //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
208     QHash<IdentityId, CoreIdentity *> _identities;
209
210     CoreBufferSyncer *_bufferSyncer;
211     CoreBacklogManager *_backlogManager;
212     CoreBufferViewManager *_bufferViewManager;
213     CoreDccConfig *_dccConfig;
214     CoreIrcListHelper *_ircListHelper;
215     CoreNetworkConfig *_networkConfig;
216     CoreCoreInfo _coreInfo;
217     CoreTransferManager *_transferManager;
218
219     EventManager *_eventManager;
220     EventStringifier *_eventStringifier; // should eventually move into client
221     CoreSessionEventProcessor *_sessionEventProcessor;
222     CtcpParser *_ctcpParser;
223     IrcParser *_ircParser;
224
225     QScriptEngine *scriptEngine;
226
227     QList<RawMessage> _messageQueue;
228     bool _processMessages;
229     CoreIgnoreListManager _ignoreListManager;
230 };
231
232
233 struct RawMessage {
234     NetworkId networkId;
235     Message::Type type;
236     BufferInfo::Type bufferType;
237     QString target;
238     QString text;
239     QString sender;
240     Message::Flags flags;
241     RawMessage(NetworkId networkId, Message::Type type, BufferInfo::Type bufferType, const QString &target, const QString &text, const QString &sender, Message::Flags flags)
242         : networkId(networkId), type(type), bufferType(bufferType), target(target), text(text), sender(sender), flags(flags) {}
243 };
244
245 #endif