2c2a5df537323b27bc744f6d4a4cec15218ab82d
[quassel.git] / src / client / clientsyncer.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "clientsyncer.h"
22
23 #include <QNetworkProxy>
24
25 #include "client.h"
26 #include "global.h"
27 #include "identity.h"
28 #include "ircuser.h"
29 #include "ircchannel.h"
30 #include "network.h"
31 #include "signalproxy.h"
32
33
34 ClientSyncer::ClientSyncer(QObject *parent)
35   : QObject(parent)
36 {
37   socket = 0;
38   blockSize = 0;
39
40   connect(Client::signalProxy(), SIGNAL(disconnected()), this, SLOT(coreSocketDisconnected()));
41 }
42
43 ClientSyncer::~ClientSyncer() {
44 }
45
46 void ClientSyncer::coreHasData() {
47   QVariant item;
48   while(SignalProxy::readDataFromDevice(socket, blockSize, item)) {
49     emit recvPartialItem(1,1);
50     QVariantMap msg = item.toMap();
51     if(!msg.contains("MsgType")) {
52       // This core is way too old and does not even speak our init protocol...
53       emit connectionError(tr("The Quassel Core you try to connect to is too old! Please consider upgrading."));
54       disconnectFromCore();
55       return;
56     }
57     if(msg["MsgType"] == "ClientInitAck") {
58       clientInitAck(msg);
59     } else if(msg["MsgType"] == "ClientInitReject") {
60       emit connectionError(msg["Error"].toString());
61       disconnectFromCore();
62       return;
63     } else if(msg["MsgType"] == "CoreSetupAck") {
64       emit coreSetupSuccess();
65     } else if(msg["MsgType"] == "CoreSetupReject") {
66       emit coreSetupFailed(msg["Error"].toString());
67     } else if(msg["MsgType"] == "ClientLoginReject") {
68       emit loginFailed(msg["Error"].toString());
69     } else if(msg["MsgType"] == "ClientLoginAck") {
70       // prevent multiple signal connections
71       disconnect(this, SIGNAL(recvPartialItem(quint32, quint32)), this, SIGNAL(sessionProgress(quint32, quint32)));
72       connect(this, SIGNAL(recvPartialItem(quint32, quint32)), this, SIGNAL(sessionProgress(quint32, quint32)));
73       emit loginSuccess();
74     } else if(msg["MsgType"] == "SessionInit") {
75       sessionStateReceived(msg["SessionState"].toMap());
76       break; // this is definitively the last message we process here!
77     } else {
78       emit connectionError(tr("<b>Invalid data received from core!</b><br>Disconnecting."));
79       disconnectFromCore();
80       return;
81     }
82   }
83   if(blockSize > 0) {
84     emit recvPartialItem(socket->bytesAvailable(), blockSize);
85   }
86 }
87
88 void ClientSyncer::coreSocketError(QAbstractSocket::SocketError) {
89   qDebug() << "coreSocketError" << socket << socket->errorString();
90   emit connectionError(socket->errorString());
91   socket->deleteLater();
92 }
93
94 void ClientSyncer::disconnectFromCore() {
95   if(socket) socket->close();
96 }
97
98 void ClientSyncer::connectToCore(const QVariantMap &conn) {
99   // TODO implement SSL
100   coreConnectionInfo = conn;
101   //if(isConnected()) {
102   //  emit coreConnectionError(tr("Already connected to Core!"));
103   //  return;
104   // }
105   if(socket != 0) {
106     socket->deleteLater();
107     socket = 0;
108   }
109   if(conn["Host"].toString().isEmpty()) {
110     emit connectionError(tr("Internal connections not yet supported."));
111     return; // FIXME implement internal connections
112     //clientMode = LocalCore;
113     socket = new QBuffer(this);
114     connect(socket, SIGNAL(readyRead()), this, SLOT(coreHasData()));
115     socket->open(QIODevice::ReadWrite);
116     //QVariant state = connectToLocalCore(coreConnectionInfo["User"].toString(), coreConnectionInfo["Password"].toString());
117     //syncToCore(state);
118     coreSocketConnected();
119   } else {
120     //clientMode = RemoteCore;
121     //emit coreConnectionMsg(tr("Connecting..."));
122     Q_ASSERT(!socket);
123
124 #ifndef QT_NO_OPENSSL
125     QSslSocket *sock = new QSslSocket(Client::instance());
126 #else
127     if(conn["useSsl"].toBool()) {
128         emit connectionError(tr("<b>This client is built without SSL Support!</b><br />Disable the usage of SSL in the account settings."));
129         emit encrypted(false);
130         return;
131     }
132     QTcpSocket *sock = new QTcpSocket(Client::instance());
133 #endif
134
135     if(conn.contains("useProxy") && conn["useProxy"].toBool()) {
136       QNetworkProxy proxy((QNetworkProxy::ProxyType)conn["proxyType"].toInt(), conn["proxyHost"].toString(), conn["proxyPort"].toUInt(), conn["proxyUser"].toString(), conn["proxyPassword"].toString());
137       sock->setProxy(proxy);
138     }
139     socket = sock;
140     connect(sock, SIGNAL(readyRead()), this, SLOT(coreHasData()));
141     connect(sock, SIGNAL(connected()), this, SLOT(coreSocketConnected()));
142     connect(sock, SIGNAL(disconnected()), this, SLOT(coreSocketDisconnected()));
143     connect(sock, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(coreSocketError(QAbstractSocket::SocketError)));
144     connect(sock, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SIGNAL(socketStateChanged(QAbstractSocket::SocketState)));
145     sock->connectToHost(conn["Host"].toString(), conn["Port"].toUInt());
146   }
147 }
148
149 void ClientSyncer::coreSocketConnected() {
150   //connect(this, SIGNAL(recvPartialItem(uint, uint)), this, SIGNAL(coreConnectionProgress(uint, uint)));
151   // Phase One: Send client info and wait for core info
152
153   //emit coreConnectionMsg(tr("Synchronizing to core..."));
154   QVariantMap clientInit;
155   clientInit["MsgType"] = "ClientInit";
156   clientInit["ClientVersion"] = Global::quasselVersion;
157   clientInit["ClientDate"] = Global::quasselDate;
158   clientInit["ClientBuild"] = Global::quasselBuild; // this is a minimum, since we probably won't update for every commit
159   clientInit["UseSsl"] = coreConnectionInfo["useSsl"];
160   
161   SignalProxy::writeDataToDevice(socket, clientInit);
162 }
163
164 void ClientSyncer::coreSocketDisconnected() {
165   emit socketDisconnected();
166   Client::instance()->disconnectFromCore();
167
168   // FIXME handle disconnects gracefully in here as well!
169
170   coreConnectionInfo.clear();
171   netsToSync.clear();
172   channelsToSync.clear();
173   usersToSync.clear();
174   blockSize = 0;
175   //restartPhaseNull();
176 }
177
178 void ClientSyncer::clientInitAck(const QVariantMap &msg) {
179   // Core has accepted our version info and sent its own. Let's see if we accept it as well...
180   if(msg["CoreBuild"].toUInt() < Global::coreBuildNeeded) {
181     emit connectionError(tr("<b>The Quassel Core you are trying to connect to is too old!</b><br>"
182         "Need at least a Core Version %1 (Build >= %2) to connect.").arg(Global::quasselVersion).arg(Global::coreBuildNeeded));
183     disconnectFromCore();
184     return;
185   }
186   emit connectionMsg(msg["CoreInfo"].toString());
187
188 #ifndef QT_NO_OPENSSL
189   if(coreConnectionInfo["useSsl"].toBool()) {
190     if(msg["SupportSsl"].toBool()) {
191       QSslSocket *sslSocket = qobject_cast<QSslSocket *>(socket);
192       Q_ASSERT(sslSocket);
193       connect(sslSocket, SIGNAL(sslErrors(const QList<QSslError> &)), this, SLOT(sslErrors(const QList<QSslError> &)));
194       sslSocket->startClientEncryption();
195       emit encrypted(true);
196     } else {
197       emit connectionError(tr("<b>The Quassel Core you are trying to connect to does not support SSL!</b><br />If you want to connect anyways, disable the usage of SSL in the account settings."));
198       emit encrypted(false);
199       disconnectFromCore();
200       return;
201     }
202   }
203 #endif
204
205   if(!msg["Configured"].toBool()) {
206     // start wizard
207     emit startCoreSetup(msg["StorageBackends"].toList());
208   } else if(msg["LoginEnabled"].toBool()) {
209     emit startLogin();
210   }
211 }
212
213 void ClientSyncer::doCoreSetup(const QVariant &setupData) {
214   QVariantMap setup;
215   setup["MsgType"] = "CoreSetupData";
216   setup["SetupData"] = setupData;
217   SignalProxy::writeDataToDevice(socket, setup);
218 }
219
220 void ClientSyncer::loginToCore(const QString &user, const QString &passwd) {
221   emit connectionMsg(tr("Logging in..."));
222   QVariantMap clientLogin;
223   clientLogin["MsgType"] = "ClientLogin";
224   clientLogin["User"] = user;
225   clientLogin["Password"] = passwd;
226   SignalProxy::writeDataToDevice(socket, clientLogin);
227 }
228
229 void ClientSyncer::sessionStateReceived(const QVariantMap &state) {
230   emit sessionProgress(1, 1);
231   disconnect(this, SIGNAL(recvPartialItem(quint32, quint32)), this, SIGNAL(sessionProgress(quint32, quint32)));
232   disconnect(socket, 0, this, 0);  // rest of communication happens through SignalProxy
233   //Client::signalProxy()->addPeer(socket);
234   Client::instance()->setConnectedToCore(socket, coreConnectionInfo["AccountId"].value<AccountId>());
235   syncToCore(state);
236 }
237
238 void ClientSyncer::syncToCore(const QVariantMap &sessionState) {
239
240   // create identities
241   foreach(QVariant vid, sessionState["Identities"].toList()) {
242     Client::instance()->coreIdentityCreated(vid.value<Identity>());
243   }
244
245   // create buffers
246   // FIXME: get rid of this crap
247   QVariantList bufferinfos = sessionState["BufferInfos"].toList();
248   foreach(QVariant vinfo, bufferinfos) Client::buffer(vinfo.value<BufferInfo>());  // create Buffers and BufferItems
249
250   QVariantList networkids = sessionState["NetworkIds"].toList();
251
252   // prepare sync progress thingys... FIXME: Care about removal of networks
253   numNetsToSync = networkids.count();
254   numChannelsToSync = 0; //sessionState["IrcChannelCount"].toUInt();
255   numUsersToSync = 0; // sessionState["IrcUserCount"].toUInt(); qDebug() << numUsersToSync;
256   emit networksProgress(0, numNetsToSync);
257   emit channelsProgress(0, numChannelsToSync);
258   emit ircUsersProgress(0, numUsersToSync);
259
260   // create network objects
261   foreach(QVariant networkid, networkids) {
262     NetworkId netid = networkid.value<NetworkId>();
263     Network *net = new Network(netid, Client::instance());
264     netsToSync.insert(net);
265     connect(net, SIGNAL(initDone()), this, SLOT(networkInitDone()));
266     connect(net, SIGNAL(ircUserInitDone(IrcUser *)), this, SLOT(ircUserInitDone(IrcUser *)));
267     connect(net, SIGNAL(ircUserAdded(IrcUser *)), this, SLOT(ircUserAdded(IrcUser *)));
268     connect(net, SIGNAL(ircUserRemoved(QObject *)), this, SLOT(ircUserRemoved(QObject *)));
269     connect(net, SIGNAL(ircChannelInitDone(IrcChannel *)), this, SLOT(ircChannelInitDone(IrcChannel *)));
270     connect(net, SIGNAL(ircChannelAdded(IrcChannel *)), this, SLOT(ircChannelAdded(IrcChannel *)));
271     connect(net, SIGNAL(ircChannelRemoved(QObject *)), this, SLOT(ircChannelRemoved(QObject *)));
272     Client::addNetwork(net);
273   }
274   checkSyncState();
275 }
276
277 void ClientSyncer::networkInitDone() {
278   netsToSync.remove(sender());
279   emit networksProgress(numNetsToSync - netsToSync.count(), numNetsToSync);
280   checkSyncState();
281 }
282
283 void ClientSyncer::ircChannelInitDone(IrcChannel *chan) {
284   channelsToSync.remove(chan);
285   emit channelsProgress(numChannelsToSync - channelsToSync.count(), numChannelsToSync);
286   checkSyncState();
287 }
288
289 void ClientSyncer::ircChannelAdded(IrcChannel *chan) {
290   if(!chan->isInitialized()) {
291     channelsToSync.insert(chan);
292     numChannelsToSync++;
293     emit channelsProgress(numChannelsToSync - channelsToSync.count(), numChannelsToSync);
294     checkSyncState();
295   }
296 }
297
298 void ClientSyncer::ircChannelRemoved(QObject *chan) {
299   if(channelsToSync.contains(chan)) {
300     numChannelsToSync--;
301     channelsToSync.remove(chan);
302     emit channelsProgress(numChannelsToSync - channelsToSync.count(), numChannelsToSync);
303     checkSyncState();
304   }
305 }
306
307 void ClientSyncer::ircUserInitDone(IrcUser *user) {
308   usersToSync.remove(user);
309   emit ircUsersProgress(numUsersToSync - usersToSync.count(), numUsersToSync);
310   checkSyncState();
311 }
312
313 void ClientSyncer::ircUserAdded(IrcUser *user) {
314   if(!user->isInitialized()) {
315     usersToSync.insert(user);
316     numUsersToSync++;
317     emit ircUsersProgress(numUsersToSync - usersToSync.count(), numUsersToSync);
318     checkSyncState();
319   }
320 }
321
322 void ClientSyncer::ircUserRemoved(QObject *user) {
323   if(usersToSync.contains(user)) {
324     numUsersToSync--;
325     usersToSync.remove(user);
326     emit ircUsersProgress(numUsersToSync - usersToSync.count(), numUsersToSync);
327     checkSyncState();
328   }
329 }
330
331 void ClientSyncer::checkSyncState() {
332   if(usersToSync.count() + channelsToSync.count() + netsToSync.count() == 0) {
333     // done syncing!
334     /*
335     qDebug() << "done";
336     foreach(Network *net, _networks.values()) {
337       //disconnect(net, 0, this, SLOT(networkInitDone()));
338       //disconnect(net, 0, this, SLOT(ircUserInitDone(IrcUser *)));
339       //disconnect(net, 0, this, SLOT(ircUserAdded(IrcUser *)));
340       //disconnect(net, 0, this, SLOT(ircUserRemoved(QObject *)));
341       //disconnect(net, 0, this, SLOT(ircChannelInitDone(IrcChannel *)));
342       //disconnect(net, 0, this, SLOT(ircChannelAdded(IrcChannel *)));
343       //disconnect(net, 0, this, SLOT(ircChannelRemoved(QObject *)));
344       qDebug() << "disconnecting";
345       disconnect(net, SIGNAL(initDone()), this, SLOT(networkInitDone()));
346       disconnect(net, SIGNAL(ircUserInitDone(IrcUser *)), this, SLOT(ircUserInitDone(IrcUser *)));
347       disconnect(net, SIGNAL(ircUserAdded(IrcUser *)), this, SLOT(ircUserAdded(IrcUser *)));
348       disconnect(net, SIGNAL(ircUserRemoved(QObject *)), this, SLOT(ircUserRemoved(QObject *)));
349       disconnect(net, SIGNAL(ircChannelInitDone(IrcChannel *)), this, SLOT(ircChannelInitDone(IrcChannel *)));
350       disconnect(net, SIGNAL(ircChannelAdded(IrcChannel *)), this, SLOT(ircChannelAdded(IrcChannel *)));
351       disconnect(net, SIGNAL(ircChannelRemoved(QObject *)), this, SLOT(ircChannelRemoved(QObject *)));
352     }
353     */
354
355     Client::instance()->setSyncedToCore();
356     emit syncFinished();
357     //emit connected();
358     //emit connectionStateChanged(true);
359
360   }
361 }
362
363 #ifndef QT_NO_OPENSSL
364 void ClientSyncer::sslErrors(const QList<QSslError> &errors) {
365   qDebug() << "SSL Errors:";
366   foreach(QSslError err, errors)
367     qDebug() << "  " << err;
368
369   QSslSocket *socket = qobject_cast<QSslSocket *>(sender());
370   if(socket)
371     socket->ignoreSslErrors();
372 }
373 #endif