2008-08-04 05:44:28 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
#Copyright 2008 Steffen Jobbagy-Felso
|
|
|
|
#This program is free software: you can redistribute it and/or modify
|
|
|
|
#it under the terms of the GNU Affero General Public License as published by
|
|
|
|
#the Free Software Foundation, version 3 of the License.
|
|
|
|
#
|
|
|
|
#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 Affero General Public License
|
|
|
|
#along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#In the "official" distribution you can find the license in
|
|
|
|
#agpl-3.0.txt in the docs folder of the package.
|
|
|
|
|
|
|
|
import os
|
2008-10-07 19:41:06 +02:00
|
|
|
import re
|
2008-08-04 05:44:28 +02:00
|
|
|
import fpdb_simple
|
2008-10-07 11:33:37 +02:00
|
|
|
import FpdbSQLQueries
|
2008-08-04 05:44:28 +02:00
|
|
|
|
|
|
|
class fpdb_db:
|
|
|
|
def __init__(self):
|
|
|
|
"""Simple constructor, doesnt really do anything"""
|
|
|
|
self.db=None
|
|
|
|
self.cursor=None
|
2008-10-07 11:33:37 +02:00
|
|
|
self.sql = {}
|
2008-08-04 05:44:28 +02:00
|
|
|
self.MYSQL_INNODB=2
|
|
|
|
self.PGSQL=3
|
2008-09-15 22:31:55 +02:00
|
|
|
self.SQLITE=4
|
2008-08-04 05:44:28 +02:00
|
|
|
#end def __init__
|
|
|
|
|
|
|
|
def connect(self, backend, host, database, user, password):
|
|
|
|
"""Connects a database with the given parameters"""
|
|
|
|
self.backend=backend
|
|
|
|
self.host=host
|
|
|
|
self.database=database
|
|
|
|
self.user=user
|
|
|
|
self.password=password
|
2008-08-04 22:51:32 +02:00
|
|
|
if backend==self.MYSQL_INNODB:
|
2008-08-04 05:44:28 +02:00
|
|
|
import MySQLdb
|
|
|
|
self.db=MySQLdb.connect(host = host, user = user, passwd = password, db = database)
|
|
|
|
elif backend==self.PGSQL:
|
2008-09-15 22:31:55 +02:00
|
|
|
import psycopg2
|
|
|
|
self.db = psycopg2.connect(host = host, user = user, password = password, database = database)
|
2008-08-04 05:44:28 +02:00
|
|
|
else:
|
|
|
|
raise fpdb_simple.FpdbError("unrecognised database backend:"+backend)
|
|
|
|
self.cursor=self.db.cursor()
|
2008-11-07 06:12:48 +01:00
|
|
|
self.cursor.execute('SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED')
|
2008-10-07 11:33:37 +02:00
|
|
|
# Set up query dictionary as early in the connection process as we can.
|
|
|
|
self.sql = FpdbSQLQueries.FpdbSQLQueries(self.get_backend_name())
|
2008-09-01 17:18:01 +02:00
|
|
|
self.wrongDbVersion=False
|
2008-08-13 04:07:44 +02:00
|
|
|
try:
|
2008-08-15 02:45:40 +02:00
|
|
|
self.cursor.execute("SELECT * FROM Settings")
|
2008-08-13 04:07:44 +02:00
|
|
|
settings=self.cursor.fetchone()
|
2008-10-06 05:26:59 +02:00
|
|
|
if settings[0]!=118:
|
2008-08-16 23:03:27 +02:00
|
|
|
print "outdated or too new database version - please recreate tables"
|
2008-09-01 17:18:01 +02:00
|
|
|
self.wrongDbVersion=True
|
2008-08-13 04:07:44 +02:00
|
|
|
except:# _mysql_exceptions.ProgrammingError:
|
|
|
|
print "failed to read settings table - please recreate tables"
|
2008-09-01 17:18:01 +02:00
|
|
|
self.wrongDbVersion=True
|
2008-08-04 05:44:28 +02:00
|
|
|
#end def connect
|
|
|
|
|
|
|
|
def disconnect(self, due_to_error=False):
|
|
|
|
"""Disconnects the DB"""
|
|
|
|
if due_to_error:
|
|
|
|
self.db.rollback()
|
|
|
|
else:
|
|
|
|
self.db.commit()
|
|
|
|
self.cursor.close()
|
|
|
|
self.db.close()
|
|
|
|
#end def disconnect
|
|
|
|
|
|
|
|
def reconnect(self, due_to_error=False):
|
|
|
|
"""Reconnects the DB"""
|
2008-08-06 22:09:29 +02:00
|
|
|
#print "started fpdb_db.reconnect"
|
2008-08-04 05:44:28 +02:00
|
|
|
self.disconnect(due_to_error)
|
|
|
|
self.connect(self.backend, self.host, self.database, self.user, self.password)
|
2008-10-07 19:16:26 +02:00
|
|
|
|
|
|
|
def create_tables(self):
|
|
|
|
#todo: should detect and fail gracefully if tables already exist.
|
|
|
|
self.cursor.execute(self.sql.query['createSettingsTable'])
|
2008-12-03 10:18:20 +01:00
|
|
|
self.cursor.execute(self.sql.query['createSitesTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createGametypesTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createPlayersTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createAutoratesTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createHandsTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createBoardCardsTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createTourneyTypesTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createTourneysTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createTourneysPlayersTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createHandsPlayersTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createHandsActionsTable'])
|
|
|
|
self.cursor.execute(self.sql.query['createHudCacheTable'])
|
|
|
|
self.cursor.execute(self.sql.query['addTourneyIndex'])
|
|
|
|
self.cursor.execute(self.sql.query['addHandsIndex'])
|
|
|
|
self.cursor.execute(self.sql.query['addPlayersIndex'])
|
2008-10-07 19:16:26 +02:00
|
|
|
self.fillDefaultData()
|
2008-12-03 10:18:20 +01:00
|
|
|
self.db.commit()
|
2008-10-07 19:16:26 +02:00
|
|
|
#end def disconnect
|
2008-08-04 05:44:28 +02:00
|
|
|
|
|
|
|
def drop_tables(self):
|
|
|
|
"""Drops the fpdb tables from the current db"""
|
2008-10-07 19:41:06 +02:00
|
|
|
|
|
|
|
if(self.get_backend_name() == 'MySQL InnoDB'):
|
|
|
|
#Databases with FOREIGN KEY support need this switched of before you can drop tables
|
|
|
|
self.drop_referencial_integrity()
|
|
|
|
|
2008-10-07 20:28:18 +02:00
|
|
|
# Query the DB to see what tables exist
|
2008-10-07 21:12:38 +02:00
|
|
|
self.cursor.execute(self.sql.query['list_tables'])
|
2008-10-07 19:41:06 +02:00
|
|
|
for table in self.cursor:
|
|
|
|
self.cursor.execute(self.sql.query['drop_table'] + table[0])
|
|
|
|
elif(self.get_backend_name() == 'PostgreSQL'):
|
2008-10-08 01:56:01 +02:00
|
|
|
self.db.commit()# I have no idea why this makes the query work--REB 07OCT2008
|
2008-10-07 21:12:38 +02:00
|
|
|
self.cursor.execute(self.sql.query['list_tables'])
|
2008-10-08 01:56:01 +02:00
|
|
|
tables = self.cursor.fetchall()
|
|
|
|
for table in tables:
|
|
|
|
self.cursor.execute(self.sql.query['drop_table'] + table[0] + ' cascade')
|
2008-10-07 19:41:06 +02:00
|
|
|
elif(self.get_backend_name() == 'SQLite'):
|
|
|
|
#todo: sqlite version here
|
2008-10-07 19:50:43 +02:00
|
|
|
print "Empty function here"
|
2008-10-07 20:28:18 +02:00
|
|
|
|
|
|
|
self.db.commit()
|
2008-08-04 05:44:28 +02:00
|
|
|
#end def drop_tables
|
2008-10-07 19:41:06 +02:00
|
|
|
|
2008-10-07 19:50:43 +02:00
|
|
|
def drop_referencial_integrity(self):
|
|
|
|
"""Update all tables to remove foreign keys"""
|
2008-10-07 19:41:06 +02:00
|
|
|
|
2008-10-07 21:12:38 +02:00
|
|
|
self.cursor.execute(self.sql.query['list_tables'])
|
2008-10-07 19:50:43 +02:00
|
|
|
result = self.cursor.fetchall()
|
2008-10-07 19:41:06 +02:00
|
|
|
|
2008-10-07 19:50:43 +02:00
|
|
|
for i in range(len(result)):
|
|
|
|
self.cursor.execute("SHOW CREATE TABLE " + result[i][0])
|
|
|
|
inner = self.cursor.fetchall()
|
2008-10-07 19:41:06 +02:00
|
|
|
|
2008-10-07 19:50:43 +02:00
|
|
|
for j in range(len(inner)):
|
|
|
|
# result[i][0] - Table name
|
|
|
|
# result[i][1] - CREATE TABLE parameters
|
|
|
|
#Searching for CONSTRAINT `tablename_ibfk_1`
|
|
|
|
for m in re.finditer('(ibfk_[0-9]+)', inner[j][1]):
|
|
|
|
key = "`" + inner[j][0] + "_" + m.group() + "`"
|
|
|
|
self.cursor.execute("ALTER TABLE " + inner[j][0] + " DROP FOREIGN KEY " + key)
|
2008-10-07 19:41:06 +02:00
|
|
|
self.db.commit()
|
|
|
|
#end drop_referencial_inegrity
|
2008-08-04 05:44:28 +02:00
|
|
|
|
|
|
|
def get_backend_name(self):
|
|
|
|
"""Returns the name of the currently used backend"""
|
2008-08-15 02:45:40 +02:00
|
|
|
if self.backend==2:
|
2008-08-04 05:44:28 +02:00
|
|
|
return "MySQL InnoDB"
|
|
|
|
elif self.backend==3:
|
|
|
|
return "PostgreSQL"
|
2008-08-15 02:45:40 +02:00
|
|
|
else:
|
|
|
|
raise fpdb_simple.FpdbError("invalid backend")
|
2008-08-04 05:44:28 +02:00
|
|
|
#end def get_backend_name
|
|
|
|
|
|
|
|
def get_db_info(self):
|
|
|
|
return (self.host, self.database, self.user, self.password)
|
|
|
|
#end def get_db_info
|
|
|
|
|
2008-09-24 06:22:17 +02:00
|
|
|
def fillDefaultData(self):
|
2008-10-06 05:26:59 +02:00
|
|
|
self.cursor.execute("INSERT INTO Settings VALUES (118);")
|
2008-10-08 01:56:01 +02:00
|
|
|
self.cursor.execute("INSERT INTO Sites VALUES (DEFAULT, 'Full Tilt Poker', 'USD');")
|
|
|
|
self.cursor.execute("INSERT INTO Sites VALUES (DEFAULT, 'PokerStars', 'USD');")
|
2008-09-24 06:22:17 +02:00
|
|
|
self.cursor.execute("INSERT INTO TourneyTypes VALUES (DEFAULT, 1, 0, 0, 0, False);")
|
|
|
|
#end def fillDefaultData
|
|
|
|
|
2008-08-04 05:44:28 +02:00
|
|
|
def recreate_tables(self):
|
|
|
|
"""(Re-)creates the tables of the current DB"""
|
2008-09-15 22:31:55 +02:00
|
|
|
|
2008-08-04 05:44:28 +02:00
|
|
|
self.drop_tables()
|
2008-10-07 19:16:26 +02:00
|
|
|
self.create_tables()
|
2008-08-04 05:44:28 +02:00
|
|
|
self.db.commit()
|
2008-10-07 19:16:26 +02:00
|
|
|
print "Finished recreating tables"
|
2008-08-04 05:44:28 +02:00
|
|
|
#end def recreate_tables
|
|
|
|
#end class fpdb_db
|