-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat_tools.py
445 lines (394 loc) · 17.8 KB
/
chat_tools.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
# -*- coding: utf-8 -*-
# Module author: @ftgmodulesbyfl1yd, @dekftgmodules, @memeframe
import asyncio
import io
from asyncio import sleep
from os import remove
from telethon import errors, functions
from telethon.errors import (
BotGroupsBlockedError,
ChannelPrivateError,
ChatAdminRequiredError,
ChatWriteForbiddenError,
InputUserDeactivatedError,
MessageTooLongError,
UserAlreadyParticipantError,
UserBlockedError,
UserIdInvalidError,
UserKickedError,
UserNotMutualContactError,
UserPrivacyRestrictedError,
YouBlockedUserError,
)
from telethon.tl.functions.channels import InviteToChannelRequest, LeaveChannelRequest
from telethon.tl.functions.messages import AddChatUserRequest, GetCommonChatsRequest
from telethon.tl.functions.users import GetFullUserRequest
from telethon.tl.types import (
ChannelParticipantCreator,
ChannelParticipantsAdmins,
ChannelParticipantsBots,
)
from .. import loader, utils
@loader.tds
class ChatMod(loader.Module):
"""Чат модуль"""
strings = {"name": "Chat Tools"}
async def client_ready(self, client, db):
self.db = db
async def useridcmd(self, message):
"""Команда .userid <@ или реплай> показывает ID выбранного пользователя."""
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
try:
if args:
user = await message.client.get_entity(
args if not args.isdigit() else int(args)
)
else:
user = await message.client.get_entity(reply.sender_id)
except ValueError:
user = await message.client.get_entity(message.sender_id)
await message.edit(
f"<b>Имя:</b> <code>{user.first_name}</code>\n"
f"<b>ID:</b> <code>{user.id}</code>"
)
async def chatidcmd(self, message):
"""Команда .chatid показывает ID чата."""
if message.is_private:
return await message.edit("<b>Это не чат!</b>")
args = utils.get_args_raw(message)
to_chat = None
try:
if args:
to_chat = args if not args.isdigit() else int(args)
else:
to_chat = message.chat_id
except ValueError:
to_chat = message.chat_id
chat = await message.client.get_entity(to_chat)
await message.edit(
f"<b>Название:</b> <code>{chat.title}</code>\n"
f"<b>ID</b>: <code>{chat.id}</code>"
)
async def invitecmd(self, message):
"""Используйте .invite <@ или реплай>, чтобы добавить пользователя в чат."""
if message.is_private:
return await message.edit("<b>Это не чат!</b>")
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
if not args and not reply:
return await message.edit("<b>Нет аргументов или реплая.</b>")
try:
if args:
user = args if not args.isdigit() else int(args)
else:
user = reply.sender_id
user = await message.client.get_entity(user)
if not message.is_channel and message.is_group:
await message.client(
AddChatUserRequest(
chat_id=message.chat_id, user_id=user.id, fwd_limit=1000000
)
)
else:
await message.client(
InviteToChannelRequest(channel=message.chat_id, users=[user.id])
)
return await message.edit("<b>Пользователь приглашён успешно!</b>")
except ValueError:
m = "<b>Неверный @ или ID.</b>"
except UserIdInvalidError:
m = "<b>Неверный @ или ID.</b>"
except UserPrivacyRestrictedError:
m = "<b>Настройки приватности пользователя не позволяют пригласить его.</b>"
except UserNotMutualContactError:
m = "<b>Настройки приватности пользователя не позволяют пригласить его.</b>"
except ChatAdminRequiredError:
m = "<b>У меня нет прав.</b>"
except ChatWriteForbiddenError:
m = "<b>У меня нет прав.</b>"
except ChannelPrivateError:
m = "<b>У меня нет прав.</b>"
except UserKickedError:
m = "<b>Пользователь кикнут из чата, обратитесь к администраторам.</b>"
except BotGroupsBlockedError:
m = "<b>Бот заблокирован в чате, обратитесь к администраторам.</b>"
except UserBlockedError:
m = "<b>Пользователь заблокирован в чате, обратитесь к администраторам.</b>"
except InputUserDeactivatedError:
m = "<b>Аккаунт пользователя удалён.</b>"
except UserAlreadyParticipantError:
m = "<b>Пользователь уже в группе.</b>"
except YouBlockedUserError:
m = "<b>Вы заблокировали этого пользователя.</b>"
return await message.reply(m)
async def leavecmd(self, message):
"""Используйте команду .leave, чтобы кикнуть себя из чата."""
args = utils.get_args_raw(message)
if message.is_private:
return await message.edit("<b>Это не чат!</b>")
if args:
await message.edit(f"<b>До связи.\nПричина: {args}</b>")
else:
await message.edit("<b>До связи.</b>")
await message.client(LeaveChannelRequest(message.chat_id))
async def userscmd(self, message):
"""Команда .users <имя>; ничего выводит список всех пользователей в чате."""
if message.is_private:
return await message.edit("<b>Это не чат!</b>")
await message.edit("<b>Считаем...</b>")
args = utils.get_args_raw(message)
info = await message.client.get_entity(message.chat_id)
title = info.title or "этом чате"
if args:
users = await message.client.get_participants(
message.chat_id, search=f"{args}"
)
mentions = f'<b>В чате "{title}" найдено {len(users)} пользователей с именем {args}:</b> \n'
else:
users = await message.client.get_participants(message.chat_id)
mentions = f'<b>Пользователей в "{title}": {len(users)}</b> \n'
for user in users:
if user.deleted:
mentions += f"\n• Удалённый аккаунт <b>|</b> <code>{user.id}</code>"
else:
mentions += f'\n• <a href ="tg://user?id={user.id}">{user.first_name}</a> | <code>{user.id}</code>'
try:
await message.edit(mentions)
except MessageTooLongError:
await message.edit(
"<b>Черт, слишком большой чат. Загружаю список пользователей в файл...</b>"
)
with open("userslist.md", "w+") as file:
file.write(mentions)
await message.client.send_file(
message.chat_id,
"userslist.md",
caption="<b>Пользователей в {}:</b>".format(title),
reply_to=message.id,
)
remove("userslist.md")
await message.delete()
async def adminscmd(self, message):
"""Команда .admins показывает список всех админов в чате."""
if message.is_private:
return await message.edit("<b>Это не чат!</b>")
await message.edit("<b>Считаем...</b>")
info = await message.client.get_entity(message.chat_id)
title = info.title or "this chat"
admins = await message.client.get_participants(
message.chat_id, filter=ChannelParticipantsAdmins
)
mentions = f'<b>Админов в "{title}": {len(admins)}</b>\n'
for user in admins:
admin = admins[
admins.index((await message.client.get_entity(user.id)))
].participant
if admin:
rank = admin.rank or "admin"
else:
rank = (
"creator" if type(admin) == ChannelParticipantCreator else "admin"
)
if user.deleted:
mentions += f"\n• Удалённый аккаунт <b>|</b> <code>{user.id}</code>"
else:
mentions += f'\n• <a href="tg://user?id={user.id}">{user.first_name}</a> | {rank} | <code>{user.id}</code>'
try:
await message.edit(mentions)
except MessageTooLongError:
await message.edit(
"Черт, слишком много админов здесь. Загружаю список админов в файл..."
)
with open("adminlist.md", "w+") as file:
file.write(mentions)
await message.client.send_file(
message.chat_id,
"adminlist.md",
caption='<b>Админов в "{}":<b>'.format(title),
reply_to=message.id,
)
remove("adminlist.md")
await message.delete()
async def botscmd(self, message):
"""Команда .bots показывает список всех ботов в чате."""
if message.is_private:
return await message.edit("<b>Это не чат!</b>")
await message.edit("<b>Считаем...</b>")
info = await message.client.get_entity(message.chat_id)
title = info.title or "this chat"
bots = await message.client.get_participants(
message.to_id, filter=ChannelParticipantsBots
)
mentions = f'<b>Ботов в "{title}": {len(bots)}</b>\n'
for user in bots:
if not user.deleted:
mentions += f'\n• <a href="tg://user?id={user.id}">{user.first_name}</a> | <code>{user.id}</code>'
else:
mentions += f"\n• Удалённый бот <b>|</b> <code>{user.id}</code> "
try:
await message.edit(mentions, parse_mode="html")
except MessageTooLongError:
await message.edit(
"Черт, слишком много ботов здесь. Загружаю " "список ботов в файл..."
)
with open("botlist.md", "w+") as file:
file.write(mentions)
await message.client.send_file(
message.chat_id,
"botlist.md",
caption='<b>Ботов в "{}":</b>'.format(title),
reply_to=message.id,
)
remove("botlist.md")
await message.delete()
async def commoncmd(self, message):
"""Используй .common <@ или реплай>, чтобы узнать общие чаты с
пользователем."""
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
if not args and not reply:
return await message.edit("<b>Нет аргументов или реплая.</b>")
await message.edit("<b>Считаем...</b>")
try:
if args:
if args.isnumeric():
user = int(args)
user = await message.client.get_entity(user)
else:
user = await message.client.get_entity(args)
else:
user = await utils.get_user(reply)
except ValueError:
return await message.edit("<b>Не удалось найти пользователя.</b>")
msg = f"<b>Общие чаты с {user.first_name}:</b>\n"
user = await message.client(GetFullUserRequest(user.id))
comm = await message.client(
GetCommonChatsRequest(user_id=user.user.id, max_id=0, limit=100)
)
count = 0
m = ""
for chat in comm.chats:
m += f'\n• <a href="tg://resolve?domain={chat.username}">{chat.title}</a> <b>|</b> <code>{chat.id}</code> '
count += 1
msg = f"<b>Общие чаты с {user.user.first_name}: {count}</b>\n"
await message.edit(f"{msg} {m}")
async def chatdumpcmd(self, message):
""".chatdump <n> <m> <s>
Дамп юзеров чата
<n> - Получить только пользователей с открытыми номерами
<m> - Отправить дамп в избранное
<s> - Тихий дамп
"""
if not message.chat:
await message.edit("<b>Это не чат</b>")
return
chat = message.chat
num = False
silent = False
tome = False
if utils.get_args_raw(message):
a = utils.get_args_raw(message)
if "n" in a:
num = True
if "s" in a:
silent = True
if "m" in a:
tome = True
if not silent:
await message.edit("🖤Дампим чат...🖤")
else:
await message.delete()
f = io.BytesIO()
f.name = f"Dump by {chat.id}.csv"
f.write("FNAME;LNAME;USER;ID;NUMBER\n".encode())
me = await message.client.get_me()
for i in await message.client.get_participants(message.to_id):
if i.id == me.id:
continue
if num and i.phone or not num:
f.write(
f"{i.first_name};{i.last_name};{i.username};{i.id};{i.phone}\n".encode()
)
f.seek(0)
if tome:
await message.client.send_file("me", f, caption="Дамп чата " + str(chat.id))
else:
await message.client.send_file(
message.to_id, f, caption=f"Дамп чата {str(chat.id)}"
)
if not silent:
if tome:
if num:
await message.edit("🖤Дамп юзеров чата сохранён в " "избранных!🖤")
else:
await message.edit(
"🖤Дамп юзеров чата с открытыми "
"номерами сохранён в избранных!🖤"
)
else:
await message.delete()
f.close()
async def adduserscmd(self, event):
"""Add members"""
if len(event.text.split()) == 2:
idschannelgroup = event.text.split(" ", maxsplit=1)[1]
user = [
i async for i in event.client.iter_participants(event.to_id.channel_id)
]
await event.edit(
f"<b>{len(user)} пользователей будет приглашено из чата {event.to_id.channel_id} в чат/канал {idschannelgroup}</b>"
)
for u in user:
try:
try:
if not u.bot:
await event.client(
functions.channels.InviteToChannelRequest(
idschannelgroup, [u.id]
)
)
await asyncio.sleep(1)
except Exception:
pass
except errors.FloodWaitError as e:
print("Flood for", e.seconds)
else:
await event.edit("<b>Куда приглашать будем?</b>")
async def reportcmd(self, message):
"""Репорт пользователя за спам."""
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
if args:
user = await message.client.get_entity(
args if not args.isnumeric() else int(args)
)
if reply:
user = await message.client.get_entity(reply.sender_id)
else:
return await message.edit("<b>Кого я должен зарепортить?</b>")
await message.client(functions.messages.ReportSpamRequest(peer=user.id))
await message.edit("<b>Ты получил репорт за спам!</b>")
await sleep(1)
await message.delete()
async def echocmd(self, message):
"""Активировать/деактивировать Echo."""
echos = self.db.get("Echo", "chats", [])
chatid = str(message.chat_id)
if chatid not in echos:
echos.append(chatid)
self.db.set("Echo", "chats", echos)
return await message.edit("<b>[Echo Mode]</b> Активирован в этом чате!")
echos.remove(chatid)
self.db.set("Echo", "chats", echos)
return await message.edit("<b>[Echo Mode]</b> Деактивирован в этом чате!")
async def watcher(self, message):
echos = self.db.get("Echo", "chats", [])
chatid = str(message.chat_id)
if chatid not in str(echos):
return
if message.sender_id == (await message.client.get_me()).id:
return
await message.client.send_message(
int(chatid), message, reply_to=await message.get_reply_message() or message
)