-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdatabase.py
135 lines (113 loc) · 4.42 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
import json
import time
import traceback
from time import sleep
import psycopg2
from psycopg2.errorcodes import UNIQUE_VIOLATION
from common import logger, config
class PgConn:
"""Wrapper for PostgreSQL connection"""
def __init__(self, conn, conn_str):
self.conn = conn
self.conn_str = conn_str
self.cur = conn.cursor()
def __enter__(self):
return self
def exec(self, query_string, args=None):
while True:
try:
if config["sql_debug"]:
logger.debug(query_string)
logger.debug("With args " + str(args))
self.cur.execute(query_string, args)
break
except psycopg2.Error as e:
if e.pgcode == UNIQUE_VIOLATION:
break
traceback.print_stack()
self._handle_err(e, query_string, args)
def query(self, query_string, args=None):
while True:
try:
if config["sql_debug"]:
logger.debug(query_string)
logger.debug("With args " + str(args))
self.cur.execute(query_string, args)
res = self.cur.fetchall()
if config["sql_debug"]:
logger.debug("result: " + str(res))
return res
except psycopg2.Error as e:
if e.pgcode == UNIQUE_VIOLATION:
break
self._handle_err(e, query_string, args)
def _handle_err(self, err, query, args):
logger.warn("Error during query '%s' with args %s: %s %s (%s)" % (query, args, type(err), err, err.pgcode))
self.conn = psycopg2.connect(self.conn_str)
self.cur = self.conn.cursor()
sleep(0.1)
def __exit__(self, type, value, traceback):
try:
self.conn.commit()
self.cur.close()
except:
pass
class Database:
def __init__(self, conn_str):
self.conn_str = conn_str
self.conn = psycopg2.connect(self.conn_str)
def _get_conn(self):
return PgConn(self.conn, self.conn_str)
def insert_messages(self, messages: list):
if not messages:
return
with self._get_conn() as conn:
conn.exec(
"INSERT INTO message "
" (id, message_id, channel_id, retrieved_utc, updated_utc, data) "
"VALUES %s ON CONFLICT (id) DO "
" UPDATE SET "
" data=EXCLUDED.data,"
" updated_utc=excluded.updated_utc" %
b','.join(conn.cur.mogrify("(%s,%s,%s,%s,%s,%s)", m) for m in messages).decode("utf8")
)
def upsert_channel(self, channel):
with self._get_conn() as conn:
conn.exec(
"INSERT INTO channel "
" (id, name, retrieved_utc, updated_utc, min_message_id, max_message_id, is_complete, is_active) "
"VALUES (%s,%s,%s,%s,%s,%s,%s,%s) "
"ON CONFLICT (id) DO "
" UPDATE SET "
" max_message_id=EXCLUDED.max_message_id,"
" min_message_id=EXCLUDED.min_message_id, "
" updated_utc=EXCLUDED.updated_utc,"
" is_complete=EXCLUDED.is_complete",
(
channel.channel_id, channel.channel_name, channel.retrieved_utc,
channel.updated_utc, channel.min_message_id, channel.max_message_id,
channel.is_complete, channel.is_active
)
)
def upsert_channel_data(self, channel_id, data):
updated_utc = int(time.time())
if isinstance(data, dict):
data = json.dumps(data)
with self._get_conn() as conn:
conn.exec(
"INSERT INTO channel_data "
" (id,updated_utc,data) "
"VALUES (%s,%s,%s) "
"ON CONFLICT (id) DO "
" UPDATE SET "
" data=EXCLUDED.data,"
" updated_utc=EXCLUDED.updated_utc",
(channel_id, updated_utc, data)
)
def get_channel_by_id(self, channel_id):
with self._get_conn() as conn:
res = conn.query(
"SELECT * FROM channel WHERE id = %s",
(channel_id,)
)
return None if not res else res[0]