-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_client.py
More file actions
234 lines (182 loc) · 5.39 KB
/
db_client.py
File metadata and controls
234 lines (182 loc) · 5.39 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
import sqlite3
import short_url
from sqlite3 import IntegrityError
#maybe change the boolean returns to exceptions being raised
def get_url(url_id):
conn = sqlite3.connect('database/challenge.db')
conn.execute('pragma foreign_keys=ON') #Turns on foreign key constraints
cursor = conn.cursor()
cursor.execute("""
SELECT url FROM URL WHERE id = ?
""", (url_id, ))
data = cursor.fetchone()
if data is None:
conn.close()
return False, None
else:
cursor.execute("""UPDATE URL SET hits=hits+1 WHERE id=?
""", (url_id, ))
conn.commit()
conn.close()
return True, data[0]
def get_top_urls(user_id=None):
conn = sqlite3.connect('database/challenge.db')
cursor = conn.cursor()
if user_id is None:
cursor.execute("""
SELECT * FROM URL ORDER BY hits DESC LIMIT 10
""")
else:
cursor.execute("""
SELECT * FROM URL WHERE userId=? ORDER BY hits DESC LIMIT 10
""", (user_id, ))
data = cursor.fetchall()
conn.close()
url_list = []
for row in data:
stats = {
'id': row[0],
'hits': row[1],
'url': row[2],
'shortUrl': row[3]
}
url_list.append(stats)
return url_list
def get_user_stats(user_id):
conn = sqlite3.connect('database/challenge.db')
conn.execute('pragma foreign_keys=ON') #Turns on foreign key constraints
cursor = conn.cursor()
cursor.execute("""
SELECT * FROM User WHERE id = ?
""", (user_id,))
data = cursor.fetchone()
if data is None:
conn.close()
return False, None
else:
urls = get_top_urls(user_id)
hits = 0
for url in urls:
hits += int(url['hits'])
stats = {
'id': data[0],
'hits': hits,
'topUrls': urls
}
cursor.execute("""
SELECT count() FROM URL WHERE userId = ?
""", (user_id, ))
data = cursor.fetchone()
url_count = data[0]
conn.close()
stats['urlCount'] = url_count
return True, stats
def get_url_stats(url_id):
conn = sqlite3.connect('database/challenge.db')
cursor = conn.cursor()
cursor.execute("""
SELECT * FROM URL WHERE id = ?
""", (url_id, ))
data = cursor.fetchone()
conn.close()
if data is None:
conn.close()
return False, None
else:
stats = {
'id': data[0],
'hits': data[1],
'url': data[2],
'shortUrl': data[3]
}
return True, stats
def get_global_stats():
conn = sqlite3.connect('database/challenge.db')
cursor = conn.cursor()
cursor.execute("""
SELECT count(), sum(hits) FROM URL
""")
data = cursor.fetchone()
conn.commit()
conn.close()
url_count = data[0]
hits_sum = data[1]
top_urls = get_top_urls()
response = {
'hits': hits_sum,
'urlCount': url_count,
'topUrls': top_urls
}
return response
def create_new_url(url, partial_short_url, user_id):
conn = sqlite3.connect('database/challenge.db')
conn.execute('pragma foreign_keys=ON') #Turns on foreign key constraints
cursor = conn.cursor()
try:
cursor.execute("""
INSERT INTO URL (hits, url, shortUrl, userId) VALUES (?, ?, ?, ?)
""", (0, url, partial_short_url, user_id))
url_id = cursor.lastrowid
shortened_url = str(partial_short_url + '/' + str(short_url.encode_url(url_id)))
cursor.execute("""
UPDATE URL SET shortUrl=? WHERE id=?
""", (shortened_url, url_id))
conn.commit()
conn.close()
resp, stats = get_url_stats(url_id) #Will always return the correct URL
return True, stats
except IntegrityError as err:
print('Error. Insert URL failed due to violation of FK constraints.')
conn.rollback()
conn.close()
return False, None
def create_new_user(user_id):
conn = sqlite3.connect('database/challenge.db')
cursor = conn.cursor()
try:
cursor.execute("""
INSERT INTO User (id) VALUES (?)
""", (user_id, ))
conn.commit()
conn.close()
return True
except IntegrityError as err:
print('Error. User already registered.')
conn.rollback()
conn.close()
return False
def delete_user(user_id):
conn = sqlite3.connect('database/challenge.db')
conn.execute('pragma foreign_keys=ON') #Turns on foreign key constraints
cursor = conn.cursor()
cursor.execute("""
SELECT EXISTS(SELECT * FROM User WHERE id=? LIMIT 1)
""", (user_id, ))
data = cursor.fetchone()
if bool(data[0]):
cursor.execute("""
DELETE FROM User WHERE id=?
""", (user_id, ))
conn.commit()
conn.close()
return True
else:
conn.close()
return False
def delete_url(url_id):
conn = sqlite3.connect('database/challenge.db')
cursor = conn.cursor()
cursor.execute("""
SELECT EXISTS(SELECT * FROM URL WHERE id=? LIMIT 1)
""", (url_id, ))
data = cursor.fetchone()
if bool(data[0]):
cursor.execute("""
DELETE FROM URL WHERE id=?
""", (url_id, ))
conn.commit()
conn.close()
return True
else:
conn.close()
return False