Merge pull request #155 from TheOneRing/improve_connect
[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     // if initialization wasn't successful, we quit to keep from coming up unconfigured
385     case Storage::NotAvailable:
386         qCritical() << "FATAL: Selected storage backend is not available:" << backend;
387         exit(EXIT_FAILURE);
388     case Storage::IsReady:
389         // delete all other backends
390         _storageBackends.remove(backend);
391         unregisterStorageBackends();
392         connect(storage, SIGNAL(bufferInfoUpdated(UserId, const BufferInfo &)), this, SIGNAL(bufferInfoUpdated(UserId, const BufferInfo &)));
393     }
394     _storage = storage;
395     return true;
396 }
397
398
399 void Core::syncStorage()
400 {
401     if (_storage)
402         _storage->sync();
403 }
404
405
406 /*** Storage Access ***/
407 bool Core::createNetwork(UserId user, NetworkInfo &info)
408 {
409     NetworkId networkId = instance()->_storage->createNetwork(user, info);
410     if (!networkId.isValid())
411         return false;
412
413     info.networkId = networkId;
414     return true;
415 }
416
417
418 /*** Network Management ***/
419
420 bool Core::sslSupported()
421 {
422 #ifdef HAVE_SSL
423     SslServer *sslServer = qobject_cast<SslServer *>(&instance()->_server);
424     return sslServer && sslServer->isCertValid();
425 #else
426     return false;
427 #endif
428 }
429
430
431 bool Core::startListening()
432 {
433     // in mono mode we only start a local port if a port is specified in the cli call
434     if (Quassel::runMode() == Quassel::Monolithic && !Quassel::isOptionSet("port"))
435         return true;
436
437     bool success = false;
438     uint port = Quassel::optionValue("port").toUInt();
439
440     const QString listen = Quassel::optionValue("listen");
441     const QStringList listen_list = listen.split(",", QString::SkipEmptyParts);
442     if (listen_list.size() > 0) {
443         foreach(const QString listen_term, listen_list) { // TODO: handle multiple interfaces for same TCP version gracefully
444             QHostAddress addr;
445             if (!addr.setAddress(listen_term)) {
446                 qCritical() << qPrintable(
447                     tr("Invalid listen address %1")
448                     .arg(listen_term)
449                     );
450             }
451             else {
452                 switch (addr.protocol()) {
453                 case QAbstractSocket::IPv6Protocol:
454                     if (_v6server.listen(addr, port)) {
455                         quInfo() << qPrintable(
456                             tr("Listening for GUI clients on IPv6 %1 port %2 using protocol version %3")
457                             .arg(addr.toString())
458                             .arg(_v6server.serverPort())
459                             .arg(Quassel::buildInfo().protocolVersion)
460                             );
461                         success = true;
462                     }
463                     else
464                         quWarning() << qPrintable(
465                             tr("Could not open IPv6 interface %1:%2: %3")
466                             .arg(addr.toString())
467                             .arg(port)
468                             .arg(_v6server.errorString()));
469                     break;
470                 case QAbstractSocket::IPv4Protocol:
471                     if (_server.listen(addr, port)) {
472                         quInfo() << qPrintable(
473                             tr("Listening for GUI clients on IPv4 %1 port %2 using protocol version %3")
474                             .arg(addr.toString())
475                             .arg(_server.serverPort())
476                             .arg(Quassel::buildInfo().protocolVersion)
477                             );
478                         success = true;
479                     }
480                     else {
481                         // if v6 succeeded on Any, the port will be already in use - don't display the error then
482                         if (!success || _server.serverError() != QAbstractSocket::AddressInUseError)
483                             quWarning() << qPrintable(
484                                 tr("Could not open IPv4 interface %1:%2: %3")
485                                 .arg(addr.toString())
486                                 .arg(port)
487                                 .arg(_server.errorString()));
488                     }
489                     break;
490                 default:
491                     qCritical() << qPrintable(
492                         tr("Invalid listen address %1, unknown network protocol")
493                         .arg(listen_term)
494                         );
495                     break;
496                 }
497             }
498         }
499     }
500     if (!success)
501         quError() << qPrintable(tr("Could not open any network interfaces to listen on!"));
502
503     return success;
504 }
505
506
507 void Core::stopListening(const QString &reason)
508 {
509     bool wasListening = false;
510     if (_server.isListening()) {
511         wasListening = true;
512         _server.close();
513     }
514     if (_v6server.isListening()) {
515         wasListening = true;
516         _v6server.close();
517     }
518     if (wasListening) {
519         if (reason.isEmpty())
520             quInfo() << "No longer listening for GUI clients.";
521         else
522             quInfo() << qPrintable(reason);
523     }
524 }
525
526
527 void Core::incomingConnection()
528 {
529     QTcpServer *server = qobject_cast<QTcpServer *>(sender());
530     Q_ASSERT(server);
531     while (server->hasPendingConnections()) {
532         QTcpSocket *socket = server->nextPendingConnection();
533
534         CoreAuthHandler *handler = new CoreAuthHandler(socket, this);
535         _connectingClients.insert(handler);
536
537         connect(handler, SIGNAL(disconnected()), SLOT(clientDisconnected()));
538         connect(handler, SIGNAL(socketError(QAbstractSocket::SocketError,QString)), SLOT(socketError(QAbstractSocket::SocketError,QString)));
539         connect(handler, SIGNAL(handshakeComplete(RemotePeer*,UserId)), SLOT(setupClientSession(RemotePeer*,UserId)));
540
541         quInfo() << qPrintable(tr("Client connected from"))  << qPrintable(socket->peerAddress().toString());
542
543         if (!_configured) {
544             stopListening(tr("Closing server for basic setup."));
545         }
546     }
547 }
548
549
550 // Potentially called during the initialization phase (before handing the connection off to the session)
551 void Core::clientDisconnected()
552 {
553     CoreAuthHandler *handler = qobject_cast<CoreAuthHandler *>(sender());
554     Q_ASSERT(handler);
555
556     quInfo() << qPrintable(tr("Non-authed client disconnected:")) << qPrintable(handler->socket()->peerAddress().toString());
557     _connectingClients.remove(handler);
558     handler->deleteLater();
559
560     // make server listen again if still not configured
561     if (!_configured) {
562         startListening();
563     }
564
565     // TODO remove unneeded sessions - if necessary/possible...
566     // Suggestion: kill sessions if they are not connected to any network and client.
567 }
568
569
570 void Core::setupClientSession(RemotePeer *peer, UserId uid)
571 {
572     CoreAuthHandler *handler = qobject_cast<CoreAuthHandler *>(sender());
573     Q_ASSERT(handler);
574
575     // From now on everything is handled by the client session
576     disconnect(handler, 0, this, 0);
577     _connectingClients.remove(handler);
578     handler->deleteLater();
579
580     // Find or create session for validated user
581     sessionForUser(uid);
582
583     // as we are currently handling an event triggered by incoming data on this socket
584     // it is unsafe to directly move the socket to the client thread.
585     QCoreApplication::postEvent(this, new AddClientEvent(peer, uid));
586 }
587
588
589 void Core::customEvent(QEvent *event)
590 {
591     if (event->type() == AddClientEventId) {
592         AddClientEvent *addClientEvent = static_cast<AddClientEvent *>(event);
593         addClientHelper(addClientEvent->peer, addClientEvent->userId);
594         return;
595     }
596 }
597
598
599 void Core::addClientHelper(RemotePeer *peer, UserId uid)
600 {
601     // Find or create session for validated user
602     SessionThread *session = sessionForUser(uid);
603     session->addClient(peer);
604 }
605
606
607 void Core::setupInternalClientSession(InternalPeer *clientPeer)
608 {
609     if (!_configured) {
610         stopListening();
611         setupCoreForInternalUsage();
612     }
613
614     UserId uid;
615     if (_storage) {
616         uid = _storage->internalUser();
617     }
618     else {
619         qWarning() << "Core::setupInternalClientSession(): You're trying to run monolithic Quassel with an unusable Backend! Go fix it!";
620         return;
621     }
622
623     InternalPeer *corePeer = new InternalPeer(this);
624     corePeer->setPeer(clientPeer);
625     clientPeer->setPeer(corePeer);
626
627     // Find or create session for validated user
628     SessionThread *sessionThread = sessionForUser(uid);
629     sessionThread->addClient(corePeer);
630 }
631
632
633 SessionThread *Core::sessionForUser(UserId uid, bool restore)
634 {
635     if (_sessions.contains(uid))
636         return _sessions[uid];
637
638     SessionThread *session = new SessionThread(uid, restore, this);
639     _sessions[uid] = session;
640     session->start();
641     return session;
642 }
643
644
645 void Core::socketError(QAbstractSocket::SocketError err, const QString &errorString)
646 {
647     qWarning() << QString("Socket error %1: %2").arg(err).arg(errorString);
648 }
649
650
651 QVariantList Core::backendInfo()
652 {
653     QVariantList backends;
654     foreach(const Storage *backend, instance()->_storageBackends.values()) {
655         QVariantMap v;
656         v["DisplayName"] = backend->displayName();
657         v["Description"] = backend->description();
658         v["SetupKeys"] = backend->setupKeys();
659         v["SetupDefaults"] = backend->setupDefaults();
660         backends.append(v);
661     }
662     return backends;
663 }
664
665
666 // migration / backend selection
667 bool Core::selectBackend(const QString &backend)
668 {
669     // reregister all storage backends
670     registerStorageBackends();
671     if (!_storageBackends.contains(backend)) {
672         qWarning() << qPrintable(QString("Core::selectBackend(): unsupported backend: %1").arg(backend));
673         qWarning() << "    supported backends are:" << qPrintable(QStringList(_storageBackends.keys()).join(", "));
674         return false;
675     }
676
677     Storage *storage = _storageBackends[backend];
678     QVariantMap settings = promptForSettings(storage);
679
680     Storage::State storageState = storage->init(settings);
681     switch (storageState) {
682     case Storage::IsReady:
683         saveBackendSettings(backend, settings);
684         qWarning() << "Switched backend to:" << qPrintable(backend);
685         qWarning() << "Backend already initialized. Skipping Migration";
686         return true;
687     case Storage::NotAvailable:
688         qCritical() << "Backend is not available:" << qPrintable(backend);
689         return false;
690     case Storage::NeedsSetup:
691         if (!storage->setup(settings)) {
692             qWarning() << qPrintable(QString("Core::selectBackend(): unable to setup backend: %1").arg(backend));
693             return false;
694         }
695
696         if (storage->init(settings) != Storage::IsReady) {
697             qWarning() << qPrintable(QString("Core::migrateBackend(): unable to initialize backend: %1").arg(backend));
698             return false;
699         }
700
701         saveBackendSettings(backend, settings);
702         qWarning() << "Switched backend to:" << qPrintable(backend);
703         break;
704     }
705
706     // let's see if we have a current storage object we can migrate from
707     AbstractSqlMigrationReader *reader = getMigrationReader(_storage);
708     AbstractSqlMigrationWriter *writer = getMigrationWriter(storage);
709     if (reader && writer) {
710         qDebug() << qPrintable(QString("Migrating Storage backend %1 to %2...").arg(_storage->displayName(), storage->displayName()));
711         delete _storage;
712         _storage = 0;
713         delete storage;
714         storage = 0;
715         if (reader->migrateTo(writer)) {
716             qDebug() << "Migration finished!";
717             saveBackendSettings(backend, settings);
718             return true;
719         }
720         return false;
721         qWarning() << qPrintable(QString("Core::migrateDb(): unable to migrate storage backend! (No migration writer for %1)").arg(backend));
722     }
723
724     // inform the user why we cannot merge
725     if (!_storage) {
726         qWarning() << "No currently active backend. Skipping migration.";
727     }
728     else if (!reader) {
729         qWarning() << "Currently active backend does not support migration:" << qPrintable(_storage->displayName());
730     }
731     if (writer) {
732         qWarning() << "New backend does not support migration:" << qPrintable(backend);
733     }
734
735     // so we were unable to merge, but let's create a user \o/
736     _storage = storage;
737     createUser();
738     return true;
739 }
740
741
742 bool Core::createUser()
743 {
744     QTextStream out(stdout);
745     QTextStream in(stdin);
746     out << "Add a new user:" << endl;
747     out << "Username: ";
748     out.flush();
749     QString username = in.readLine().trimmed();
750
751     disableStdInEcho();
752     out << "Password: ";
753     out.flush();
754     QString password = in.readLine().trimmed();
755     out << endl;
756     out << "Repeat Password: ";
757     out.flush();
758     QString password2 = in.readLine().trimmed();
759     out << endl;
760     enableStdInEcho();
761
762     if (password != password2) {
763         qWarning() << "Passwords don't match!";
764         return false;
765     }
766     if (password.isEmpty()) {
767         qWarning() << "Password is empty!";
768         return false;
769     }
770
771     if (_configured && _storage->addUser(username, password).isValid()) {
772         out << "Added user " << username << " successfully!" << endl;
773         return true;
774     }
775     else {
776         qWarning() << "Unable to add user:" << qPrintable(username);
777         return false;
778     }
779 }
780
781
782 bool Core::changeUserPass(const QString &username)
783 {
784     QTextStream out(stdout);
785     QTextStream in(stdin);
786     UserId userId = _storage->getUserId(username);
787     if (!userId.isValid()) {
788         out << "User " << username << " does not exist." << endl;
789         return false;
790     }
791
792     out << "Change password for user: " << username << endl;
793
794     disableStdInEcho();
795     out << "New Password: ";
796     out.flush();
797     QString password = in.readLine().trimmed();
798     out << endl;
799     out << "Repeat Password: ";
800     out.flush();
801     QString password2 = in.readLine().trimmed();
802     out << endl;
803     enableStdInEcho();
804
805     if (password != password2) {
806         qWarning() << "Passwords don't match!";
807         return false;
808     }
809     if (password.isEmpty()) {
810         qWarning() << "Password is empty!";
811         return false;
812     }
813
814     if (_configured && _storage->updateUser(userId, password)) {
815         out << "Password changed successfully!" << endl;
816         return true;
817     }
818     else {
819         qWarning() << "Failed to change password!";
820         return false;
821     }
822 }
823
824
825 bool Core::changeUserPassword(UserId userId, const QString &password)
826 {
827     if (!isConfigured() || !userId.isValid())
828         return false;
829
830     return instance()->_storage->updateUser(userId, password);
831 }
832
833
834 AbstractSqlMigrationReader *Core::getMigrationReader(Storage *storage)
835 {
836     if (!storage)
837         return 0;
838
839     AbstractSqlStorage *sqlStorage = qobject_cast<AbstractSqlStorage *>(storage);
840     if (!sqlStorage) {
841         qDebug() << "Core::migrateDb(): only SQL based backends can be migrated!";
842         return 0;
843     }
844
845     return sqlStorage->createMigrationReader();
846 }
847
848
849 AbstractSqlMigrationWriter *Core::getMigrationWriter(Storage *storage)
850 {
851     if (!storage)
852         return 0;
853
854     AbstractSqlStorage *sqlStorage = qobject_cast<AbstractSqlStorage *>(storage);
855     if (!sqlStorage) {
856         qDebug() << "Core::migrateDb(): only SQL based backends can be migrated!";
857         return 0;
858     }
859
860     return sqlStorage->createMigrationWriter();
861 }
862
863
864 void Core::saveBackendSettings(const QString &backend, const QVariantMap &settings)
865 {
866     QVariantMap dbsettings;
867     dbsettings["Backend"] = backend;
868     dbsettings["ConnectionProperties"] = settings;
869     CoreSettings().setStorageSettings(dbsettings);
870 }
871
872
873 QVariantMap Core::promptForSettings(const Storage *storage)
874 {
875     QVariantMap settings;
876
877     QStringList keys = storage->setupKeys();
878     if (keys.isEmpty())
879         return settings;
880
881     QTextStream out(stdout);
882     QTextStream in(stdin);
883     out << "Default values are in brackets" << endl;
884
885     QVariantMap defaults = storage->setupDefaults();
886     QString value;
887     foreach(QString key, keys) {
888         QVariant val;
889         if (defaults.contains(key)) {
890             val = defaults[key];
891         }
892         out << key;
893         if (!val.toString().isEmpty()) {
894             out << " (" << val.toString() << ")";
895         }
896         out << ": ";
897         out.flush();
898
899         bool noEcho = QString("password").toLower().startsWith(key.toLower());
900         if (noEcho) {
901             disableStdInEcho();
902         }
903         value = in.readLine().trimmed();
904         if (noEcho) {
905             out << endl;
906             enableStdInEcho();
907         }
908
909         if (!value.isEmpty()) {
910             switch (defaults[key].type()) {
911             case QVariant::Int:
912                 val = QVariant(value.toInt());
913                 break;
914             default:
915                 val = QVariant(value);
916             }
917         }
918         settings[key] = val;
919     }
920     return settings;
921 }
922
923
924 #ifdef Q_OS_WIN
925 void Core::stdInEcho(bool on)
926 {
927     HANDLE hStdin = GetStdHandle(STD_INPUT_HANDLE);
928     DWORD mode = 0;
929     GetConsoleMode(hStdin, &mode);
930     if (on)
931         mode |= ENABLE_ECHO_INPUT;
932     else
933         mode &= ~ENABLE_ECHO_INPUT;
934     SetConsoleMode(hStdin, mode);
935 }
936
937
938 #else
939 void Core::stdInEcho(bool on)
940 {
941     termios t;
942     tcgetattr(STDIN_FILENO, &t);
943     if (on)
944         t.c_lflag |= ECHO;
945     else
946         t.c_lflag &= ~ECHO;
947     tcsetattr(STDIN_FILENO, TCSANOW, &t);
948 }
949
950
951 #endif /* Q_OS_WIN */