X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsqlitestorage.cpp;h=2f4fa091219643a22513145ea4a1ccd4eb9319b2;hp=19710edf0ff39ec1d85b5d8d36b67c63ea3e707b;hb=16c9fb5606113ddbcbe4be61f8ed2b775f31055e;hpb=33705cac168ec977c7bd246d9f1f0ee520fe7c7b diff --git a/src/core/sqlitestorage.cpp b/src/core/sqlitestorage.cpp index 19710edf..2f4fa091 100644 --- a/src/core/sqlitestorage.cpp +++ b/src/core/sqlitestorage.cpp @@ -120,7 +120,7 @@ UserId SqliteStorage::addUser(const QString &user, const QString &password) { return uid; } -void SqliteStorage::updateUser(UserId user, const QString &password) { +bool SqliteStorage::updateUser(UserId user, const QString &password) { QSqlDatabase db = logDb(); db.transaction(); @@ -130,8 +130,10 @@ void SqliteStorage::updateUser(UserId user, const QString &password) { query.bindValue(":password", cryptedPassword(password)); lockForWrite(); safeExec(query); + bool success = query.numRowsAffected() != 0; db.commit(); unlock(); + return success; } void SqliteStorage::renameUser(UserId user, const QString &newName) { @@ -150,36 +152,71 @@ void SqliteStorage::renameUser(UserId user, const QString &newName) { } UserId SqliteStorage::validateUser(const QString &user, const QString &password) { - QSqlQuery query(logDb()); - query.prepare(queryString("select_authuser")); - query.bindValue(":username", user); - query.bindValue(":password", cryptedPassword(password)); + UserId userId; + + // this scope ensures that the query is freed in sqlite before we call unlock() + // this ensures that our thread doesn't hold a internal after unlock is called + // (see sqlites doc on implicit locking for details) + { + QSqlQuery query(logDb()); + query.prepare(queryString("select_authuser")); + query.bindValue(":username", user); + query.bindValue(":password", cryptedPassword(password)); + + lockForRead(); + safeExec(query); + + if(query.first()) { + userId = query.value(0).toInt(); + } + } + unlock(); - lockForRead(); - safeExec(query); + return userId; +} - if(query.first()) { - unlock(); - return query.value(0).toInt(); - } else { - unlock(); - return 0; +UserId SqliteStorage::getUserId(const QString &username) { + UserId userId; + + // this scope ensures that the query is freed in sqlite before we call unlock() + // this ensures that our thread doesn't hold a internal after unlock is called + // (see sqlites doc on implicit locking for details) + { + QSqlQuery query(logDb()); + query.prepare(queryString("select_userid")); + query.bindValue(":username", username); + + lockForRead(); + safeExec(query); + + if(query.first()) { + userId = query.value(0).toInt(); + } } + unlock(); + + return userId; } UserId SqliteStorage::internalUser() { - QSqlQuery query(logDb()); - query.prepare(queryString("select_internaluser")); - lockForRead(); - safeExec(query); - - if(query.first()) { - unlock(); - return query.value(0).toInt(); - } else { - unlock(); - return 0; + UserId userId; + + // this scope ensures that the query is freed in sqlite before we call unlock() + // this ensures that our thread doesn't hold a internal after unlock is called + // (see sqlites doc on implicit locking for details) + { + QSqlQuery query(logDb()); + query.prepare(queryString("select_internaluser")); + lockForRead(); + safeExec(query); + + if(query.first()) { + userId = query.value(0).toInt(); + } } + unlock(); + + return userId; } void SqliteStorage::delUser(UserId user) { @@ -423,7 +460,7 @@ QList SqliteStorage::identities(UserId user) { QList identities; QSqlDatabase db = logDb(); db.transaction(); - + QSqlQuery query(db); query.prepare(queryString("select_identities")); query.bindValue(":userid", user.toInt()); @@ -479,7 +516,7 @@ NetworkId SqliteStorage::createNetwork(UserId user, const NetworkInfo &info) { QSqlDatabase db = logDb(); db.transaction(); - + QSqlQuery query(db); query.prepare(queryString("insert_network")); query.bindValue(":userid", user.toInt()); @@ -507,7 +544,7 @@ NetworkId SqliteStorage::createNetwork(UserId user, const NetworkInfo &info) { return NetworkId(); } } - + db.commit(); unlock(); return networkId; @@ -722,7 +759,7 @@ QList SqliteStorage::connectedNetworks(UserId user) { QSqlDatabase db = logDb(); db.transaction(); - + QSqlQuery query(db); query.prepare(queryString("select_connected_networks")); query.bindValue(":userid", user.toInt()); @@ -1109,6 +1146,7 @@ bool SqliteStorage::mergeBuffersPermanently(const UserId &user, const BufferId & QSqlQuery delBufferQuery(db); delBufferQuery.prepare(queryString("delete_buffer_for_bufferid")); delBufferQuery.bindValue(":bufferid", bufferId2.toInt()); + delBufferQuery.bindValue(":userid", user.toInt()); safeExec(delBufferQuery); if(!watchQuery(delBufferQuery)) { db.rollback(); @@ -1217,7 +1255,7 @@ bool SqliteStorage::logMessages(MessageList &msgs) { QSqlDatabase db = logDb(); db.transaction(); - QSet senders; + QSet senders; QSqlQuery addSenderQuery(db); addSenderQuery.prepare(queryString("insert_sender")); @@ -1594,7 +1632,7 @@ bool SqliteMigrationReader::readMo(BacklogMO &backlog) { } backlog.messageid = value(0).toInt(); - backlog.time = QDateTime::fromTime_t(value(1).toInt()); + backlog.time = QDateTime::fromTime_t(value(1).toInt()).toUTC(); backlog.bufferid = value(2).toInt(); backlog.type = value(3).toInt(); backlog.flags = value(4).toInt();