[36082e8] | 1 | #include "DataAccess.h"
|
---|
| 2 |
|
---|
| 3 | #include <iostream>
|
---|
[59061f6] | 4 | #include <sstream>
|
---|
[b128109] | 5 | #include <cstdlib>
|
---|
[36082e8] | 6 |
|
---|
| 7 | using namespace std;
|
---|
| 8 |
|
---|
| 9 | DataAccess::DataAccess()
|
---|
| 10 | {
|
---|
[59061f6] | 11 | mysql_init(&mysql);
|
---|
| 12 | connection = mysql_real_connect(&mysql, "localhost", "pythonAdmin", "pyMaster09*", "pythondb", 0, 0, 0);
|
---|
| 13 |
|
---|
| 14 | if (connection == NULL) {
|
---|
| 15 | cout << mysql_error(&mysql) << endl;
|
---|
| 16 | }else
|
---|
| 17 | cout << "Connection successful" << endl;
|
---|
[36082e8] | 18 | }
|
---|
| 19 |
|
---|
| 20 | DataAccess::~DataAccess()
|
---|
| 21 | {
|
---|
[59061f6] | 22 | mysql_close(connection);
|
---|
| 23 | mysql_close(&mysql);
|
---|
[36082e8] | 24 | }
|
---|
| 25 |
|
---|
[59061f6] | 26 | int DataAccess::insertPlayer(string username, string password)
|
---|
| 27 | {
|
---|
| 28 | ostringstream oss;
|
---|
| 29 |
|
---|
[b128109] | 30 | string salt = "$1$";
|
---|
| 31 | int random;
|
---|
| 32 | char chr;
|
---|
| 33 | for(int i=0; i<8; i++)
|
---|
| 34 | {
|
---|
| 35 | random = rand() % 62;
|
---|
| 36 | if (random < 26)
|
---|
| 37 | chr = (char)('a'+random);
|
---|
| 38 | else if (random < 52)
|
---|
| 39 | chr = (char)('A'+random-26);
|
---|
| 40 | else
|
---|
| 41 | chr = (char)('0'+random-52);
|
---|
| 42 | salt += chr;
|
---|
| 43 | }
|
---|
| 44 | salt += '$';
|
---|
| 45 |
|
---|
| 46 | string encrypted(crypt(password.c_str(), salt.c_str()));
|
---|
| 47 |
|
---|
| 48 | oss << "'" << username << "', '" << encrypted << "'";
|
---|
[59061f6] | 49 |
|
---|
| 50 | return insert("users", "name, password", oss.str());
|
---|
| 51 | }
|
---|
| 52 |
|
---|
[b128109] | 53 | int DataAccess::updatePlayer(string username, string password)
|
---|
| 54 | {
|
---|
| 55 | ostringstream values, where;
|
---|
| 56 |
|
---|
| 57 | values << "password='" << password << "'";
|
---|
| 58 |
|
---|
| 59 | where << "name='" << username << "'";
|
---|
| 60 |
|
---|
| 61 | return update("users", values.str(), where.str());
|
---|
| 62 | }
|
---|
| 63 |
|
---|
[59061f6] | 64 | Player *DataAccess::getPlayer(string username)
|
---|
[36082e8] | 65 | {
|
---|
| 66 | MYSQL_RES *result;
|
---|
| 67 | MYSQL_ROW row;
|
---|
[59061f6] | 68 | Player *p;
|
---|
| 69 | ostringstream oss;
|
---|
[36082e8] | 70 |
|
---|
[59061f6] | 71 | oss << "name='" << username << "'";
|
---|
[36082e8] | 72 |
|
---|
[59061f6] | 73 | result = select("users", oss.str().c_str());
|
---|
[36082e8] | 74 |
|
---|
[41ad8ed] | 75 | cout << "Got result" << endl;
|
---|
| 76 |
|
---|
[59061f6] | 77 | if (result == NULL) {
|
---|
[41ad8ed] | 78 | cout << "Error occured" << endl;
|
---|
[59061f6] | 79 | cout << mysql_error(connection) << endl;
|
---|
| 80 | return NULL;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
[60017fc] | 83 | if ( ( row = mysql_fetch_row(result)) != NULL ) {
|
---|
| 84 | cout << "Creating a new player" << endl;
|
---|
[59061f6] | 85 | p = new Player(string(row[1]), string(row[2]));
|
---|
[c76134b] | 86 | cout << "Created new player" << endl;
|
---|
[60017fc] | 87 | }else {
|
---|
[41ad8ed] | 88 | cout << "Returned no results for some reason" << endl;
|
---|
[59061f6] | 89 | p = NULL;
|
---|
[41ad8ed] | 90 | }
|
---|
[36082e8] | 91 |
|
---|
[59061f6] | 92 | mysql_free_result(result);
|
---|
[36082e8] | 93 |
|
---|
[59061f6] | 94 | return p;
|
---|
| 95 | }
|
---|
| 96 |
|
---|
[b128109] | 97 | // need to make sure this list is freed
|
---|
| 98 | // since we need to create a DataAccess class
|
---|
| 99 | // when calling these functions,
|
---|
| 100 | // we could free this list in the destructor
|
---|
| 101 | list<Player*>* DataAccess::getPlayers()
|
---|
[59061f6] | 102 | {
|
---|
| 103 | MYSQL_RES *result;
|
---|
| 104 | MYSQL_ROW row;
|
---|
| 105 | ostringstream oss;
|
---|
| 106 |
|
---|
| 107 | result = select("users", "");
|
---|
| 108 |
|
---|
| 109 | if (result == NULL) {
|
---|
[36082e8] | 110 | cout << mysql_error(connection) << endl;
|
---|
[b128109] | 111 | return NULL;
|
---|
[36082e8] | 112 | }
|
---|
| 113 |
|
---|
[b128109] | 114 | list<Player*>* lstPlayers = new list<Player*>();
|
---|
[36082e8] | 115 | while ( ( row = mysql_fetch_row(result)) != NULL ) {
|
---|
| 116 | cout << row[0] << ", " << row[1] << ", " << row[2] << endl;
|
---|
[b128109] | 117 | lstPlayers->push_back(new Player(row[1], row[2]));
|
---|
[36082e8] | 118 | }
|
---|
| 119 |
|
---|
| 120 | mysql_free_result(result);
|
---|
| 121 |
|
---|
[b128109] | 122 | return lstPlayers;
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | bool DataAccess::verifyPassword(string password, string encrypted)
|
---|
| 126 | {
|
---|
| 127 | string test(crypt(password.c_str(), encrypted.c_str()));
|
---|
| 128 |
|
---|
| 129 | return encrypted.compare(test) == 0;
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | int DataAccess::insert(string table, string columns, string values)
|
---|
| 133 | {
|
---|
| 134 | int query_state;
|
---|
| 135 | ostringstream oss;
|
---|
| 136 |
|
---|
| 137 | oss << "INSERT into " << table << " (" << columns << ") VALUES (" << values << ")";
|
---|
| 138 | cout << "query: " << oss.str() << endl;
|
---|
| 139 |
|
---|
| 140 | query_state = mysql_query(connection, oss.str().c_str());
|
---|
| 141 |
|
---|
| 142 | if (query_state != 0) {
|
---|
| 143 | cout << mysql_error(connection) << endl;
|
---|
| 144 | return 1;
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[59061f6] | 147 | return 0;
|
---|
| 148 | }
|
---|
| 149 |
|
---|
[b128109] | 150 | int DataAccess::update(string table, string values, string where)
|
---|
[59061f6] | 151 | {
|
---|
| 152 | int query_state;
|
---|
| 153 | ostringstream oss;
|
---|
| 154 |
|
---|
[b128109] | 155 | oss << "UPDATE " << table << " SET " << values << " WHERE " << where;
|
---|
[59061f6] | 156 | cout << "query: " << oss.str() << endl;
|
---|
| 157 |
|
---|
| 158 | query_state = mysql_query(connection, oss.str().c_str());
|
---|
| 159 |
|
---|
| 160 | if (query_state != 0) {
|
---|
| 161 | cout << mysql_error(connection) << endl;
|
---|
| 162 | return 1;
|
---|
| 163 | }
|
---|
[36082e8] | 164 |
|
---|
| 165 | return 0;
|
---|
| 166 | }
|
---|
[59061f6] | 167 |
|
---|
| 168 | MYSQL_RES *DataAccess::select(string table, string filter)
|
---|
| 169 | {
|
---|
| 170 | MYSQL_RES *result;
|
---|
| 171 | int query_state;
|
---|
| 172 | ostringstream oss;
|
---|
| 173 |
|
---|
| 174 | oss << "SELECT * FROM " << table;
|
---|
| 175 | if (!filter.empty())
|
---|
| 176 | oss << " WHERE " << filter;
|
---|
| 177 |
|
---|
| 178 | query_state = mysql_query(connection, oss.str().c_str());
|
---|
| 179 |
|
---|
| 180 | if (query_state != 0) {
|
---|
| 181 | cout << mysql_error(connection) << endl;
|
---|
| 182 | return NULL;
|
---|
| 183 | }
|
---|
| 184 |
|
---|
| 185 | return mysql_store_result(connection);
|
---|
| 186 | }
|
---|