-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdb.py
290 lines (226 loc) · 7.86 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import psycopg2
import aiohttp
import asyncio
import logging
import os
from configparser import ConfigParser
def config(filename='./database_auth.ini', section='postgresql'):
# create a parser
parser = ConfigParser()
# read config file
parser.read(filename)
# get section, default to postgresql
db = {}
if parser.has_section(section):
params = parser.items(section)
for param in params:
db[param[0]] = param[1]
else:
raise Exception(
'Section {0} not found in the {1} file'.format(section, filename))
return db
async def get_token(user):
""" Connects to the PostgreSQL database server and returns user token """
conn = None
try:
# read connection parameters
params = config()
# connect to the PostgreSQL server
logging.info('Retrieving access token')
conn = psycopg2.connect(**params)
# create a cursor
cur = conn.cursor()
# execute a statement
cur.execute(
f"SELECT token, refresh_token FROM users where id ='{user}'"
)
token = cur.fetchone()
# close the communication with the PostgreSQL
cur.close()
except (Exception, psycopg2.DatabaseError) as error:
logging.error(error)
finally:
if conn is not None:
conn.close()
logging.info('Database connection closed.')
return await validate(token[0], token[1])
async def validate(token, refresh_token):
""" Checks if token is valid and refreshes if needed """
logging.info('Validating token')
url = 'https://id.twitch.tv/oauth2'
auth = "Bearer " + token
id = os.environ['CLIENT_ID']
headers = {
"Client-Id": id,
"Authorization": auth
}
params = {
'grant_type': 'refresh_token',
'client_id': os.environ['CLIENT_ID'],
'client_secret': os.environ['CLIENT_SECRET'],
'refresh_token': refresh_token
}
async with aiohttp.ClientSession() as session:
async with session.get(url + '/validate', headers=headers) as resp:
if resp.status == 200:
return token
else:
pass
async with session.post(url + '/token', params=params) as refresh_resp:
# Requests new access token
# logging.info(await refresh_resp.json())
data = await refresh_resp.json()
new_token = data['access_token']
# Updates db
try:
# read connection parameters
params = config()
# connect to the PostgreSQL server
logging.info('Updating access token')
conn = psycopg2.connect(**params)
# create a cursor
cur = conn.cursor()
# execute a statement
cur.execute(
f"UPDATE users SET token = '{new_token}' WHERE token = '{token}' AND refresh_token = '{refresh_token}'"
)
conn.commit()
# close the communication with the PostgreSQL
cur.close()
except (Exception, psycopg2.DatabaseError) as error:
logging.error(error)
finally:
await session.close()
if conn is not None:
conn.close()
logging.info('Database connection closed.')
return new_token
def init_channels():
""" Connects to the PostgreSQL database server and initializes the channels list """
conn = None
try:
# read connection parameters
channels = []
params = config(filename='database_commands.ini')
# connect to the PostgreSQL server
logging.info('Initializing channels')
conn = psycopg2.connect(**params)
# create a cursor
cur = conn.cursor()
# execute a statement
cur.execute(
f"SELECT name FROM channels"
)
channels_raw = cur.fetchall()
for channel in channels_raw:
channels.append(channel[0])
# close the communication with the PostgreSQL
cur.close()
return channels
except (Exception, psycopg2.DatabaseError) as error:
logging.error(error)
finally:
if conn is not None:
conn.close()
logging.info('Database connection closed.')
def add_channel(channel, id):
""" Connects to the PostgreSQL database server and adds a channel"""
conn = None
try:
# read connection parameters
params = config(filename='database_commands.ini')
# connect to the PostgreSQL server
logging.info(f'Adding channel {channel} to db')
conn = psycopg2.connect(**params)
# create a cursor
cur = conn.cursor()
# execute a statement
cur.execute(
"INSERT INTO channels (name, id) VALUES (%s, %s),", (channel, id)
)
conn.commit()
# close the communication with the PostgreSQL
cur.close()
except (Exception, psycopg2.DatabaseError) as error:
logging.error(error)
finally:
if conn is not None:
conn.close()
logging.info('Database connection closed.')
def leave_channel(channel):
""" Connects to the PostgreSQL database server and removes a channel"""
conn = None
try:
# read connection parameters
channels = []
params = config(filename='database_commands.ini')
# connect to the PostgreSQL server
logging.info(f'Removing channel {channel} to db')
conn = psycopg2.connect(**params)
# create a cursor
cur = conn.cursor()
# execute a statement
cur.execute(
"DELETE FROM channels WHERE name=%s", (channel, )
)
conn.commit()
# close the communication with the PostgreSQL
cur.close()
except (Exception, psycopg2.DatabaseError) as error:
logging.error(error)
finally:
if conn is not None:
conn.close()
logging.info('Database connection closed.')
def get_channels_info()->dict:
""" Connects to the PostgreSQL database server and removes a channel"""
conn = None
try:
# read connection parameters
params = config(filename='database_commands.ini')
# connect to the PostgreSQL server
logging.info(f'Getting channel ids')
conn = psycopg2.connect(**params)
# create a cursor
cur = conn.cursor()
# execute a statement
cur.execute(
"SELECT id, name FROM channels"
)
infos = cur.fetchall()
di = {}
for id, name in infos:
di.setdefault(id, name)
# close the communication with the PostgreSQL
cur.close()
return di
except (Exception, psycopg2.DatabaseError) as error:
logging.error(error)
finally:
if conn is not None:
conn.close()
logging.info('Database connection closed.')
def update_name(id: int, channel: str):
""" Connects to the PostgreSQL database server and removes a channel"""
conn = None
try:
# read connection parameters
params = config(filename='database_commands.ini')
# connect to the PostgreSQL server
logging.info(f'Updating channel {id} with name {channel}')
conn = psycopg2.connect(**params)
# create a cursor
cur = conn.cursor()
# execute a statement
cur.execute(
"UPDATE channels SET name=%s WHERE id=%s", (channel, id)
)
conn.commit()
# close the communication with the PostgreSQL
cur.close()
except (Exception, psycopg2.DatabaseError) as error:
logging.error(error)
finally:
if conn is not None:
conn.close()
logging.info('Database connection closed.')