-
Notifications
You must be signed in to change notification settings - Fork 3
/
spam.py
176 lines (136 loc) · 6.37 KB
/
spam.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
# Sh1t-UB (telegram userbot by sh1tn3t)
# Copyright (C) 2021-2022 Sh1tN3t
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import asyncio
from pyrogram import Client, types
from .. import loader, utils
@loader.module("Spam", "sh1tn3t")
class SpamMod(loader.Module):
"""Спам"""
async def spam_cmd(self, app: Client, message: types.Message, args: str):
"""Обычный спам. Использование: spam <кол-во сообщений> <аргументы или реплай>"""
reply = message.reply_to_message
if not reply:
if not args:
return await utils.answer(
message, "Нет аргументов и реплая")
args_ = args.split(maxsplit=1)
if len(args_) == 1:
if args_[0].isdigit():
return await utils.answer(
message, "Не указан текст для спама")
return await utils.answer(
message, "Не указано кол-во сообщений первым аргументом")
if not args_[0].isdigit():
return await utils.answer(
message, "Кол-во сообщений должно быть целым числом")
await message.delete()
for _ in range(int(args_[0])):
await message.reply(args_[1], quote=False)
return
if not args:
return await utils.answer(
message, "Не указано кол-во сообщений")
if not args.isdigit():
return await utils.answer(
message, "Кол-во сообщений должно быть целым числом")
await message.delete()
for _ in range(int(args)):
await reply.copy(
message.chat.id,
reply_to_message_id=reply.message_id
)
return
async def cspam_cmd(self, app: Client, message: types.Message, args: str):
"""Спам символами. Использование: cspam <аргументы или реплай>"""
reply = message.reply_to_message
text = (
args
if args
else reply.text
if reply and reply.text
else reply.caption
if reply and reply.caption
else ""
)
if not text:
return await utils.answer(
message, "Нет аргументов или реплая")
await message.delete()
for char in text.replace(" ", ""):
await message.reply(char, quote=False)
return
async def wspam_cmd(self, app: Client, message: types.Message, args: str):
"""Спам словами. Использование: wspam <аргументы или реплай>"""
reply = message.reply_to_message
text = (
args
if args
else reply.text
if reply and reply.text
else reply.caption
if reply and reply.caption
else ""
)
if not text:
return await utils.answer(
message, "Нет аргументов или реплая")
await message.delete()
for word in text.split():
await message.reply(word, quote=False)
return
async def delayspam_cmd(self, app: Client, message: types.Message, args: str):
"""Спам с задержкой. Использование: delayspam <кол-во сообщений> <задержка в секундах> <аргументы или реплай>"""
reply = message.reply_to_message
if not reply:
if not args:
return await utils.answer(
message, "Нет аргументов и реплая")
args_ = args.split(maxsplit=2)
if not args_[0].isdigit():
return await utils.answer(
message, "Не указано кол-во сообщений первым аргументом")
if len(args_) == 1:
return await utils.answer(
message, "Не указана задержка вторым аргументом и текст для спама")
if not args_[1].isdigit():
return await utils.answer(
message, "Задержка должна быть целым числом")
if len(args_) == 2:
return await utils.answer(
message, "Не указан текст для спама")
await message.delete()
for _ in range(int(args_[0])):
await message.reply(args_[2], quote=False)
await asyncio.sleep(int(args_[1]))
return
if not args:
return await utils.answer(
message, "Не указано кол-во сообщений и задержка")
args_ = args.split()
if not args_[0].isdigit():
return await utils.answer(
message, "Кол-во сообщений должно быть целым числом")
if len(args_) == 1:
return await utils.answer(
message, "Не указана задержка")
if not args_[1].isdigit():
return await utils.answer(
message, "Задержка должна быть целым числом")
await message.delete()
for _ in range(int(args_[0])):
await reply.copy(
message.chat.id,
reply_to_message_id=reply.message_id
)
await asyncio.sleep(int(args_[1]))
return