cyphesis/common/accountbase.cpp
Al Riddoch 861facab1d 2006-05-07 Al Riddoch <alriddoch@zepler.org>
* common/accountbase.cpp, server/Admin.cpp, server/Persistance.cpp,
	  server/server.cpp, server/slave.cpp: Add more checks to ensure
	  that not getting an ID from the database always fails cleanly.
2006-05-07 00:10:10 +00:00

143 lines
3.8 KiB
C++

// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2001-2005 Alistair Riddoch
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include "accountbase.h"
#include "system.h"
#include <Atlas/Message/Element.h>
int AccountBase::init()
{
return m_connection.initConnection(false);
}
bool AccountBase::putAccount(const Atlas::Message::MapType & o)
{
Atlas::Message::MapType::const_iterator I = o.find("username");
if ((I == o.end()) || (!I->second.isString())) {
return false;
}
const std::string & username = I->second.String();
I = o.find("password");
if ((I == o.end()) || (!I->second.isString())) {
return false;
}
const std::string & password = I->second.String();
std::string hash;
encrypt_password(password, hash);
std::string type = "player";
I = o.find("type");
if ((I != o.end()) && (I->second.isString())) {
type = I->second.String();
}
std::string columns = "username, type, password";
std::string values = "'";
values += username;
values += "', '";
values += type;
values += "', '";
values += hash;
values += "'";
std::string id;
if (m_connection.newId(id) < 0) {
return false;
}
return m_connection.createSimpleRow("accounts", id, columns, values);
}
bool AccountBase::modAccount(const Atlas::Message::MapType & o,
const std::string & accountId)
{
std::string columns;
bool empty = true;
Atlas::Message::MapType::const_iterator I = o.find("type");
if ((I != o.end()) && (I->second.isString())) {
empty = false;
columns += "type = '";
columns += I->second.String();
columns += "'";
}
I = o.find("password");
if ((I != o.end()) && (I->second.isString())) {
if (!empty) { columns += ", "; }
std::string hash;
encrypt_password(I->second.String(), hash);
columns += "password = '";
columns += hash;
columns += "'";
}
return m_connection.updateSimpleRow("accounts", "username",
accountId, columns);
}
bool AccountBase::delAccount(const std::string & account)
{
return false;
}
bool AccountBase::getAccount(const std::string & username,
Atlas::Message::MapType & o)
{
std::string namestr = "'" + username + "'";
DatabaseResult dr = m_connection.selectSimpleRowBy("accounts", "username", namestr);
if (dr.error()) {
return false;
}
if (dr.empty()) {
dr.clear();
return false;
}
if (dr.size() > 1) {
return false;
}
const char * c = dr.field("id");
if (c == 0) {
dr.clear();
return false;
}
std::string id = c;
c = dr.field("password");
if (c == 0) {
dr.clear();
return false;
}
std::string password = c;
c = dr.field("type");
if (c == 0) {
dr.clear();
return false;
}
std::string type = c;
dr.clear();
o["id"] = id;
o["username"] = username;
o["password"] = password;
o["type"] = type;
return true;
}