-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgaga.py
More file actions
224 lines (186 loc) · 5.66 KB
/
gaga.py
File metadata and controls
224 lines (186 loc) · 5.66 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
import datetime
import os
import time
import traceback
import psycopg2
import telegram
import pie
from constants import *
SHIT_COUNTER = 0
separator = '\n\n' + '-' * 64 + '\n\n'
def send_stat(cur, day):
query = '''
select
count(*)
from
history
where
date("timestamp") = %s
and "type" = 'bot_action'
and column_0 = 'open_user'
and user_id not in ({})
'''.format(', '.join([str(i) for i in volunteers_ids]))
cur.execute(
query,
(day,)
)
query_result = cur.fetchone()
open_users_count = query_result[0]
####
cur.execute(
'''
select
count(*)
from
history
where
date("timestamp") = %s
and "type" = 'bot_action'
and column_0 = 'new_user'
''',
(day,)
)
query_result = cur.fetchone()
new_users_count = query_result[0]
####
cur.execute(
'''
select
count(*)
from
history
where
date("timestamp") = %s
and "type" = 'message'
''',
(day,)
)
query_result = cur.fetchone()
messages_count = query_result[0]
####
cur.execute(
'''
select
count(*)
from
history
where
date("timestamp") = %s
and "type" = 'message'
and volunteer_id isnull
and column_2 not like '/%%'
''',
(day,)
)
query_result = cur.fetchone()
messages_from_users_count = query_result[0]
####
if heroku:
token = os.environ['bot_token']
else:
token = __import__('gag_secrets').bot_token
bot = telegram.Bot(token)
message = f'{day}\n' \
f'\n' \
f'new users: {new_users_count}\n' \
f'open users: {open_users_count}\n' \
f'messages: {messages_count}\n' \
f'messages from users: {messages_from_users_count}\n'
bot.send_message(channel_chat_id, message)
####
cur.execute(
'''
select
column_1
from
history
where
date("timestamp") = %s and
"type" = 'bot_action' and
column_0 = 'close_user'
''',
(day,)
)
query_result = cur.fetchall()
list_of_subject_paths = [i[0] for i in query_result]
global pie_format
if list_of_subject_paths:
document = pie.get_pie(list_of_subject_paths, day, format=pie_format) # image in bytes
else:
document = 'BQACAgIAAxkBAAMGYp8ZCp65vaTiKQblTUGFJrJXey8AAgcXAAI4_PhIwK6bugpwfmgkBA' # bublik.jpg file_id (file_unique_id: "AgADBxcAAjj8-Eg")
pie_format = 'jpg'
bot.send_document(
channel_chat_id,
document,
filename=f'{day}.{pie_format}'
)
def main():
passed_set = set()
while True:
day = datetime.datetime.utcnow().date() - datetime.timedelta(days=1)
if day in passed_set:
if comments_in_console:
print('there is in set')
else:
if heroku:
uri = os.environ['DB_URI']
sslmode = 'require'
else:
uri = __import__('gag_secrets').db_uri
sslmode = None
with psycopg2.connect(uri, sslmode=sslmode) as con:
with con.cursor() as cur:
cur.execute(
'''
select
1
from
history
where
"timestamp" = %s
and "type" = 'daily_stat_bot_action'
and column_0 = 'daily_stat'
''',
(day,)
)
query_result = cur.fetchone()
if query_result:
if comments_in_console:
print('there is in db')
else:
if comments_in_console:
print('GAGAGAGAGAGAG ' + str(day))
send_stat(cur, day)
cur.execute(
'''
insert
into
history ("timestamp",
"type",
"column_0")
values (%s,
'daily_stat_bot_action',
'daily_stat'
)
''',
(day,)
)
con.commit()
passed_set.add(day)
time.sleep(sleep_timeout)
def gaga():
global SHIT_COUNTER
while True:
try:
main()
time.sleep(3)
except:
shit_report = f'SHIT...\n' \
f'SHIT_COUNTER: {SHIT_COUNTER}\n' \
f'time: {datetime.datetime.utcnow()}\n' \
f'\n' \
f'{traceback.format_exc()}'
print(shit_report + separator)
time.sleep(2 ** SHIT_COUNTER)
SHIT_COUNTER += 1
gaga()