0cf3b1e900fc14ba7193ec546224f42d71c1c01e
[quassel.git] / src / core / core.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2015 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 #include <QCoreApplication>
22
23 #include "core.h"
24 #include "coreauthhandler.h"
25 #include "coresession.h"
26 #include "coresettings.h"
27 #include "logger.h"
28 #include "internalpeer.h"
29 #include "network.h"
30 #include "postgresqlstorage.h"
31 #include "quassel.h"
32 #include "sqlitestorage.h"
33 #include "util.h"
34
35 // migration related
36 #include <QFile>
37 #ifdef Q_OS_WIN
38 #  include <windows.h>
39 #else
40 #  include <unistd.h>
41 #  include <termios.h>
42 #endif /* Q_OS_WIN */
43
44 #ifdef HAVE_UMASK
45 #  include <sys/types.h>
46 #  include <sys/stat.h>
47 #endif /* HAVE_UMASK */
48
49 // ==============================
50 //  Custom Events
51 // ==============================
52 const int Core::AddClientEventId = QEvent::registerEventType();
53
54 class AddClientEvent : public QEvent
55 {
56 public:
57     AddClientEvent(RemotePeer *p, UserId uid) : QEvent(QEvent::Type(Core::AddClientEventId)), peer(p), userId(uid) {}
58     RemotePeer *peer;
59     UserId userId;
60 };
61
62
63 // ==============================
64 //  Core
65 // ==============================
66 Core *Core::instanceptr = 0;
67
68 Core *Core::instance()
69 {
70     if (instanceptr) return instanceptr;
71     instanceptr = new Core();
72     instanceptr->init();
73     return instanceptr;
74 }
75
76
77 void Core::destroy()
78 {
79     delete instanceptr;
80     instanceptr = 0;
81 }
82
83
84 Core::Core()
85     : QObject(),
86       _storage(0)
87 {
88 #ifdef HAVE_UMASK
89     umask(S_IRWXG | S_IRWXO);
90 #endif
91     _startTime = QDateTime::currentDateTime().toUTC(); // for uptime :)
92
93     Quassel::loadTranslation(QLocale::system());
94
95     // FIXME: MIGRATION 0.3 -> 0.4: Move database and core config to new location
96     // Move settings, note this does not delete the old files
97 #ifdef Q_OS_MAC
98     QSettings newSettings("quassel-irc.org", "quasselcore");
99 #else
100
101 # ifdef Q_OS_WIN
102     QSettings::Format format = QSettings::IniFormat;
103 # else
104     QSettings::Format format = QSettings::NativeFormat;
105 # endif
106     QString newFilePath = Quassel::configDirPath() + "quasselcore"
107                           + ((format == QSettings::NativeFormat) ? QLatin1String(".conf") : QLatin1String(".ini"));
108     QSettings newSettings(newFilePath, format);
109 #endif /* Q_OS_MAC */
110
111     if (newSettings.value("Config/Version").toUInt() == 0) {
112 #   ifdef Q_OS_MAC
113         QString org = "quassel-irc.org";
114 #   else
115         QString org = "Quassel Project";
116 #   endif
117         QSettings oldSettings(org, "Quassel Core");
118         if (oldSettings.allKeys().count()) {
119             qWarning() << "\n\n*** IMPORTANT: Config and data file locations have changed. Attempting to auto-migrate your core settings...";
120             foreach(QString key, oldSettings.allKeys())
121             newSettings.setValue(key, oldSettings.value(key));
122             newSettings.setValue("Config/Version", 1);
123             qWarning() << "*   Your core settings have been migrated to" << newSettings.fileName();
124
125 #ifndef Q_OS_MAC /* we don't need to move the db and cert for mac */
126 #ifdef Q_OS_WIN
127             QString quasselDir = qgetenv("APPDATA") + "/quassel/";
128 #elif defined Q_OS_MAC
129             QString quasselDir = QDir::homePath() + "/Library/Application Support/Quassel/";
130 #else
131             QString quasselDir = QDir::homePath() + "/.quassel/";
132 #endif
133
134             QFileInfo info(Quassel::configDirPath() + "quassel-storage.sqlite");
135             if (!info.exists()) {
136                 // move database, if we found it
137                 QFile oldDb(quasselDir + "quassel-storage.sqlite");
138                 if (oldDb.exists()) {
139                     bool success = oldDb.rename(Quassel::configDirPath() + "quassel-storage.sqlite");
140                     if (success)
141                         qWarning() << "*   Your database has been moved to" << Quassel::configDirPath() + "quassel-storage.sqlite";
142                     else
143                         qWarning() << "!!! Moving your database has failed. Please move it manually into" << Quassel::configDirPath();
144                 }
145             }
146             // move certificate
147             QFileInfo certInfo(quasselDir + "quasselCert.pem");
148             if (certInfo.exists()) {
149                 QFile cert(quasselDir + "quasselCert.pem");
150                 bool success = cert.rename(Quassel::configDirPath() + "quasselCert.pem");
151                 if (success)
152                     qWarning() << "*   Your certificate has been moved to" << Quassel::configDirPath() + "quasselCert.pem";
153                 else
154                     qWarning() << "!!! Moving your certificate has failed. Please move it manually into" << Quassel::configDirPath();
155             }
156 #endif /* !Q_OS_MAC */
157             qWarning() << "*** Migration completed.\n\n";
158         }
159     }
160     // MIGRATION end
161
162     // check settings version
163     // so far, we only have 1
164     CoreSettings s;
165     if (s.version() != 1) {
166         qCritical() << "Invalid core settings version, terminating!";
167         exit(EXIT_FAILURE);
168     }
169
170     registerStorageBackends();
171
172     connect(&_storageSyncTimer, SIGNAL(timeout()), this, SLOT(syncStorage()));
173     _storageSyncTimer.start(10 * 60 * 1000); // 10 minutes
174 }
175
176
177 void Core::init()
178 {
179     CoreSettings cs;
180     // legacy
181     QVariantMap dbsettings = cs.storageSettings().toMap();
182     _configured = initStorage(dbsettings.value("Backend").toString(), dbsettings.value("ConnectionProperties").toMap());
183
184     if (Quassel::isOptionSet("select-backend")) {
185         selectBackend(Quassel::optionValue("select-backend"));
186         exit(0);
187     }
188
189     if (!_configured) {
190         if (!_storageBackends.count()) {
191             qWarning() << qPrintable(tr("Could not initialize any storage backend! Exiting..."));
192             qWarning() << qPrintable(tr("Currently, Quassel supports SQLite3 and PostgreSQL. You need to build your\n"
193                                         "Qt library with the sqlite or postgres plugin enabled in order for quasselcore\n"
194                                         "to work."));
195             exit(1); // TODO make this less brutal (especially for mono client -> popup)
196         }
197         qWarning() << "Core is currently not configured! Please connect with a Quassel Client for basic setup.";
198     }
199
200     if (Quassel::isOptionSet("add-user")) {
201         exit(createUser() ? EXIT_SUCCESS : EXIT_FAILURE);
202
203     }
204
205     if (Quassel::isOptionSet("change-userpass")) {
206         exit(changeUserPass(Quassel::optionValue("change-userpass")) ?
207                        EXIT_SUCCESS : EXIT_FAILURE);
208     }
209
210     connect(&_server, SIGNAL(newConnection()), this, SLOT(incomingConnection()));
211     connect(&_v6server, SIGNAL(newConnection()), this, SLOT(incomingConnection()));
212     if (!startListening()) exit(1);  // TODO make this less brutal
213
214     if (Quassel::isOptionSet("oidentd"))
215         _oidentdConfigGenerator = new OidentdConfigGenerator(this);
216 }
217
218
219 Core::~Core()
220 {
221     // FIXME do we need more cleanup for handlers?
222     foreach(CoreAuthHandler *handler, _connectingClients) {
223         handler->deleteLater(); // disconnect non authed clients
224     }
225     qDeleteAll(_sessions);
226     qDeleteAll(_storageBackends);
227 }
228
229
230 /*** Session Restore ***/
231
232 void Core::saveState()
233 {
234     CoreSettings s;
235     QVariantMap state;
236     QVariantList activeSessions;
237     foreach(UserId user, instance()->_sessions.keys())
238         activeSessions << QVariant::fromValue<UserId>(user);
239     state["CoreStateVersion"] = 1;
240     state["ActiveSessions"] = activeSessions;
241     s.setCoreState(state);
242 }
243
244
245 void Core::restoreState()
246 {
247     if (!instance()->_configured) {
248         // qWarning() << qPrintable(tr("Cannot restore a state for an unconfigured core!"));
249         return;
250     }
251     if (instance()->_sessions.count()) {
252         qWarning() << qPrintable(tr("Calling restoreState() even though active sessions exist!"));
253         return;
254     }
255     CoreSettings s;
256     /* We don't check, since we are at the first version since switching to Git
257     uint statever = s.coreState().toMap()["CoreStateVersion"].toUInt();
258     if(statever < 1) {
259       qWarning() << qPrintable(tr("Core state too old, ignoring..."));
260       return;
261     }
262     */
263
264     QVariantList activeSessions = s.coreState().toMap()["ActiveSessions"].toList();
265     if (activeSessions.count() > 0) {
266         quInfo() << "Restoring previous core state...";
267         foreach(QVariant v, activeSessions) {
268             UserId user = v.value<UserId>();
269             instance()->sessionForUser(user, true);
270         }
271     }
272 }
273
274
275 /*** Core Setup ***/
276
277 QString Core::setup(const QString &adminUser, const QString &adminPassword, const QString &backend, const QVariantMap &setupData)
278 {
279     return instance()->setupCore(adminUser, adminPassword, backend, setupData);
280 }
281
282
283 QString Core::setupCore(const QString &adminUser, const QString &adminPassword, const QString &backend, const QVariantMap &setupData)
284 {
285     if (_configured)
286         return tr("Core is already configured! Not configuring again...");
287
288     if (adminUser.isEmpty() || adminPassword.isEmpty()) {
289         return tr("Admin user or password not set.");
290     }
291     if (!(_configured = initStorage(backend, setupData, true))) {
292         return tr("Could not setup storage!");
293     }
294
295     saveBackendSettings(backend, setupData);
296
297     quInfo() << qPrintable(tr("Creating admin user..."));
298     _storage->addUser(adminUser, adminPassword);
299     startListening(); // TODO check when we need this
300     return QString();
301 }
302
303
304 QString Core::setupCoreForInternalUsage()
305 {
306     Q_ASSERT(!_storageBackends.isEmpty());
307
308     qsrand(QDateTime::currentDateTime().toTime_t());
309     int pass = 0;
310     for (int i = 0; i < 10; i++) {
311         pass *= 10;
312         pass += qrand() % 10;
313     }
314
315     // mono client currently needs sqlite
316     return setupCore("AdminUser", QString::number(pass), "SQLite", QVariantMap());
317 }
318
319
320 /*** Storage Handling ***/
321 void Core::registerStorageBackends()
322 {
323     // Register storage backends here!
324     registerStorageBackend(new SqliteStorage(this));
325     registerStorageBackend(new PostgreSqlStorage(this));
326 }
327
328
329 bool Core::registerStorageBackend(Storage *backend)
330 {
331     if (backend->isAvailable()) {
332         _storageBackends[backend->displayName()] = backend;
333         return true;
334     }
335     else {
336         backend->deleteLater();
337         return false;
338     }
339 }
340
341
342 void Core::unregisterStorageBackends()
343 {
344     foreach(Storage *s, _storageBackends.values()) {
345         s->deleteLater();
346     }
347     _storageBackends.clear();
348 }
349
350
351 void Core::unregisterStorageBackend(Storage *backend)
352 {
353     _storageBackends.remove(backend->displayName());
354     backend->deleteLater();
355 }
356
357
358 // old db settings:
359 // "Type" => "sqlite"
360 bool Core::initStorage(const QString &backend, const QVariantMap &settings, bool setup)
361 {
362     _storage = 0;
363
364     if (backend.isEmpty()) {
365         return false;
366     }
367
368     Storage *storage = 0;
369     if (_storageBackends.contains(backend)) {
370         storage = _storageBackends[backend];
371     }
372     else {
373         qCritical() << "Selected storage backend is not available:" << backend;
374         return false;
375     }
376
377     Storage::State storageState = storage->init(settings);
378     switch (storageState) {
379     case Storage::NeedsSetup:
380         if (!setup)
381             return false;  // trigger setup process
382         if (storage->setup(settings))
383             return initStorage(backend, settings, false);
384         return false;
385
386     // if initialization wasn't successful, we quit to keep from coming up unconfigured
387     case Storage::NotAvailable:
388         qCritical() << "FATAL: Selected storage backend is not available:" << backend;
389         if (!setup)
390             exit(EXIT_FAILURE);
391         return false;
392
393     case Storage::IsReady:
394         // delete all other backends
395         _storageBackends.remove(backend);
396         unregisterStorageBackends();
397         connect(storage, SIGNAL(bufferInfoUpdated(UserId, const BufferInfo &)), this, SIGNAL(bufferInfoUpdated(UserId, const BufferInfo &)));
398     }
399     _storage = storage;
400     return true;
401 }
402
403
404 void Core::syncStorage()
405 {
406     if (_storage)
407         _storage->sync();
408 }
409
410
411 /*** Storage Access ***/
412 bool Core::createNetwork(UserId user, NetworkInfo &info)
413 {
414     NetworkId networkId = instance()->_storage->createNetwork(user, info);
415     if (!networkId.isValid())
416         return false;
417
418     info.networkId = networkId;
419     return true;
420 }
421
422
423 /*** Network Management ***/
424
425 bool Core::sslSupported()
426 {
427 #ifdef HAVE_SSL
428     SslServer *sslServer = qobject_cast<SslServer *>(&instance()->_server);
429     return sslServer && sslServer->isCertValid();
430 #else
431     return false;
432 #endif
433 }
434
435
436 bool Core::reloadCerts()
437 {
438 #ifdef HAVE_SSL
439     SslServer *sslServerv4 = qobject_cast<SslServer *>(&instance()->_server);
440     bool retv4 = sslServerv4->reloadCerts();
441
442     SslServer *sslServerv6 = qobject_cast<SslServer *>(&instance()->_v6server);
443     bool retv6 = sslServerv6->reloadCerts();
444
445     return retv4 && retv6;
446 #else
447     // SSL not supported, don't mark configuration reload as failed
448     return true;
449 #endif
450 }
451
452
453 bool Core::startListening()
454 {
455     // in mono mode we only start a local port if a port is specified in the cli call
456     if (Quassel::runMode() == Quassel::Monolithic && !Quassel::isOptionSet("port"))
457         return true;
458
459     bool success = false;
460     uint port = Quassel::optionValue("port").toUInt();
461
462     const QString listen = Quassel::optionValue("listen");
463     const QStringList listen_list = listen.split(",", QString::SkipEmptyParts);
464     if (listen_list.size() > 0) {
465         foreach(const QString listen_term, listen_list) { // TODO: handle multiple interfaces for same TCP version gracefully
466             QHostAddress addr;
467             if (!addr.setAddress(listen_term)) {
468                 qCritical() << qPrintable(
469                     tr("Invalid listen address %1")
470                     .arg(listen_term)
471                     );
472             }
473             else {
474                 switch (addr.protocol()) {
475                 case QAbstractSocket::IPv6Protocol:
476                     if (_v6server.listen(addr, port)) {
477                         quInfo() << qPrintable(
478                             tr("Listening for GUI clients on IPv6 %1 port %2 using protocol version %3")
479                             .arg(addr.toString())
480                             .arg(_v6server.serverPort())
481                             .arg(Quassel::buildInfo().protocolVersion)
482                             );
483                         success = true;
484                     }
485                     else
486                         quWarning() << qPrintable(
487                             tr("Could not open IPv6 interface %1:%2: %3")
488                             .arg(addr.toString())
489                             .arg(port)
490                             .arg(_v6server.errorString()));
491                     break;
492                 case QAbstractSocket::IPv4Protocol:
493                     if (_server.listen(addr, port)) {
494                         quInfo() << qPrintable(
495                             tr("Listening for GUI clients on IPv4 %1 port %2 using protocol version %3")
496                             .arg(addr.toString())
497                             .arg(_server.serverPort())
498                             .arg(Quassel::buildInfo().protocolVersion)
499                             );
500                         success = true;
501                     }
502                     else {
503                         // if v6 succeeded on Any, the port will be already in use - don't display the error then
504                         if (!success || _server.serverError() != QAbstractSocket::AddressInUseError)
505                             quWarning() << qPrintable(
506                                 tr("Could not open IPv4 interface %1:%2: %3")
507                                 .arg(addr.toString())
508                                 .arg(port)
509                                 .arg(_server.errorString()));
510                     }
511                     break;
512                 default:
513                     qCritical() << qPrintable(
514                         tr("Invalid listen address %1, unknown network protocol")
515                         .arg(listen_term)
516                         );
517                     break;
518                 }
519             }
520         }
521     }
522     if (!success)
523         quError() << qPrintable(tr("Could not open any network interfaces to listen on!"));
524
525     return success;
526 }
527
528
529 void Core::stopListening(const QString &reason)
530 {
531     bool wasListening = false;
532     if (_server.isListening()) {
533         wasListening = true;
534         _server.close();
535     }
536     if (_v6server.isListening()) {
537         wasListening = true;
538         _v6server.close();
539     }
540     if (wasListening) {
541         if (reason.isEmpty())
542             quInfo() << "No longer listening for GUI clients.";
543         else
544             quInfo() << qPrintable(reason);
545     }
546 }
547
548
549 void Core::incomingConnection()
550 {
551     QTcpServer *server = qobject_cast<QTcpServer *>(sender());
552     Q_ASSERT(server);
553     while (server->hasPendingConnections()) {
554         QTcpSocket *socket = server->nextPendingConnection();
555
556         CoreAuthHandler *handler = new CoreAuthHandler(socket, this);
557         _connectingClients.insert(handler);
558
559         connect(handler, SIGNAL(disconnected()), SLOT(clientDisconnected()));
560         connect(handler, SIGNAL(socketError(QAbstractSocket::SocketError,QString)), SLOT(socketError(QAbstractSocket::SocketError,QString)));
561         connect(handler, SIGNAL(handshakeComplete(RemotePeer*,UserId)), SLOT(setupClientSession(RemotePeer*,UserId)));
562
563         quInfo() << qPrintable(tr("Client connected from"))  << qPrintable(socket->peerAddress().toString());
564
565         if (!_configured) {
566             stopListening(tr("Closing server for basic setup."));
567         }
568     }
569 }
570
571
572 // Potentially called during the initialization phase (before handing the connection off to the session)
573 void Core::clientDisconnected()
574 {
575     CoreAuthHandler *handler = qobject_cast<CoreAuthHandler *>(sender());
576     Q_ASSERT(handler);
577
578     quInfo() << qPrintable(tr("Non-authed client disconnected:")) << qPrintable(handler->socket()->peerAddress().toString());
579     _connectingClients.remove(handler);
580     handler->deleteLater();
581
582     // make server listen again if still not configured
583     if (!_configured) {
584         startListening();
585     }
586
587     // TODO remove unneeded sessions - if necessary/possible...
588     // Suggestion: kill sessions if they are not connected to any network and client.
589 }
590
591
592 void Core::setupClientSession(RemotePeer *peer, UserId uid)
593 {
594     CoreAuthHandler *handler = qobject_cast<CoreAuthHandler *>(sender());
595     Q_ASSERT(handler);
596
597     // From now on everything is handled by the client session
598     disconnect(handler, 0, this, 0);
599     _connectingClients.remove(handler);
600     handler->deleteLater();
601
602     // Find or create session for validated user
603     sessionForUser(uid);
604
605     // as we are currently handling an event triggered by incoming data on this socket
606     // it is unsafe to directly move the socket to the client thread.
607     QCoreApplication::postEvent(this, new AddClientEvent(peer, uid));
608 }
609
610
611 void Core::customEvent(QEvent *event)
612 {
613     if (event->type() == AddClientEventId) {
614         AddClientEvent *addClientEvent = static_cast<AddClientEvent *>(event);
615         addClientHelper(addClientEvent->peer, addClientEvent->userId);
616         return;
617     }
618 }
619
620
621 void Core::addClientHelper(RemotePeer *peer, UserId uid)
622 {
623     // Find or create session for validated user
624     SessionThread *session = sessionForUser(uid);
625     session->addClient(peer);
626 }
627
628
629 void Core::setupInternalClientSession(InternalPeer *clientPeer)
630 {
631     if (!_configured) {
632         stopListening();
633         setupCoreForInternalUsage();
634     }
635
636     UserId uid;
637     if (_storage) {
638         uid = _storage->internalUser();
639     }
640     else {
641         qWarning() << "Core::setupInternalClientSession(): You're trying to run monolithic Quassel with an unusable Backend! Go fix it!";
642         return;
643     }
644
645     InternalPeer *corePeer = new InternalPeer(this);
646     corePeer->setPeer(clientPeer);
647     clientPeer->setPeer(corePeer);
648
649     // Find or create session for validated user
650     SessionThread *sessionThread = sessionForUser(uid);
651     sessionThread->addClient(corePeer);
652 }
653
654
655 SessionThread *Core::sessionForUser(UserId uid, bool restore)
656 {
657     if (_sessions.contains(uid))
658         return _sessions[uid];
659
660     SessionThread *session = new SessionThread(uid, restore, this);
661     _sessions[uid] = session;
662     session->start();
663     return session;
664 }
665
666
667 void Core::socketError(QAbstractSocket::SocketError err, const QString &errorString)
668 {
669     qWarning() << QString("Socket error %1: %2").arg(err).arg(errorString);
670 }
671
672
673 QVariantList Core::backendInfo()
674 {
675     QVariantList backends;
676     foreach(const Storage *backend, instance()->_storageBackends.values()) {
677         QVariantMap v;
678         v["DisplayName"] = backend->displayName();
679         v["Description"] = backend->description();
680         v["SetupKeys"] = backend->setupKeys();
681         v["SetupDefaults"] = backend->setupDefaults();
682         backends.append(v);
683     }
684     return backends;
685 }
686
687
688 // migration / backend selection
689 bool Core::selectBackend(const QString &backend)
690 {
691     // reregister all storage backends
692     registerStorageBackends();
693     if (!_storageBackends.contains(backend)) {
694         qWarning() << qPrintable(QString("Core::selectBackend(): unsupported backend: %1").arg(backend));
695         qWarning() << "    supported backends are:" << qPrintable(QStringList(_storageBackends.keys()).join(", "));
696         return false;
697     }
698
699     Storage *storage = _storageBackends[backend];
700     QVariantMap settings = promptForSettings(storage);
701
702     Storage::State storageState = storage->init(settings);
703     switch (storageState) {
704     case Storage::IsReady:
705         saveBackendSettings(backend, settings);
706         qWarning() << "Switched backend to:" << qPrintable(backend);
707         qWarning() << "Backend already initialized. Skipping Migration";
708         return true;
709     case Storage::NotAvailable:
710         qCritical() << "Backend is not available:" << qPrintable(backend);
711         return false;
712     case Storage::NeedsSetup:
713         if (!storage->setup(settings)) {
714             qWarning() << qPrintable(QString("Core::selectBackend(): unable to setup backend: %1").arg(backend));
715             return false;
716         }
717
718         if (storage->init(settings) != Storage::IsReady) {
719             qWarning() << qPrintable(QString("Core::migrateBackend(): unable to initialize backend: %1").arg(backend));
720             return false;
721         }
722
723         saveBackendSettings(backend, settings);
724         qWarning() << "Switched backend to:" << qPrintable(backend);
725         break;
726     }
727
728     // let's see if we have a current storage object we can migrate from
729     AbstractSqlMigrationReader *reader = getMigrationReader(_storage);
730     AbstractSqlMigrationWriter *writer = getMigrationWriter(storage);
731     if (reader && writer) {
732         qDebug() << qPrintable(QString("Migrating Storage backend %1 to %2...").arg(_storage->displayName(), storage->displayName()));
733         delete _storage;
734         _storage = 0;
735         delete storage;
736         storage = 0;
737         if (reader->migrateTo(writer)) {
738             qDebug() << "Migration finished!";
739             saveBackendSettings(backend, settings);
740             return true;
741         }
742         return false;
743         qWarning() << qPrintable(QString("Core::migrateDb(): unable to migrate storage backend! (No migration writer for %1)").arg(backend));
744     }
745
746     // inform the user why we cannot merge
747     if (!_storage) {
748         qWarning() << "No currently active backend. Skipping migration.";
749     }
750     else if (!reader) {
751         qWarning() << "Currently active backend does not support migration:" << qPrintable(_storage->displayName());
752     }
753     if (writer) {
754         qWarning() << "New backend does not support migration:" << qPrintable(backend);
755     }
756
757     // so we were unable to merge, but let's create a user \o/
758     _storage = storage;
759     createUser();
760     return true;
761 }
762
763
764 bool Core::createUser()
765 {
766     QTextStream out(stdout);
767     QTextStream in(stdin);
768     out << "Add a new user:" << endl;
769     out << "Username: ";
770     out.flush();
771     QString username = in.readLine().trimmed();
772
773     disableStdInEcho();
774     out << "Password: ";
775     out.flush();
776     QString password = in.readLine().trimmed();
777     out << endl;
778     out << "Repeat Password: ";
779     out.flush();
780     QString password2 = in.readLine().trimmed();
781     out << endl;
782     enableStdInEcho();
783
784     if (password != password2) {
785         qWarning() << "Passwords don't match!";
786         return false;
787     }
788     if (password.isEmpty()) {
789         qWarning() << "Password is empty!";
790         return false;
791     }
792
793     if (_configured && _storage->addUser(username, password).isValid()) {
794         out << "Added user " << username << " successfully!" << endl;
795         return true;
796     }
797     else {
798         qWarning() << "Unable to add user:" << qPrintable(username);
799         return false;
800     }
801 }
802
803
804 bool Core::changeUserPass(const QString &username)
805 {
806     QTextStream out(stdout);
807     QTextStream in(stdin);
808     UserId userId = _storage->getUserId(username);
809     if (!userId.isValid()) {
810         out << "User " << username << " does not exist." << endl;
811         return false;
812     }
813
814     out << "Change password for user: " << username << endl;
815
816     disableStdInEcho();
817     out << "New Password: ";
818     out.flush();
819     QString password = in.readLine().trimmed();
820     out << endl;
821     out << "Repeat Password: ";
822     out.flush();
823     QString password2 = in.readLine().trimmed();
824     out << endl;
825     enableStdInEcho();
826
827     if (password != password2) {
828         qWarning() << "Passwords don't match!";
829         return false;
830     }
831     if (password.isEmpty()) {
832         qWarning() << "Password is empty!";
833         return false;
834     }
835
836     if (_configured && _storage->updateUser(userId, password)) {
837         out << "Password changed successfully!" << endl;
838         return true;
839     }
840     else {
841         qWarning() << "Failed to change password!";
842         return false;
843     }
844 }
845
846
847 bool Core::changeUserPassword(UserId userId, const QString &password)
848 {
849     if (!isConfigured() || !userId.isValid())
850         return false;
851
852     return instance()->_storage->updateUser(userId, password);
853 }
854
855
856 AbstractSqlMigrationReader *Core::getMigrationReader(Storage *storage)
857 {
858     if (!storage)
859         return 0;
860
861     AbstractSqlStorage *sqlStorage = qobject_cast<AbstractSqlStorage *>(storage);
862     if (!sqlStorage) {
863         qDebug() << "Core::migrateDb(): only SQL based backends can be migrated!";
864         return 0;
865     }
866
867     return sqlStorage->createMigrationReader();
868 }
869
870
871 AbstractSqlMigrationWriter *Core::getMigrationWriter(Storage *storage)
872 {
873     if (!storage)
874         return 0;
875
876     AbstractSqlStorage *sqlStorage = qobject_cast<AbstractSqlStorage *>(storage);
877     if (!sqlStorage) {
878         qDebug() << "Core::migrateDb(): only SQL based backends can be migrated!";
879         return 0;
880     }
881
882     return sqlStorage->createMigrationWriter();
883 }
884
885
886 void Core::saveBackendSettings(const QString &backend, const QVariantMap &settings)
887 {
888     QVariantMap dbsettings;
889     dbsettings["Backend"] = backend;
890     dbsettings["ConnectionProperties"] = settings;
891     CoreSettings().setStorageSettings(dbsettings);
892 }
893
894
895 QVariantMap Core::promptForSettings(const Storage *storage)
896 {
897     QVariantMap settings;
898
899     QStringList keys = storage->setupKeys();
900     if (keys.isEmpty())
901         return settings;
902
903     QTextStream out(stdout);
904     QTextStream in(stdin);
905     out << "Default values are in brackets" << endl;
906
907     QVariantMap defaults = storage->setupDefaults();
908     QString value;
909     foreach(QString key, keys) {
910         QVariant val;
911         if (defaults.contains(key)) {
912             val = defaults[key];
913         }
914         out << key;
915         if (!val.toString().isEmpty()) {
916             out << " (" << val.toString() << ")";
917         }
918         out << ": ";
919         out.flush();
920
921         bool noEcho = QString("password").toLower().startsWith(key.toLower());
922         if (noEcho) {
923             disableStdInEcho();
924         }
925         value = in.readLine().trimmed();
926         if (noEcho) {
927             out << endl;
928             enableStdInEcho();
929         }
930
931         if (!value.isEmpty()) {
932             switch (defaults[key].type()) {
933             case QVariant::Int:
934                 val = QVariant(value.toInt());
935                 break;
936             default:
937                 val = QVariant(value);
938             }
939         }
940         settings[key] = val;
941     }
942     return settings;
943 }
944
945
946 #ifdef Q_OS_WIN
947 void Core::stdInEcho(bool on)
948 {
949     HANDLE hStdin = GetStdHandle(STD_INPUT_HANDLE);
950     DWORD mode = 0;
951     GetConsoleMode(hStdin, &mode);
952     if (on)
953         mode |= ENABLE_ECHO_INPUT;
954     else
955         mode &= ~ENABLE_ECHO_INPUT;
956     SetConsoleMode(hStdin, mode);
957 }
958
959
960 #else
961 void Core::stdInEcho(bool on)
962 {
963     termios t;
964     tcgetattr(STDIN_FILENO, &t);
965     if (on)
966         t.c_lflag |= ECHO;
967     else
968         t.c_lflag &= ~ECHO;
969     tcsetattr(STDIN_FILENO, TCSANOW, &t);
970 }
971
972
973 #endif /* Q_OS_WIN */