-
Notifications
You must be signed in to change notification settings - Fork 0
/
cash_bot.py
263 lines (217 loc) · 11.5 KB
/
cash_bot.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
from dotenv import load_dotenv
from logging import StreamHandler
import datetime
import datetime
import os
import re
import sys
import logging
from telegram.ext import CommandHandler, Updater, MessageHandler, Filters
from telegram import ReplyKeyboardMarkup, ReplyKeyboardRemove, Bot
from db import BotDB
db = BotDB('telebot.db')
logger = logging.getLogger(__name__)
load_dotenv()
SECRET_TOKEN = os.getenv('TOKEN')
ADMIN_ID = os.getenv('ADMIN_ID')
def wake_up(update, context):
user_id = context._user_id_and_data[0]
username = update.message.chat.username
name = update.message.chat.first_name
chat = update.effective_chat
if not db.user_exists(user_id):
db.add_user(user_id, username) # дата расчётов по умолчанию дата регистрации
reply_markup = ReplyKeyboardMarkup(keyboard=[['Поделить всё с момента регистрации первого участника'],['Считать мой долг с текущей даты']], resize_keyboard=True)
message = f'Привет, {name}! Возможно уже были платежи (сумму можно посмотреть в меню). Выбери что делать, пожалуйста!'
send_message(context, chat.id, message, reply_markup=reply_markup)
return
text = f'Привет, {name}! Напиши циферками заплаченную сумму👋'
send_message(context, chat.id, text, reply_markup=ReplyKeyboardRemove())
def calculation(update, context, amount=None):
user_id = context._user_id_and_data[0]
name = update.effective_chat.username
# получаем всех юзеров и регим их аттрибуты
user_info = dict()
name = update.effective_chat.username
# получаем всех юзеров и регим их аттрибуты
user_info = dict()
all_users = [user[0] for user in (db.get_users())]
for user_id in all_users:
user_id, username, pays_since = db.get_user_data(user_id)
user_info[username] = [user_id, pays_since]
user_id = context._user_id_and_data[0]
if amount is not None:
db.add_sum(user_id, amount)
message = f'Ребятки, {name}😎 только что заплатил {amount}'
if len(all_users) == 1:
message = f'{name} ты пока один в чатике и должен сам себе)'
return send_message(context=context, chat_id=user_id, text=message)
if len(all_users) == 1:
message = f'{name} ты пока один в чатике и должен сам себе)'
return send_message(context=context, chat_id=user_id, text=message)
for user_id in all_users:
send_message(context=context, chat_id=user_id, text=message)
since = user_info[list(user_info)[0]][1]
until = str(datetime.datetime.now()) # лишнее
times = list()
for values in user_info.values():
times.append(values[1])
period_qty = len(times) - 1
number_of_users = 1
for i in range(period_qty):
since = user_info[list(user_info)[i+1]][1]
until = str(datetime.datetime.now())
if not i == (period_qty-1):
until = user_info[list(user_info)[i+2]][1]
number_of_users += 1 # перенести выше
totally_paid = db.get_period_payments(since=since, until=until)
for i in range(number_of_users):
username = list(user_info)[i]
user_id = user_info[username][0]
totally_user = db.get_period_payments(since=since, until=until, user_id=user_id)
one_person_owes = totally_paid / number_of_users
user_balance = round((totally_user - one_person_owes), 2)
user_info[username].append(user_balance)
user_owes_dict = dict()
for username, value in user_info.items():
user_owes = 0
for i in range(2, len(value)):
user_owes += value[i]
user_owes_dict[username] = user_owes
for user, owes in user_owes_dict.items():
if owes < 0:
message = f'С тебя {abs(owes)} тугриков🤸🏻♂️'
elif owes > 0:
message = f'👍Ты в плюсе на {owes} тугриков'
else:
message = 'Вот это да, ты в нулину!🥳'
user_id = user_info[user][0]
send_message(context, user_id, message)
db.set_user_owes(user_id, owes)
def how_much(update, context):
calculation(update, context)
def sum_recognition(update, context):
message = update.message.text
name = update.message.chat.first_name
user_id = context._user_id_and_data[0]
chat_id = update.effective_chat.id
all_users = [user[0] for user in (db.get_users())]
all_usernames = [user[0] for user in (db.get_usernames())]
if user_id in all_users:
wants_to_say = db.public_message_status(user_id)
wants_to_say = db.public_message_status(user_id)
try:
if wants_to_say == True:
for user in all_users:
send_message(context, user, message)
db.reset_public(user_id)
return
elif message == 'Поделить всё с момента регистрации первого участника':
db.set_pays_since(user_id)
return send_message(context, chat_id, 'Окей!Считаем от истоков)', reply_markup=ReplyKeyboardRemove()) # в будущем добавить дату с которой
elif message == 'Считать мой долг с текущей даты':
pays_since = datetime.datetime.now()
db.set_pays_since(user_id, pays_since)
elif message == 'Считать мой долг с текущей даты':
pays_since = datetime.datetime.now()
db.set_pays_since(user_id, pays_since)
return send_message(context, chat_id, 'Окей, будем считать с текущего момента', reply_markup=ReplyKeyboardRemove())
elif message == '👀Никого не надо':
send_message(context=context, chat_id=chat_id, text='Ладно, не шали так больше🤡', reply_markup=ReplyKeyboardRemove())
return
elif message in all_usernames:
db.delete_user(username=message)
message = f'Пользователь {name}💩 удалил {message}'
for user_id in all_users:
send_message(context=context, chat_id=user_id, text=message, reply_markup=ReplyKeyboardRemove())
return
validated_message = re.sub(r'(, )|(,)|(. )', '.', message)
amount = float(validated_message)
calculation(update, context, amount)
except:
message = f'{name},это не число! По балде надаю 🤪!'
send_message(chat_id=chat_id, text=message, context=context, reply_markup=ReplyKeyboardRemove())
logger.error(f'Введено что-то не то: {update.message.text}.Либо не удалось отправить сообщение')
else:
message = 'Я тебя не знаю! Если ты хочешь добавиться нажми /start'
send_message(context, chat_id, message)
def reset_sum(update, context):
all_users = [user[0] for user in (db.get_users())]
db.reset_sum()
db.set_user_owes()
name = update.message.chat.first_name
message = f'Сумма обнулена пользвателем {name}💪'
for chat_id in all_users:
send_message(context, chat_id, text=message)
def send_message(context, chat_id, text, parse_mode=None, reply_markup=None):
logger.debug(f'Начата отправка сообщения в чат: {chat_id}')
try:
context.bot.send_message(chat_id=chat_id, text=text, parse_mode=parse_mode, reply_markup=reply_markup)
logger.debug(f'Сообщение отправлено в чат {chat_id}')
except Exception as error:
logger.error(f'Не удалось отправить сообщение пользователю {chat_id}. Ошибка {error}')
def group_message(update, context):
chat_id = update.effective_chat.id
db.set_public(chat_id)
context.bot.send_message(chat_id=chat_id, text='Теперь можно написать сообщение и его увидят все участники')
def delete_user(update, context):
all_users = [user[0] for user in (db.get_users())]
all_usernames = [user[0] for user in (db.get_usernames())]
chat_id = update.effective_chat.id
if chat_id in all_users:
all_usernames.append('👀Никого не надо')
chat_id = update.effective_chat.id
reply_markup = ReplyKeyboardMarkup(keyboard=[all_usernames], resize_keyboard=True, selective=True)
try:
context.bot.send_message(chat_id=chat_id, text='Кого кикнуть?☠️', reply_markup=reply_markup) # перенести в send message
except Exception as error:
logger.error(f'Не удалось отправить сообщение об удалении юзера. {error}')
return
message = 'Я тебя не знаю! Если ты хочешь добавиться нажми /start'
send_message(context, chat_id, message)
def get_all_payments(update=None, context=None):
if db.get_all_payments():
new_list = [list(el) for el in db.get_all_payments()]
for list_el in new_list:
for i in range(len(list_el)):
list_el[i] = str(list_el[i]).center(15)
for i in range(len(new_list)):
new_list[i] = str(new_list[i])
message = '\n'.join(new_list)
message = f"```\n{message}\n```"
if update and context:
chat_id = update.effective_chat.id
return send_message(context=context,chat_id=chat_id,text=message, parse_mode='MarkdownV2')
return message
return 'Пока в базе нет платежей'
def main():
updater = Updater(token=SECRET_TOKEN)
bot = Bot(token=SECRET_TOKEN)
bot.send_message(ADMIN_ID, 'Меня запустили снова, ура!')
updater.dispatcher.add_handler(CommandHandler('start', wake_up))
updater.dispatcher.add_handler(CommandHandler('reset', reset_sum))
updater.dispatcher.add_handler(CommandHandler('how_much', how_much))
updater.dispatcher.add_handler(CommandHandler('all_payments', get_all_payments))
updater.dispatcher.add_handler(CommandHandler('kick_user', delete_user))
updater.dispatcher.add_handler(CommandHandler('group_message', group_message))
updater.dispatcher.add_handler(
MessageHandler(Filters.text, sum_recognition)
)
try:
updater.start_polling()
updater.idle()
except:
logger.critical('Не верный телеграм токен!')
sys.exit()
if __name__ == '__main__':
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter(
'%(asctime)s, %(levelname)s, %(name)s, %(message)s, Строка: %(lineno)s,'
)
terminal_handler = StreamHandler(sys.stdout)
terminal_handler.setFormatter(formatter)
file_handler = logging.FileHandler('bot.log', encoding='UTF-8')
file_handler.setFormatter(formatter)
logger.addHandler(terminal_handler)
logger.addHandler(file_handler)
main()