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