-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.py
144 lines (114 loc) · 4.71 KB
/
database.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import mysql.connector
import sshtunnel
from flask_sqlalchemy import SQLAlchemy
import pandas as pd
import time
class Database(object):
def __init__(self, config):
host = config['database']['hostname']
user = config['database']['username']
password = config['database']['password']
database = config['database']['dbname']
ssh_host = config['ssh']['host']
ssh_port = config['ssh']['port']
ssh_user = config['ssh']['user']
ssh_pass = config['ssh']['pass']
with sshtunnel.SSHTunnelForwarder((ssh_host, int(ssh_port)), ssh_username=ssh_user, ssh_password=ssh_pass,
remote_bind_address=(host, 3306)) as tunnel:
self.cnx = mysql.connector.connect(host=host, user=user, password=password, database=database)
self.cur = self.cnx.cursor()
# def store_data(self, user_uuid, game_uuid, agent, game):
# """ stores game data into the database """
#
# add_game = ("INSERT INTO studycrafter_wp_db.sc_gamette_games"
# "(game_uuid, num_human_players, study_name, date_time, game_data) "
# "VALUES (%s, %s, %s, %s, %s)")
#
# add_user = ("INSERT INTO studycrafter_wp_db.sc_gamette_users(user_uuid, role, game_id) "
# "VALUES(%(user_uuid)s, %(agent)s, %(game_id)s)")
#
# data_game = (game_uuid, game.num_human_players, game.study_name,
# time.strftime('%Y-%m-%d %H:%M:%S'), game.data.to_json(orient='records'))
#
# self.cur.execute(add_game, data_game)
# game_id = self.cur.lastrowid
#
# data_user = {
# 'user_uuid': str(user_uuid),
# 'agent': str(agent.agent_name),
# 'game_id': game_id}
#
# self.cur.execute(add_user, data_user)
#
# self.cnx.commit()
#
# self.cur.close()
# self.cnx.close()
#
# return game_id
def query_database(self, query, values):
""" query database to select player data and returns results in a data frame"""
query = (str(query))
self.cur.execute(query, values)
results = self.cur.fetchone()
self.cur.close()
self.cnx.close()
return results
def query_database_all(self, query, values):
""" query database to select player data and returns results in a data frame"""
query = (str(query))
self.cur.execute(query, values)
results = self.cur.fetchall()
self.cur.close()
self.cnx.close()
return results
def store_data(self, query, values):
""" stores game data into the database """
query = (str(query))
self.cur.execute(query, values)
self.cnx.commit()
self.cur.close()
self.cnx.close()
return values
def store_data_many(self, query, values):
""" stores game data into the database """
query = (str(query))
self.cur.executemany(query, values)
self.cnx.commit()
self.cur.close()
self.cnx.close()
return values
class DatabaseAlchemy(object):
def __init__(self, config, app):
# # IF Session Table is on StudyCrafter database:
# host = config['database']['hostname']
# user = config['database']['username']
# password = config['database']['password']
# database = config['database']['dbname']
#
# ssh_host = config['ssh']['host']
# ssh_port = config['ssh']['port']
# ssh_user = config['ssh']['user']
# ssh_pass = config['ssh']['pass']
#
# tunnel = sshtunnel.SSHTunnelForwarder((ssh_host, int(ssh_port)), ssh_username=ssh_user, ssh_password=ssh_pass,
# remote_bind_address=(host, 3306))
# tunnel.start()
# app.config['SESSION_SQLALCHEMY_TABLE'] = 'sc_humanai_sessions'
# self.uri = f'mysql+pymysql://{user}:{password}@127.0.0.1:{tunnel.local_bind_port}/{database}'
# self.db = SQLAlchemy(app, session_options={
# 'expire_on_commit': False
# })
# IF Session Table is on DigitalOcean database:
host = config['do_database']['hostname']
user = config['do_database']['username']
password = config['do_database']['password']
database = config['do_database']['dbname']
port = config['do_database']['port']
app.config['SESSION_SQLALCHEMY_TABLE'] = 'humanai_sessions'
self.uri = f'mysql+pymysql://{user}:{password}@{host}:{port}/{database}'
self.db = SQLAlchemy(app, session_options={
'expire_on_commit': False
})
def create_session_table(self):
self.db.create_all()