forked from friendly-telegram/modules-repo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
spam.py
71 lines (62 loc) · 2.59 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
# Friendly Telegram (telegram userbot)
# Copyright (C) 2018-2019 The Authors
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from .. import loader, utils
import logging
import asyncio
logger = logging.getLogger(__name__)
@loader.tds
class SpamMod(loader.Module):
"""Annoys people really effectively"""
strings = {"name": "Spam",
"need_spam": "<b>U wot? I need something to spam.</b>",
"spam_urself": "<b>Go spam urself.</b>",
"nice_number": "<b>Nice number bro.</b>",
"much_spam": "<b>Haha, much spam.</b>"}
async def spamcmd(self, message):
""".spam <count> <message>"""
use_reply = False
args = utils.get_args(message)
logger.debug(args)
if len(args) == 0:
await utils.answer(message, self.strings("need_spam", message))
return
if len(args) == 1:
if message.is_reply:
use_reply = True
else:
await utils.answer(message, self.strings("spam_urself", message))
return
count = args[0]
spam = (await message.get_reply_message()) if use_reply else message
spam.message = " ".join(args[1:])
try:
count = int(count)
except ValueError:
await utils.answer(message, self.strings("nice_number", message))
return
if count < 1:
await utils.answer(message, self.strings("much_spam", message))
return
await message.delete()
if count > 20:
# Be kind to other people
sleepy = 2
else:
sleepy = 0
i = 0
size = 1 if sleepy else 100
while i < count:
await asyncio.gather(*[message.respond(spam) for x in range(min(count, size))])
await asyncio.sleep(sleepy)
i += size
await self.allmodules.log("spam", group=message.to_id, data=spam.message + " (" + str(count) + ")")