Default identity is now created by the client, if no identity exists.
[quassel.git] / src / core / coresession.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 <QtScript>
22
23 #include "core.h"
24 #include "coresession.h"
25 #include "userinputhandler.h"
26 #include "signalproxy.h"
27 #include "corebuffersyncer.h"
28 #include "corebacklogmanager.h"
29 #include "corebufferviewmanager.h"
30 #include "coreirclisthelper.h"
31 #include "storage.h"
32
33 #include "coreidentity.h"
34 #include "corenetwork.h"
35 #include "ircuser.h"
36 #include "ircchannel.h"
37
38 #include "util.h"
39 #include "coreusersettings.h"
40 #include "logger.h"
41
42 CoreSession::CoreSession(UserId uid, bool restoreState, QObject *parent)
43   : QObject(parent),
44     _user(uid),
45     _signalProxy(new SignalProxy(SignalProxy::Server, 0, this)),
46     _aliasManager(this),
47     _bufferSyncer(new CoreBufferSyncer(this)),
48     _backlogManager(new CoreBacklogManager(this)),
49     _bufferViewManager(new CoreBufferViewManager(_signalProxy, this)),
50     _ircListHelper(new CoreIrcListHelper(this)),
51     _coreInfo(this),
52     scriptEngine(new QScriptEngine(this))
53 {
54   SignalProxy *p = signalProxy();
55   connect(p, SIGNAL(peerRemoved(QIODevice *)), this, SLOT(removeClient(QIODevice *)));
56
57   connect(p, SIGNAL(connected()), this, SLOT(clientsConnected()));
58   connect(p, SIGNAL(disconnected()), this, SLOT(clientsDisconnected()));
59
60   p->attachSlot(SIGNAL(sendInput(BufferInfo, QString)), this, SLOT(msgFromClient(BufferInfo, QString)));
61   p->attachSignal(this, SIGNAL(displayMsg(Message)));
62   p->attachSignal(this, SIGNAL(displayStatusMsg(QString, QString)));
63
64   p->attachSignal(this, SIGNAL(identityCreated(const Identity &)));
65   p->attachSignal(this, SIGNAL(identityRemoved(IdentityId)));
66   p->attachSlot(SIGNAL(createIdentity(const Identity &, const QVariantMap &)), this, SLOT(createIdentity(const Identity &, const QVariantMap &)));
67   p->attachSlot(SIGNAL(removeIdentity(IdentityId)), this, SLOT(removeIdentity(IdentityId)));
68
69   p->attachSignal(this, SIGNAL(networkCreated(NetworkId)));
70   p->attachSignal(this, SIGNAL(networkRemoved(NetworkId)));
71   p->attachSlot(SIGNAL(createNetwork(const NetworkInfo &)), this, SLOT(createNetwork(const NetworkInfo &)));
72   p->attachSlot(SIGNAL(removeNetwork(NetworkId)), this, SLOT(removeNetwork(NetworkId)));
73
74   loadSettings();
75   initScriptEngine();
76
77   connect(&(Core::instance()->syncTimer()), SIGNAL(timeout()), _bufferSyncer, SLOT(storeDirtyIds()));
78   connect(&(Core::instance()->syncTimer()), SIGNAL(timeout()), _bufferViewManager, SLOT(saveBufferViews()));
79
80   p->synchronize(_bufferSyncer);
81   p->synchronize(&aliasManager());
82   p->synchronize(_backlogManager);
83   p->synchronize(ircListHelper());
84   p->synchronize(&_coreInfo);
85
86   // Restore session state
87   if(restoreState)
88     restoreSessionState();
89
90   emit initialized();
91 }
92
93 CoreSession::~CoreSession() {
94   saveSessionState();
95   foreach(CoreNetwork *net, _networks.values()) {
96     delete net;
97   }
98 }
99
100 CoreNetwork *CoreSession::network(NetworkId id) const {
101   if(_networks.contains(id)) return _networks[id];
102   return 0;
103 }
104
105 CoreIdentity *CoreSession::identity(IdentityId id) const {
106   if(_identities.contains(id)) return _identities[id];
107   return 0;
108 }
109
110 void CoreSession::loadSettings() {
111   CoreUserSettings s(user());
112
113   // migrate to db
114   QList<IdentityId> ids = s.identityIds();
115   QList<NetworkInfo> networkInfos = Core::networks(user());
116   foreach(IdentityId id, ids) {
117     CoreIdentity identity(s.identity(id));
118     IdentityId newId = Core::createIdentity(user(), identity);
119     QList<NetworkInfo>::iterator networkIter = networkInfos.begin();
120     while(networkIter != networkInfos.end()) {
121       if(networkIter->identity == id) {
122         networkIter->identity = newId;
123         Core::updateNetwork(user(), *networkIter);
124         networkIter = networkInfos.erase(networkIter);
125       } else {
126         networkIter++;
127       }
128     }
129     s.removeIdentity(id);
130   }
131   // end of migration
132
133   foreach(CoreIdentity identity, Core::identities(user())) {
134     createIdentity(identity);
135   }
136
137   foreach(NetworkInfo info, Core::networks(user())) {
138     createNetwork(info);
139   }
140 }
141
142 void CoreSession::saveSessionState() const {
143   _bufferSyncer->storeDirtyIds();
144   _bufferViewManager->saveBufferViews();
145 }
146
147 void CoreSession::restoreSessionState() {
148   QList<NetworkId> nets = Core::connectedNetworks(user());
149   CoreNetwork *net = 0;
150   foreach(NetworkId id, nets) {
151     net = network(id);
152     Q_ASSERT(net);
153     net->connectToIrc();
154   }
155 }
156
157 void CoreSession::addClient(QIODevice *device) {
158   if(!device) {
159     qCritical() << "Invoking CoreSession::addClient with a QObject that is not a QIODevice!";
160   } else {
161     // if the socket is an orphan, the signalProxy adopts it.
162     // -> we don't need to care about it anymore
163     device->setParent(0);
164     signalProxy()->addPeer(device);
165     QVariantMap reply;
166     reply["MsgType"] = "SessionInit";
167     reply["SessionState"] = sessionState();
168     SignalProxy::writeDataToDevice(device, reply);
169   }
170 }
171
172 void CoreSession::addClient(SignalProxy *proxy) {
173   signalProxy()->addPeer(proxy);
174   emit sessionState(sessionState());
175 }
176
177 void CoreSession::removeClient(QIODevice *iodev) {
178   QTcpSocket *socket = qobject_cast<QTcpSocket *>(iodev);
179   if(socket)
180     quInfo() << qPrintable(tr("Client")) << qPrintable(socket->peerAddress().toString()) << qPrintable(tr("disconnected (UserId: %1).").arg(user().toInt()));
181 }
182
183 QHash<QString, QString> CoreSession::persistentChannels(NetworkId id) const {
184   return Core::persistentChannels(user(), id);
185   return QHash<QString, QString>();
186 }
187
188 // FIXME switch to BufferId
189 void CoreSession::msgFromClient(BufferInfo bufinfo, QString msg) {
190   CoreNetwork *net = network(bufinfo.networkId());
191   if(net) {
192     net->userInput(bufinfo, msg);
193   } else {
194     qWarning() << "Trying to send to unconnected network:" << msg;
195   }
196 }
197
198 // ALL messages coming pass through these functions before going to the GUI.
199 // So this is the perfect place for storing the backlog and log stuff.
200 void CoreSession::recvMessageFromServer(Message::Type type, BufferInfo::Type bufferType,
201                                         QString target, QString text, QString sender, Message::Flags flags) {
202   CoreNetwork *net = qobject_cast<CoreNetwork*>(this->sender());
203   Q_ASSERT(net);
204
205   BufferInfo bufferInfo = Core::bufferInfo(user(), net->networkId(), bufferType, target);
206   Message msg(bufferInfo, type, text, sender, flags);
207   msg.setMsgId(Core::storeMessage(msg));
208   Q_ASSERT(msg.msgId() != 0);
209   emit displayMsg(msg);
210 }
211
212 void CoreSession::recvStatusMsgFromServer(QString msg) {
213   CoreNetwork *net = qobject_cast<CoreNetwork*>(sender());
214   Q_ASSERT(net);
215   emit displayStatusMsg(net->networkName(), msg);
216 }
217
218 QList<BufferInfo> CoreSession::buffers() const {
219   return Core::requestBuffers(user());
220 }
221
222
223 QVariant CoreSession::sessionState() {
224   QVariantMap v;
225
226   QVariantList bufs;
227   foreach(BufferInfo id, buffers()) bufs << qVariantFromValue(id);
228   v["BufferInfos"] = bufs;
229   QVariantList networkids;
230   foreach(NetworkId id, _networks.keys()) networkids << qVariantFromValue(id);
231   v["NetworkIds"] = networkids;
232
233   quint32 ircusercount = 0;
234   quint32 ircchannelcount = 0;
235   foreach(Network *net, _networks.values()) {
236     ircusercount += net->ircUserCount();
237     ircchannelcount += net->ircChannelCount();
238   }
239   v["IrcUserCount"] = ircusercount;
240   v["IrcChannelCount"] = ircchannelcount;
241
242   QList<QVariant> idlist;
243   foreach(Identity *i, _identities.values()) idlist << qVariantFromValue(*i);
244   v["Identities"] = idlist;
245
246   //v["Payload"] = QByteArray(100000000, 'a');  // for testing purposes
247   return v;
248 }
249
250 void CoreSession::initScriptEngine() {
251   signalProxy()->attachSlot(SIGNAL(scriptRequest(QString)), this, SLOT(scriptRequest(QString)));
252   signalProxy()->attachSignal(this, SIGNAL(scriptResult(QString)));
253
254   // FIXME
255   //QScriptValue storage_ = scriptEngine->newQObject(storage);
256   //scriptEngine->globalObject().setProperty("storage", storage_);
257 }
258
259 void CoreSession::scriptRequest(QString script) {
260   emit scriptResult(scriptEngine->evaluate(script).toString());
261 }
262
263 /*** Identity Handling ***/
264 void CoreSession::createIdentity(const Identity &identity, const QVariantMap &additional) {
265 #ifndef HAVE_SSL
266   Q_UNUSED(additional)
267 #endif
268
269   CoreIdentity coreIdentity(identity);
270 #ifdef HAVE_SSL
271   if(additional.contains("KeyPem"))
272     coreIdentity.setSslKey(additional["KeyPem"].toByteArray());
273   if(additional.contains("CertPem"))
274     coreIdentity.setSslCert(additional["CertPem"].toByteArray());
275 #endif
276   IdentityId id = Core::createIdentity(user(), coreIdentity);
277   if(!id.isValid())
278     return;
279   else
280     createIdentity(coreIdentity);
281 }
282
283 void CoreSession::createIdentity(const CoreIdentity &identity) {
284   CoreIdentity *coreIdentity = new CoreIdentity(identity, this);
285   _identities[identity.id()] = coreIdentity;
286   // CoreIdentity has it's own synchronize method since it's "private" sslManager needs to be synced aswell
287   coreIdentity->synchronize(signalProxy());
288   connect(coreIdentity, SIGNAL(updated(const QVariantMap &)), this, SLOT(updateIdentityBySender()));
289   emit identityCreated(*coreIdentity);
290 }
291
292 void CoreSession::updateIdentityBySender() {
293   CoreIdentity *identity = qobject_cast<CoreIdentity *>(sender());
294   if(!identity)
295     return;
296   Core::updateIdentity(user(), *identity);
297 }
298
299 void CoreSession::removeIdentity(IdentityId id) {
300   CoreIdentity *identity = _identities.take(id);
301   if(identity) {
302     emit identityRemoved(id);
303     Core::removeIdentity(user(), id);
304     identity->deleteLater();
305   }
306 }
307
308 /*** Network Handling ***/
309
310 void CoreSession::createNetwork(const NetworkInfo &info_) {
311   NetworkInfo info = info_;
312   int id;
313
314   if(!info.networkId.isValid())
315     Core::createNetwork(user(), info);
316
317   if(!info.networkId.isValid()) {
318     qWarning() << qPrintable(tr("CoreSession::createNetwork(): Got invalid networkId from Core when trying to create network %1!").arg(info.networkName));
319     return;
320   }
321
322   id = info.networkId.toInt();
323   if(!_networks.contains(id)) {
324     CoreNetwork *net = new CoreNetwork(id, this);
325     connect(net, SIGNAL(displayMsg(Message::Type, BufferInfo::Type, QString, QString, QString, Message::Flags)),
326             this, SLOT(recvMessageFromServer(Message::Type, BufferInfo::Type, QString, QString, QString, Message::Flags)));
327     connect(net, SIGNAL(displayStatusMsg(QString)), this, SLOT(recvStatusMsgFromServer(QString)));
328
329     net->setNetworkInfo(info);
330     net->setProxy(signalProxy());
331     _networks[id] = net;
332     signalProxy()->synchronize(net);
333     emit networkCreated(id);
334   } else {
335     qWarning() << qPrintable(tr("CoreSession::createNetwork(): Trying to create a network that already exists, updating instead!"));
336     _networks[info.networkId]->requestSetNetworkInfo(info);
337   }
338 }
339
340 void CoreSession::removeNetwork(NetworkId id) {
341   // Make sure the network is disconnected!
342   CoreNetwork *net = network(id);
343   if(!net)
344     return;
345
346   if(net->connectionState() != Network::Disconnected) {
347     connect(net, SIGNAL(disconnected(NetworkId)), this, SLOT(destroyNetwork(NetworkId)));
348     net->disconnectFromIrc();
349   } else {
350     destroyNetwork(id);
351   }
352 }
353
354 void CoreSession::destroyNetwork(NetworkId id) {
355   QList<BufferId> removedBuffers = Core::requestBufferIdsForNetwork(user(), id);
356   Network *net = _networks.take(id);
357   if(net && Core::removeNetwork(user(), id)) {
358     foreach(BufferId bufferId, removedBuffers) {
359       _bufferSyncer->removeBuffer(bufferId);
360     }
361     emit networkRemoved(id);
362     net->deleteLater();
363   }
364 }
365
366 void CoreSession::renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName) {
367   BufferInfo bufferInfo = Core::bufferInfo(user(), networkId, BufferInfo::QueryBuffer, oldName, false);
368   if(bufferInfo.isValid()) {
369     _bufferSyncer->renameBuffer(bufferInfo.bufferId(), newName);
370   }
371 }
372
373 void CoreSession::clientsConnected() {
374   QHash<NetworkId, CoreNetwork *>::iterator netIter = _networks.begin();
375   Identity *identity = 0;
376   CoreNetwork *net = 0;
377   IrcUser *me = 0;
378   QString awayReason;
379   while(netIter != _networks.end()) {
380     net = *netIter;
381     netIter++;
382
383     if(!net->isConnected())
384       continue;
385     identity = net->identityPtr();
386     if(!identity)
387       continue;
388     me = net->me();
389     if(!me)
390       continue;
391
392     if(identity->detachAwayEnabled() && me->isAway()) {
393       net->userInputHandler()->handleAway(BufferInfo(), QString());
394     }
395   }
396 }
397
398 void CoreSession::clientsDisconnected() {
399   QHash<NetworkId, CoreNetwork *>::iterator netIter = _networks.begin();
400   Identity *identity = 0;
401   CoreNetwork *net = 0;
402   IrcUser *me = 0;
403   QString awayReason;
404   while(netIter != _networks.end()) {
405     net = *netIter;
406     netIter++;
407
408     if(!net->isConnected())
409       continue;
410     identity = net->identityPtr();
411     if(!identity)
412       continue;
413     me = net->me();
414     if(!me)
415       continue;
416
417     if(identity->detachAwayEnabled() && !me->isAway()) {
418       if(identity->detachAwayReasonEnabled())
419         awayReason = identity->detachAwayReason();
420       else
421         awayReason = identity->awayReason();
422       net->setAutoAwayActive(true);
423       net->userInputHandler()->handleAway(BufferInfo(), awayReason);
424     }
425   }
426 }