-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.py
More file actions
217 lines (195 loc) · 4.32 KB
/
database.py
File metadata and controls
217 lines (195 loc) · 4.32 KB
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
# MODULE: database.py
# VERSION: 0.4
# DIRECTORY: <masked>
# DATE: 2023-06-04
# AUTHOR: RandomCollection
# DESCRIPTION: See https://github.com/RandomCollection/Vocabulary-Trainer.
# LIBRARIES ############################################################################################################
import datetime
import sqlite3
from typing import Union
import cfg
# MAIN FUNCTION ########################################################################################################
class Database:
def __init__(self):
self.con = sqlite3.connect(database=cfg.NAME_DATABASE)
self.cursor = self.con.cursor()
def decrease_level(self, level: int, word: str):
self.cursor.execute(
f"""
UPDATE VOCABULARY
SET
LEVEL = {level - 1}
WHERE WORD == '{word}'
"""
)
self.con.commit()
def get_count_of_words_per_level(self) -> list:
return (
self.cursor.execute(
"""
SELECT
LEVEL,
COUNT(WORD) AS CNT
FROM VOCABULARY
GROUP BY LEVEL
ORDER BY LEVEL
"""
)
.fetchall()
)
def get_data(self, language: str, category: str, level: str) -> (list, list, list):
data = (
self.cursor.execute(
f"""
SELECT
WORD,
TRANSLATION,
LEVEL
FROM VOCABULARY
WHERE LANGUAGE == '{language}'
AND CATEGORY IN {category}
AND LEVEL IN {level}
"""
)
.fetchall()
)
return [word[0] for word in data], [translation[1] for translation in data], [level[2] for level in data]
def get_distinct_categories(self, level: str) -> list:
categories = (
self.cursor.execute(
f"""
SELECT DISTINCT
CATEGORY
FROM VOCABULARY
WHERE LEVEL IN {level}
ORDER BY CATEGORY
"""
)
.fetchall()
)
return [category[0] for category in categories]
def get_distinct_categories_all(self) -> list:
categories = (
self.cursor.execute(
"""
SELECT DISTINCT
CATEGORY
FROM VOCABULARY
ORDER BY CATEGORY
"""
)
.fetchall()
)
return [category[0] for category in categories]
def get_distinct_levels(self, category: str) -> list:
levels = (
self.cursor.execute(
f"""
SELECT DISTINCT
LEVEL
FROM VOCABULARY
WHERE CATEGORY IN {category}
ORDER BY LEVEL
"""
)
.fetchall()
)
return [str(level[0]) for level in levels]
def get_distinct_levels_all(self) -> list:
levels = (
self.cursor.execute(
"""
SELECT DISTINCT
LEVEL
FROM VOCABULARY
ORDER BY LEVEL
"""
)
.fetchall()
)
return [str(level[0]) for level in levels]
def get_level(self, word: str) -> int:
return (
self.cursor.execute(
f"""
SELECT
LEVEL
FROM VOCABULARY
WHERE WORD == '{word}'
"""
)
.fetchall()[0][0]
)
def get_number_of_words(self, language: str) -> int:
return (
self.cursor.execute(
f"""
SELECT
COUNT(WORD) AS CNT
FROM VOCABULARY
WHERE LANGUAGE == '{language}'
"""
)
.fetchall()[0][0]
)
def get_constants(self, column: str, table: str) -> Union[int, None, str]:
return (
self.cursor.execute(
f"""
SELECT
{column}
FROM {table}
"""
)
.fetchall()[0][0]
)
def increase_level(self, level: int, word: str):
self.cursor.execute(
f"""
UPDATE VOCABULARY
SET
LEVEL = {level + 1}
WHERE WORD == '{word}'
"""
)
self.con.commit()
def reset(self, category: str, level: str):
self.cursor.execute(
f"""
UPDATE VOCABULARY
SET
LEVEL = 0
WHERE CATEGORY IN {category}
AND LEVEL IN {level}
"""
)
self.con.commit()
def update_constants(self, value: int, column: str, table: str):
self.cursor.execute(
f"""
UPDATE {table}
SET
{column} = {value}
"""
)
self.con.commit()
def update_constants_date(self, value: Union[None, datetime.date]):
self.cursor.execute(
f"""
UPDATE STATISTICS
SET
STATISTIC_LAST_DATE = '{value}'
"""
)
self.con.commit()
def update_counters(self, streak_best: int, words_total: int):
self.cursor.execute(
f"""
UPDATE STATISTICS
SET
STATISTIC_STREAK_BEST = {streak_best},
STATISTIC_WORDS_TOTAL = '{words_total}'
"""
)
self.con.commit()