-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.py
221 lines (197 loc) · 9.57 KB
/
db.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
import os, shutil
import models
import sqlite3
from argon2 import PasswordHasher
if not os.path.exists('./data'):
os.mkdir('./data')
if not os.path.exists('./data/main.db'):
if os.path.exists('./data/template.db'):
shutil.copyfile('./data/template.db', './data/main.db')
else:
print("NO DATABASE FOUND!")
exit(1)
_hasher = PasswordHasher()
_connection = sqlite3.connect('./data/main.db')
_cursor = _connection.cursor()
def bejelentkezes(nev:str, jelszo:str = None) -> models.Felhasznalo | str:
_cursor.execute("SELECT rowid, Nev, Pontok, Jelszo FROM Felhasznalok WHERE Nev = ?;", (nev,))
resp = _cursor.fetchone()
if not resp:
return "nincs_ilyen_felhasznalo"
try:
_hasher.verify(resp[3], jelszo)
return models.Felhasznalo(*resp[:3])
except Exception:
return "helytelen_jelszo"
def regisztracio(nev:str, jelszo:str) -> models.Felhasznalo:
_cursor.execute("INSERT INTO Felhasznalok (Nev, Jelszo, Pontok) VALUES (?, ?, 100);", (nev, _hasher.hash(jelszo)))
_cursor.execute("SELECT rowid, Nev, Pontok FROM Felhasznalok WHERE Nev = ?;", (nev,))
resp = _cursor.fetchone()
_connection.commit()
return models.Felhasznalo(*resp)
def jelszo_modositas(felhasznaloId:int, ujJelszo:str):
_cursor.execute("UPDATE Felhasznalok SET Jelszo = ? WHERE rowid = ?;", (_hasher.hash(ujJelszo), felhasznaloId))
_connection.commit()
def felhasznalok() -> list[models.Felhasznalo]:
_cursor.execute("SELECT rowid, Nev, Pontok FROM Felhasznalok;")
return [models.Felhasznalo(*row) for row in _cursor.fetchall()]
def jatekok(jatekId:int = None, felhasznaloId:int = None, include_lezart = True) -> list[models.Jatek]:
_cursor.execute(f"""
SELECT Jatekok.rowid, Jatekok.Nev, Jatekok.Alanyok, Jatekok.Esemenyek,
Felhasznalok.rowid, Felhasznalok.Nev, Felhasznalok.Pontok
FROM Jatekok
INNER JOIN Felhasznalok ON Felhasznalok.rowid = Jatekok.SzervezoId
{"LEFT JOIN Eredmenyek ON Jatekok.rowid = Eredmenyek.JatekId" if not include_lezart else ""}
WHERE {"Eredmenyek.rowid IS NULL" if not include_lezart else "1"}
AND {"Jatekok.rowid = ?" if jatekId else "1"}
AND {"Jatekok.SzervezoId = ?" if felhasznaloId else "1"};""",
tuple(filter(None, (jatekId, felhasznaloId))))
return [models.Jatek(*row[:4], models.Felhasznalo(*row[4:])) for row in _cursor.fetchall()]
def fogadasok(fogadasId:int = None, felhasznaloId:int = None, include_lezart = True) -> list[models.Fogadas]:
_cursor.execute(f"""
SELECT Fogadasok.rowid, Fogadasok.Osszeg, Fogadasok.Alany, Fogadasok.Esemeny, Fogadasok.Ertek,
Felhasznalok.rowid, Felhasznalok.Nev, Felhasznalok.Pontok,
Jatekok.rowid, Jatekok.Nev, Jatekok.Alanyok, Jatekok.Esemenyek,
Jatekok.SzervezoId, Szervezo.Nev, Szervezo.Pontok
FROM Fogadasok
INNER JOIN Jatekok ON Jatekok.rowid = Fogadasok.JatekId
INNER JOIN Felhasznalok ON Felhasznalok.rowid = Fogadasok.FogadoId
INNER JOIN Felhasznalok AS Szervezo ON Jatekok.SzervezoId = Szervezo.rowid
{"LEFT JOIN Eredmenyek ON Fogadasok.JatekId = Eredmenyek.JatekId" if not include_lezart else ""}
WHERE {"Eredmenyek.rowid IS NULL" if not include_lezart else "1"}
AND {"Fogadasok.FogadoId = ?" if felhasznaloId else "1"}
AND {"Fogadasok.rowid = ?" if fogadasId else "1"};""",
tuple(filter(None, (felhasznaloId, fogadasId))))
return [models.Fogadas(*row[:5], models.Felhasznalo(*row[5:8]), models.Jatek(*row[8:12], models.Felhasznalo(*row[12:]))) for row in _cursor.fetchall()]
def eredmenyek() -> list[models.Eredmeny]:
_cursor.execute("""
SELECT Eredmenyek.rowid, Eredmenyek.Alany, Eredmenyek.Esemeny, Eredmenyek.Ertek, Eredmenyek.Szorzo,
Jatekok.rowid, Jatekok.Nev, Jatekok.Alanyok, Jatekok.Esemenyek,
Felhasznalok.rowid, Felhasznalok.Nev, Felhasznalok.Pontok
FROM Eredmenyek
INNER JOIN Jatekok ON Jatekok.rowid = Eredmenyek.JatekId
INNER JOIN Felhasznalok ON Felhasznalok.rowid = Jatekok.SzervezoId;""")
return [models.Eredmeny(*row[:5], models.Jatek(*row[5:9], models.Felhasznalo(*row[9:]))) for row in _cursor.fetchall()]
def uj_jatek(szervezoId:int, nev:str, alanyok:list[str], esemenyek:list[str]):
_cursor.execute("""
INSERT INTO Jatekok (SzervezoId, Nev, Alanyok, Esemenyek) VALUES (?, ?, ?, ?);
""", (szervezoId, nev, ";".join(alanyok), ";".join(esemenyek)))
_connection.commit()
def uj_fogadas(fogadoId:int, jatekId:int, osszeg:int, alany:str, esemeny:str, ertek:str):
try:
_cursor.execute("BEGIN TRANSACTION;")
_cursor.execute("UPDATE Felhasznalok SET Pontok = Pontok - ? WHERE rowid = ?;",
(osszeg, fogadoId))
_cursor.execute("INSERT INTO Fogadasok (FogadoId, JatekId, Osszeg, Alany, Esemeny, Ertek) VALUES (?, ?, ?, ?, ?, ?);",
(fogadoId, jatekId, osszeg, alany, esemeny, ertek))
_cursor.execute("COMMIT;")
_connection.commit()
except Exception as e:
_cursor.execute("ROLLBACK;")
raise e
def fogadas_torles(fogadasId:int):
_cursor.execute("""
DELETE FROM Fogadasok
WHERE (NOT rowid IN (
SELECT Fogadasok.rowid
FROM Fogadasok
INNER JOIN Eredmenyek ON Fogadasok.JatekId = Eredmenyek.JatekId
)) AND rowid = ?;
""", (fogadasId,))
_connection.commit()
def closeGame(gameId:int, results:dict, users:list[models.Felhasznalo], multipliers:dict):
resp = _cursor.execute('SELECT * FROM Eredmenyek WHERE JatekId = ?', (gameId))
if resp.fetchone(): raise Exception()
try:
_cursor.execute('BEGIN TRANSACTION;')
for subject in results:
for event in results[subject]:
try:
multiplier = multipliers[f'{subject};{event};{results[subject][event].get()}']
except KeyError:
multiplier = 0
_cursor.execute('INSERT INTO Eredmenyek (JatekId, Alany, Esemeny, Ertek, Szorzo) VALUES (?, ?, ?, ?, ?);', (gameId, subject, event, results[subject][event].get(), multiplier))
for user in users: _cursor.execute('UPDATE Felhasznalok SET Pontok = ? WHERE rowid = ?;', (user.pontok, user.id))
_cursor.execute('COMMIT;')
_connection.commit()
except Exception as e:
_cursor.execute('ROLLBACK;')
raise e
def importFiles(gameFile:str = 'jatekok.txt', betFile:str = 'fogadasok.txt', resultFile:str = 'eredmenyek.txt'):
try:
with open(gameFile, 'r', encoding='UTF-8') as f:
gameData = list(map(lambda x: x.strip('\n'), f.readlines()))
with open(betFile, 'r', encoding='UTF-8') as f:
betData = list(map(lambda x: x.strip('\n'), f.readlines()))
with open(resultFile, 'r', encoding='UTF-8') as f:
resultData = list(map(lambda x: x.strip('\n'), f.readlines()))
except FileNotFoundError as e:
print('Az egyik fájl nem található!\n\n', e)
return
currentId = 0
gameDict = {}
while currentId < len(gameData):
metadata = gameData[currentId].split(';')
gameDict[metadata[1]] = {}
gameDict[metadata[1]]['owner'] = metadata[0]
for i in range(currentId + 1, currentId + int(metadata[2]) + 1):
gameDict[metadata[1]]['subjects'] = gameDict[metadata[1]].get('subjects', '') + gameData[i] + ';'
for i in range(currentId + 1 + int(metadata[2]), currentId + int(metadata[2]) + int(metadata[3]) + 1):
gameDict[metadata[1]]['events'] = gameDict[metadata[1]].get('events', '') + gameData[i] + ';'
currentId += int(metadata[2]) + int(metadata[3]) + 1
currentId = 0
betDict = {}
while currentId < len(betData):
_data = betData[currentId].split(';')
betDict[currentId] = {}
betDict[currentId]['name'] = _data[0]
betDict[currentId]['game'] = _data[1]
betDict[currentId]['value'] = _data[2]
betDict[currentId]['subject'] = _data[3]
betDict[currentId]['event'] = _data[4]
betDict[currentId]['target'] = _data[5]
currentId += 1
currentId = 0
resultDict = {}
while currentId < len(resultData):
if not ';' in resultData[currentId]:
metadata = resultData[currentId]
resultDict[metadata] = {}
_id = 0
else:
_data = resultData[currentId].split(';')
resultDict[metadata][_id] = {}
resultDict[metadata][_id]['event'] = _data[1]
resultDict[metadata][_id]['subject'] = _data[0]
resultDict[metadata][_id]['target'] = _data[2]
resultDict[metadata][_id]['multiplier'] = _data[3]
_id += 1
currentId += 1
try:
_cursor.execute('BEGIN TRANSACTION;')
keyList = []
for key in gameDict: keyList.append(gameDict[key]['owner'])
for key in betDict: keyList.append(betDict[key]['name'])
for name in list(set(keyList)):
_cursor.execute('INSERT INTO Felhasznalok (Nev, Jelszo, Pontok) VALUES (?, ?, 100)', (name, _hasher.hash('')))
for key in gameDict:
_cursor.execute('SELECT rowid FROM Felhasznalok WHERE Nev = ?', (gameDict[key]['owner'],))
resp = _cursor.fetchone()
_cursor.execute('INSERT INTO Jatekok (SzervezoId, Nev, Alanyok, Esemenyek) VALUES (?, ?, ?, ?)', (resp[0], key, gameDict[key]['subjects'][:-1], gameDict[key]['events'][:-1]))
for key in betDict:
_cursor.execute('SELECT rowid FROM Felhasznalok WHERE Nev = ?', (betDict[key]['name'],))
userResp = _cursor.fetchone()[0]
_cursor.execute('SELECT rowid FROM Jatekok WHERE Nev = ?', (betDict[key]['game'],))
gameResp = _cursor.fetchone()[0]
_cursor.execute('INSERT INTO Fogadasok (FogadoId, JatekId, Osszeg, Alany, Esemeny, Ertek) VALUES (?, ?, ?, ?, ?, ?)', (userResp, gameResp, betDict[key]['value'], betDict[key]['subject'], betDict[key]['event'], betDict[key]['target']))
for key in resultDict:
_cursor.execute('SELECT rowid FROM Jatekok WHERE Nev = ?', (key,))
gameResp = _cursor.fetchone()
for _id in resultDict[key]:
_cursor.execute('INSERT INTO Eredmenyek (JatekId, Alany, Esemeny, Ertek, Szorzo) VALUES (?, ?, ?, ?, ?)', (gameResp[0], resultDict[key][_id]['subject'], resultDict[key][_id]['event'], resultDict[key][_id]['target'], resultDict[key][_id]['multiplier']))
_cursor.execute('COMMIT;')
_connection.commit()
except Exception as e:
_cursor.execute('ROLLBACK;')
print('Az adatbázis hibát érzékelt, az importálás meg lett szakítva!')
return