mumble/ServerDB.cpp
Thorvald Natvig c3a9ae2008 *** empty log message ***
git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@168 05730e5d-ab1b-0410-a4ac-84af385074fa
2005-09-20 13:46:39 +00:00

105 lines
3.6 KiB
C++

/* Copyright (C) 2005, Thorvald Natvig <thorvald@natvig.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
- Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
- Neither the name of the Mumble Developers nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <QCoreApplication>
#include <QSqlDatabase>
#include <QStringList>
#include <QSettings>
#include <QFile>
#include <QDir>
#include <QSqlQuery>
#include "ServerDB.h"
ServerDB::ServerDB() {
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
QSettings qs;
QStringList datapaths;
int i;
datapaths << qs.value("DBPath").toString();
datapaths << QCoreApplication::instance()->applicationDirPath();
datapaths << QDir::currentPath();
datapaths << QDir::homePath();
bool found = false;
for(i = 0; (i < datapaths.size()) && ! found; i++) {
if (!datapaths[i].isEmpty()) {
QFile f(datapaths[i] + "/murmur.sqlite");
if (f.exists()) {
db.setDatabaseName(f.fileName());
found = db.open();
}
}
}
if (! found) {
for(i = 0; (i < datapaths.size()) && ! found; i++) {
if (!datapaths[i].isEmpty()) {
QFile f(datapaths[i] + "/mumble.sqlite");
db.setDatabaseName(f.fileName());
found = db.open();
}
}
}
if (! found) {
qFatal("ServerDB: Failed initialization");
} else {
qWarning("ServerDB: Opened successfully");
}
QSqlQuery query;
query.exec("CREATE TABLE players (player_id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, email TEXT, pw TEXT)");
query.exec("CREATE UNIQUE INDEX players_name ON players (name)");
query.exec("CREATE TABLE player_auth (player_auth_id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, pw TEXT, email TEXT, authcode TEXT)");
query.exec("CREATE UNIQUE INDEX player_auth_name ON player_auth(name)");
query.exec("CREATE UNIQUE INDEX player_auth_code ON player_auth(authcode)");
query.exec("INSERT INTO players (name, email, pw) VALUES ('Slicer', 'no@where', 'daff')");
}
int ServerDB::authenticate(QString &name, QString pw) {
int res = -2;
QSqlQuery query;
query.prepare("SELECT player_id,name,pw FROM players WHERE name like ?");
query.addBindValue(name);
query.exec();
if (query.next()) {
res = -1;
QString storedpw = query.value(2).toString();
if (storedpw == pw) {
name = query.value(1).toString();
res = query.value(0).toInt();
}
}
return res;
}