fb8bebc2f0e67c38b41d070697d2a7d44f0c68d9
[quassel.git] / src / client / clientsyncer.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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  *   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 "identity.h"
29 #include "network.h"
30 #include "networkmodel.h"
31 #include "quassel.h"
32 #include "signalproxy.h"
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 #ifdef HAVE_SSL
125     QSslSocket *sock = new QSslSocket(Client::instance());
126     connect(sock, SIGNAL(encrypted()), this, SIGNAL(encrypted()));
127 #else
128     if(conn["useSsl"].toBool()) {
129         emit connectionError(tr("<b>This client is built without SSL Support!</b><br />Disable the usage of SSL in the account settings."));
130         return;
131     }
132     QTcpSocket *sock = new QTcpSocket(Client::instance());
133 #endif
134 #ifndef QT_NO_NETWORKPROXY
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 #endif
140     socket = sock;
141     connect(sock, SIGNAL(readyRead()), this, SLOT(coreHasData()));
142     connect(sock, SIGNAL(connected()), this, SLOT(coreSocketConnected()));
143     connect(sock, SIGNAL(disconnected()), this, SLOT(coreSocketDisconnected()));
144     connect(sock, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(coreSocketError(QAbstractSocket::SocketError)));
145     connect(sock, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SIGNAL(socketStateChanged(QAbstractSocket::SocketState)));
146     sock->connectToHost(conn["Host"].toString(), conn["Port"].toUInt());
147   }
148 }
149
150 void ClientSyncer::coreSocketConnected() {
151   //connect(this, SIGNAL(recvPartialItem(uint, uint)), this, SIGNAL(coreConnectionProgress(uint, uint)));
152   // Phase One: Send client info and wait for core info
153
154   //emit coreConnectionMsg(tr("Synchronizing to core..."));
155   QVariantMap clientInit;
156   clientInit["MsgType"] = "ClientInit";
157   clientInit["ClientVersion"] = Quassel::buildInfo().fancyVersionString;
158   clientInit["ClientDate"] = Quassel::buildInfo().buildDate;
159   clientInit["ProtocolVersion"] = Quassel::buildInfo().protocolVersion;
160   clientInit["UseSsl"] = coreConnectionInfo["useSsl"];
161 #ifndef QT_NO_COMPRESS
162   clientInit["UseCompression"] = true;
163 #else
164   clientInit["UseCompression"] = false;
165 #endif
166
167   SignalProxy::writeDataToDevice(socket, clientInit);
168 }
169
170 void ClientSyncer::useInternalCore() {
171   AccountId internalAccountId;
172
173   CoreAccountSettings accountSettings;
174   QList<AccountId> knownAccounts = accountSettings.knownAccounts();
175   foreach(AccountId id, knownAccounts) {
176     if(!id.isValid())
177       continue;
178     QVariantMap data = accountSettings.retrieveAccountData(id);
179     if(data.contains("InternalAccount") && data["InternalAccount"].toBool()) {
180       internalAccountId = id;
181       break;
182     }
183   }
184
185   if(!internalAccountId.isValid()) {
186     for(AccountId i = 1;; i++) {
187       if(!knownAccounts.contains(i)) {
188         internalAccountId = i;
189         break;
190       }
191     }
192     QVariantMap data;
193     data["InternalAccount"] = true;
194     accountSettings.storeAccountData(internalAccountId, data);
195   }
196
197   coreConnectionInfo["AccountId"] = QVariant::fromValue<AccountId>(internalAccountId);
198   emit startInternalCore(this);
199   emit connectToInternalCore(Client::instance()->signalProxy());
200 }
201
202 void ClientSyncer::coreSocketDisconnected() {
203   emit socketDisconnected();
204   Client::instance()->disconnectFromCore();
205
206   // FIXME handle disconnects gracefully in here as well!
207
208   coreConnectionInfo.clear();
209   netsToSync.clear();
210   blockSize = 0;
211   //restartPhaseNull();
212 }
213
214 void ClientSyncer::clientInitAck(const QVariantMap &msg) {
215   // Core has accepted our version info and sent its own. Let's see if we accept it as well...
216   uint ver = msg["ProtocolVersion"].toUInt();
217   if(ver < Quassel::buildInfo().clientNeedsProtocol) {
218     emit connectionError(tr("<b>The Quassel Core you are trying to connect to is too old!</b><br>"
219         "Need at least core/client protocol v%1 to connect.").arg(Quassel::buildInfo().clientNeedsProtocol));
220     disconnectFromCore();
221     return;
222   }
223   emit connectionMsg(msg["CoreInfo"].toString());
224
225 #ifdef HAVE_SSL
226   if(coreConnectionInfo["useSsl"].toBool()) {
227     if(msg["SupportSsl"].toBool()) {
228       QSslSocket *sslSocket = qobject_cast<QSslSocket *>(socket);
229       Q_ASSERT(sslSocket);
230       connect(sslSocket, SIGNAL(sslErrors(const QList<QSslError> &)), this, SLOT(sslErrors(const QList<QSslError> &)));
231       sslSocket->startClientEncryption();
232     } else {
233       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."));
234       disconnectFromCore();
235       return;
236     }
237   }
238 #endif
239
240 #ifndef QT_NO_COMPRESS
241   if(msg["SupportsCompression"].toBool()) {
242     socket->setProperty("UseCompression", true);
243   }
244 #endif
245
246   if(!msg["Configured"].toBool()) {
247     // start wizard
248     emit startCoreSetup(msg["StorageBackends"].toList());
249   } else if(msg["LoginEnabled"].toBool()) {
250     emit startLogin();
251   }
252 }
253
254 void ClientSyncer::doCoreSetup(const QVariant &setupData) {
255   QVariantMap setup;
256   setup["MsgType"] = "CoreSetupData";
257   setup["SetupData"] = setupData;
258   SignalProxy::writeDataToDevice(socket, setup);
259 }
260
261 void ClientSyncer::loginToCore(const QString &user, const QString &passwd) {
262   emit connectionMsg(tr("Logging in..."));
263   QVariantMap clientLogin;
264   clientLogin["MsgType"] = "ClientLogin";
265   clientLogin["User"] = user;
266   clientLogin["Password"] = passwd;
267   SignalProxy::writeDataToDevice(socket, clientLogin);
268 }
269
270 void ClientSyncer::internalSessionStateReceived(const QVariant &packedState) {
271   QVariantMap state = packedState.toMap();
272   emit sessionProgress(1, 1);
273   Client::instance()->setConnectedToCore(coreConnectionInfo["AccountId"].value<AccountId>());
274   syncToCore(state);
275 }
276
277 void ClientSyncer::sessionStateReceived(const QVariantMap &state) {
278   emit sessionProgress(1, 1);
279   disconnect(this, SIGNAL(recvPartialItem(quint32, quint32)), this, SIGNAL(sessionProgress(quint32, quint32)));
280   disconnect(socket, 0, this, 0);  // rest of communication happens through SignalProxy
281   Client::instance()->setConnectedToCore(coreConnectionInfo["AccountId"].value<AccountId>(), socket);
282   syncToCore(state);
283 }
284
285 void ClientSyncer::syncToCore(const QVariantMap &sessionState) {
286   // create identities
287   foreach(QVariant vid, sessionState["Identities"].toList()) {
288     Client::instance()->coreIdentityCreated(vid.value<Identity>());
289   }
290
291   // create buffers
292   // FIXME: get rid of this crap
293   QVariantList bufferinfos = sessionState["BufferInfos"].toList();
294   NetworkModel *networkModel = Client::networkModel();
295   Q_ASSERT(networkModel);
296   foreach(QVariant vinfo, bufferinfos)
297     networkModel->bufferUpdated(vinfo.value<BufferInfo>());  // create BufferItems
298
299   QVariantList networkids = sessionState["NetworkIds"].toList();
300
301   // prepare sync progress thingys...
302   // FIXME: Care about removal of networks
303   numNetsToSync = networkids.count();
304   emit networksProgress(0, numNetsToSync);
305
306   // create network objects
307   foreach(QVariant networkid, networkids) {
308     NetworkId netid = networkid.value<NetworkId>();
309     if(Client::network(netid))
310       continue;
311     Network *net = new Network(netid, Client::instance());
312     netsToSync.insert(net);
313     connect(net, SIGNAL(initDone()), this, SLOT(networkInitDone()));
314     Client::addNetwork(net);
315   }
316   checkSyncState();
317 }
318
319 void ClientSyncer::networkInitDone() {
320   netsToSync.remove(sender());
321   emit networksProgress(numNetsToSync - netsToSync.count(), numNetsToSync);
322   checkSyncState();
323 }
324
325 void ClientSyncer::checkSyncState() {
326   if(netsToSync.isEmpty()) {
327     Client::instance()->setSyncedToCore();
328     emit syncFinished();
329   }
330 }
331
332 #ifdef HAVE_SSL
333 void ClientSyncer::sslErrors(const QList<QSslError> &errors) {
334   qDebug() << "SSL Errors:";
335   foreach(QSslError err, errors)
336     qDebug() << "  " << err;
337
338   QSslSocket *socket = qobject_cast<QSslSocket *>(sender());
339   if(socket)
340     socket->ignoreSslErrors();
341 }
342 #endif