forked from Den4ikSuperOstryyPer4ik/Astro-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastroafk.py
683 lines (637 loc) · 20.8 KB
/
astroafk.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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
__version__ = (2, 1, 2)
# _ __ __ _ _
# /\ | | | \/ | | | | |
# / \ ___| |_ _ __ ___ | \ / | ___ __| |_ _| | ___ ___
# / /\ \ / __| __| '__/ _ \| |\/| |/ _ \ / _` | | | | |/ _ \/ __|
# / ____ \\__ \ |_| | | (_) | | | | (_) | (_| | |_| | | __/\__ \
# /_/ \_\___/\__|_| \___/|_| |_|\___/ \__,_|\__,_|_|\___||___/
#
# © Copyright 2023
#
# https://t.me/Den4ikSuperOstryyPer4ik
# and
# https://t.me/ToXicUse
#
# 🔒 Licensed under the GNU AGPLv3
# https://www.gnu.org/licenses/agpl-3.0.html
#
# meta banner: https://0x0.st/oFwG.jpg
# meta developer: @AstroModules
# meta designer: @XizurK
import re
import time
import logging
import datetime
import asyncio
from telethon import types
from .. import loader, utils
from ..inline.types import InlineCall
from telethon.tl.functions.users import GetFullUserRequest
from telethon.tl.functions.account import UpdateProfileRequest
logger = logging.getLogger(__name__)
class AstroAfkMod(loader.Module):
"""Полностью настраиваемый модуль для ухода в АФК режим! Обновление TxAFK!"""
async def client_ready(self, client, db):
self._db = db
self._me = await client.get_me()
strings = {
"name": "AstroAFK",
"lname": "| afk.",
"bt_off_afk": "🚫 <b>АФК</b> режим <b>отключен</b>!",
"_cfg_cst_btn": "Ссылка на чат, которая будет находиться под текстом АФК. Чтобы вовсе убрать, напишите None",
"feedback_bot__text": "Юзернейм вашего feedback бота. Если нету - не трогайте",
"button__text": "Добавить инлайн кнопку отключения АФК режима?",
"custom_text__afk_text": "Кастомный текст афк. Используй {time} для вывода последнего времени нахождения в сети и {reason} для указания причины ухода в афк",
}
def render_settings(self):
active = self._db.get(__name__, 'afk')
if active == True:
a_active = "Включен ✅"
else:
a_active = 'Выключен 🚫'
change_bio = self._db.get(__name__, 'change_bio')
if change_bio == True:
a_change_bio = 'Да'
else:
a_change_bio = 'Нет'
change_name = self._db.get(__name__, 'change_name')
if change_name == True:
a_change_name = 'Да'
else:
a_change_name = 'Нет'
fb = self.config['feedback']
text = (
f'🎆 <b>AstroAfk</b>\n'
f'<b>├{a_active}</b>\n'
f'<b>├Смена биографии:</b> <code>{a_change_bio}</code> 📖\n'
f'<b>├Смена префикса:</b> <code>{a_change_name}</code> 📝\n'
f'<b>└Бот для связи:</b> <code>@{fb}</code> 🤖'
)
return text
def __init__(self):
self.config = loader.ModuleConfig(
loader.ConfigValue(
"prefix",
'| afk.',
doc=lambda: 'Префикс, который будет добавляться к вашему имени во время входа в АФК'
),
loader.ConfigValue(
"feedback",
None,
doc=lambda: self.strings("feedback_bot__text"),
),
loader.ConfigValue(
'about_text',
None,
doc=lambda: 'Текст, который будет выставляться в био при входе в АФК. Используйте {bot} для указания фидбэк бота и {reason} для причины.'
),
loader.ConfigValue(
"afk_text",
"None",
doc=lambda: self.strings("custom_text__afk_text"),
),
loader.ConfigValue(
"link_button",
None,
lambda: self.strings("_cfg_cst_btn"),
validator=loader.validators.Union(
loader.validators.Series(fixed_len=2),
loader.validators.NoneType()
),
),
loader.ConfigValue(
"ignore_chats",
[],
lambda: "Чаты, в которых AstroAfk не будет срабатывать",
validator=loader.validators.Series(
validator=loader.validators.Union(
loader.validators.TelegramID(),
loader.validators.RegExp("[0-9]"),
),
),
),
loader.ConfigValue(
"button",
True,
doc=lambda: self.strings("button__text"),
validator=loader.validators.Boolean(),
)
)
def _afk_custom_text(self) -> str:
now = datetime.datetime.now().replace(microsecond=0)
gone = datetime.datetime.fromtimestamp(
self._db.get(__name__, "gone")
).replace(microsecond=0)
time = now - gone
reason = self._db.get(__name__, 'reason')
return (
"<b> </b>\n"
+ self.config["afk_text"].format(
time=time,
reason=reason,
)
)
def _afk_about_text(self) -> str:
bot = self.config['feedback']
reason = self._db.get(__name__, 'reason')
return (
""
+ self.config['about_text'].format(
bot=bot,
reason=reason
)
)
@loader.command()
async def asst(self, message):
"""- открыть настройки модуля"""
await self.inline.form(
message=message,
text='<b>⚙️ Открыть настройки</b>',
reply_markup=[{'text': '🔴 Открыть', 'callback': self.settings}]
)
@loader.command()
async def goafk(self, message):
""" <reason/empty>- войти в АФК режим"""
reason = utils.get_args_raw(message)
if not reason:
self._db.set(__name__, 'reason', '')
else:
self._db.set(__name__, 'reason', reason)
try:
user_id = (
(
(
await self._client.get_entity(
args if not args.isdigit() else int(args)
)
).id
)
if args
else reply.sender_id
)
except Exception:
user_id = self._tg_id
user = await self._client(GetFullUserRequest(user_id))
self._db.set(__name__, "afk", True)
self._db.set(__name__, "gone", time.time())
self._db.set(__name__, "ratelimit", [])
change_bio = self._db.get(__name__, "change_bio")
change_name = self._db.get(__name__, "change_name")
about = user.full_user.about
self._db.set(__name__, 'about', about)
if change_name == False and change_bio == False:
await utils.answer(message, '<emoji document_id=5188391205909569136>✅</emoji> <b>АФК</b> режим был успешно <b>включен</b>!')
return
if change_name == True:
prefix = self.config['prefix']
await message.client(UpdateProfileRequest(last_name=prefix))
if change_bio == True:
cfg_bio = self.config['about_text']
if cfg_bio == None:
await message.client(UpdateProfileRequest(about="Нахожусь в афк."))
else:
bio = self._afk_about_text()
await message.client(UpdateProfileRequest(about=bio))
m = await utils.answer(message, '<emoji document_id=5188391205909569136>✅</emoji> <b>АФК</b> режим был успешно <b>включен</b>!')
await asyncio.sleep(5)
await m.delete()
@loader.command()
async def ungoafk(self, message):
"""- выйти из режима АФК"""
self._db.set(__name__, "afk", False)
self._db.set(__name__, "gone", None)
self._db.set(__name__, "ratelimit", [])
change_bio = self._db.get(__name__, "change_bio")
change_name = self._db.get(__name__, "change_name")
if change_name == False and change_bio == False:
await utils.answer(message, '<emoji document_id=5465665476971471368>❌</emoji> <b>АФК</b> режим был успешно <b>выключен</b>!')
return
if change_name == True:
await message.client(UpdateProfileRequest(last_name=' '))
if change_bio == True:
try:
await message.client(UpdateProfileRequest(about=f'{self.db.get(__name__, "about")}'))
except:
await message.client(UpdateProfileRequest(about="@AstroOfftop - лучший чат для общения."))
m = await utils.answer(message, '<emoji document_id=5465665476971471368>❌</emoji> <b>АФК</b> режим был успешно <b>выключен</b>!')
await self.allmodules.log("AstroAfk now stoped.")
await asyncio.sleep(5)
await m.delete()
@loader.watcher()
async def watcher(self, message):
if not isinstance(message, types.Message):
return
if utils.get_chat_id(message) in self.config['ignore_chats']:
return
if message.mentioned or getattr(message.to_id, "user_id", None) == self._me.id:
afk_state = self.get_afk()
if not afk_state:
return
logger.info(f"You are tagged. User/chat not in ratelimit. Calling message...")
ratelimit = self._db.get(__name__, "ratelimit", [])
if utils.get_chat_id(message) in ratelimit:
return
else:
self._db.setdefault(__name__, {}).setdefault("ratelimit", []).append(
utils.get_chat_id(message)
)
self._db.save()
user = await utils.get_user(message)
if user.is_self or user.bot or user.verified:
logger.info("You are tagged by bot")
return
if self.get_afk() is False:
return
now = datetime.datetime.now().replace(microsecond=0)
gone = datetime.datetime.fromtimestamp(
self._db.get(__name__, "gone")
).replace(microsecond=0)
time = now - gone
reason = self._db.get(__name__, 'reason')
try:
if self.config['link_button'] == None:
if self.config["button"] == False:
if self.config["afk_text"] == None:
await self.inline.form(
message=message,
text=f"<b>😴 Сейчас я в АФК режиме</b>\n\n❇️ Был <b>онлайн</b>: <code>{time}</code> назад.\n📝 Ушел по <b>причине:</b> {reason}",
reply_markup=[
{
'text': '🚫 Закрыть',
'callback': self.callback_handler_ok,
"args": (message.chat.id,)
}
],
silent=True
)
else:
await self.inline.form(
message=message,
text=self._afk_custom_text(),
reply_markup=[
{
'text': '🚫 Закрыть',
'callback': self.callback_handler_ok,
"args": (message.chat.id, )
}
],
silent=True
)
elif self.config['button'] == True:
if self.config["afk_text"] == None:
await self.inline.form(
message=message,
text=f"<b>😴 Сейчас я в АФК режиме</b>\n❇️ Был <b>онлайн</b>: <code>{time}</code> назад.\n📝 Ушел по <b>причине:</b> {reason}",
reply_markup=[
[
{
"text": "🥱 Выйти из АФК",
"callback": self.button_cancel,
}
],
[
{
'text': '🚫 Закрыть',
'callback': self.callback_handler_ok,
"args": (message.chat.id,)
}
]
],
silent=True
)
else:
await self.inline.form(
message=message,
text=self._afk_custom_text(),
reply_markup=[
[
{
"text": "🥱 Выйти из АФК",
"callback": self.button_cancel,
}
],
[
{
'text': '🚫 Закрыть',
'callback': self.callback_handler_ok,
"args": (message.chat.id,)
}
]
],
silent=True
)
else:
if self.config["button"] == False:
if self.config["afk_text"] == None:
await self.inline.form(
message=message,
text=f"😴 Сейчас я в <b>АФК</b> режиме\n❇️ Был <b>онлайн</b>: <code>{time}</code> назад.\n📝 Ушел по <b>причине:</b> {reason}",
reply_markup=[
[
{
"text": self.config['link_button'][0],
"url": self.config['link_button'][1]
}
],
[
{
'text': '🚫 Закрыть',
'callback': self.callback_handler_ok,
"args": (message.chat.id, )
}
]
],
silent=True
)
else:
await self.inline.form(
message=message,
text=self._afk_custom_text(),
reply_markup=[
[
{
"text": self.config['link_button'][0],
"url": self.config['link_button'][1]
}
],
[
{
'text': '🚫 Закрыть',
'callback': self.callback_handler_ok,
"args": (message.chat.id,)
}
]
],
silent=True
)
elif self.config['button'] == True:
if self.config["afk_text"] == None:
await self.inline.form(
message=message,
text=f"😴 Сейчас я в <b>АФК</b> режиме\n❇️ Был <b>онлайн</b>: <code>{time}</code> назад.\n📝 Ушел по <b>причине:</b> {reason}",
reply_markup=[
[
{
"text": self.config['link_button'][0],
"url": self.config['link_button'][1],
}
],
[
{
"text": "🥱 Выйти из АФК",
"callback": self.button_cancel,
}
],
[
{
'text': '🚫 Закрыть',
'callback': self.callback_handler_ok,
"args": (message.chat.id,)
}
]
],
silent=True
)
else:
await self.inline.form(
message=message,
text=self._afk_custom_text(),
reply_markup=[
[
{
"text": self.config['link_button'][0],
"url": self.config['link_button'][1],
}
],
[
{
"text": "🥱 Выйти из АФК",
"callback": self.button_cancel,
}
],
[
{
'text': '🚫 Закрыть',
'callback': self.callback_handler_ok,
"args": (message.chat.id,)
}
]
],
silent=True
)
except:
if self.config["afk_text"] == None:
await utils.answer(
message,
(
"😴 Сейчас я в <b>АФК</b> режиме\n"
f"❇️ Был <b>онлайн</b>: <code>{time}"
"</code> назад.\n📝 Ушел по <b>причине:"
f"</b> {reason}"
)
)
else:
await utils.answer(message, self._afk_custom_text())
async def button_cancel(self, call: InlineCall):
self._db.set(__name__, "afk", False)
self._db.set(__name__, "gone", None)
self._db.set(__name__, "ratelimit", [])
change_bio = self._db.get(__name__, "change_bio")
change_name = self._db.get(__name__, "change_name")
await self.allmodules.log("TxAFК now not working.")
if change_name == False and change_bio == False:
await call.edit(self.strings["bt_off_afk"])
return
if change_name == True:
await self._client(UpdateProfileRequest(last_name=' '))
if change_bio == True:
try:
await self._client(UpdateProfileRequest(about=self.db.get(__name__, "about")))
except:
await self._.client(UpdateProfileRequest(about="@AstroOfftop - лучший чат для общения."))
await call.edit(self.strings["bt_off_afk"])
async def settings(self, call: InlineCall):
info = self.render_settings()
await call.edit(
text=info,
reply_markup=[
[
{
'text': "📖 Биография",
'callback': self.settings_about
},
{
'text': '📝 Префикс',
'callback': self.settings_name
}
],
[
{
"text": "🚫 Закрыть",
"action": 'close'
}
]
]
)
async def settings_name(self, call: InlineCall):
await call.edit(
text=(
f'<b>📖 Установка префикса</b>\n\n'
+ '<i>❔ Хотите ли Вы, чтобы при входе в АФК режим к вашему '
+ 'нику добавлялся префикс <code>| afk.</code> ?</i>\n\n'
+ 'ℹ️ Так же Вы можете <b>изменить префикс</b>, '
+ '<b>отменить</b> или <b>сделать</b> действие, нажав на <b>кнопки ниже</b>'
),
reply_markup=[
[
{
'text': '✅ Да',
"callback": self.name_yes
},
{
"text": '🚫 Нет',
"callback": self.name_no
}
],
[{'text': '↩️ Назад', 'callback': self.settings}]
]
)
async def name_yes(self, call: InlineCall):
self._db.set(__name__, 'change_name', True)
info = self.render_settings()
await call.edit(
text=info,
reply_markup=[
[
{
'text': "📖 Биография",
'callback': self.settings_about
},
{
'text': '📝 Префикс',
'callback': self.settings_name
}
],
[
{
"text": "🚫 Закрыть",
"action": 'close'
}
]
]
)
async def name_no(self, call: InlineCall):
self._db.set(__name__, 'change_name', False)
info = self.render_settings()
await call.edit(
text=info,
reply_markup=[
[
{
'text': "📖 Биография",
'callback': self.settings_about
},
{
'text': '📝 Префикс',
'callback': self.settings_name
}
],
[
{
"text": "🚫 Закрыть",
"action": 'close'
}
]
]
)
async def settings_about(self, call: InlineCall):
if self.config['feedback'] == None:
text = (
f'📖 <b>Смена биографии</b>'
+ '\n\n❔ <b>Хотите</b> ли Вы, чтобы при <b>входе в АФК</b> режим Ваша биография <b>менялась</b>'
+ ' на "<code>Нахожусь в афк</code>"?\n\n'
+ 'ℹ️ Так же Вы можете <b>изменить биографию</b> в <b>конфиге</b>. '
+ 'Можно <b>отменить</b> или <b>сделать</b> действие, нажав на <b>кнопки ниже</b>'
)
else:
text = (
f'📖 <b>Смена биографии</b>'
+ '\n\n❔ <b>Хотите</b> ли Вы, чтобы при <b>входе в АФК</b> режим '
+ 'Ваша биография <b>менялась</b> на "<code>Нет, на месте нахожусь в афк</code><code>.'
+ f' Связь только через @{self.config["feedback"]}</code>"?\n🤖 <b>Бот для связи</b>: <code>@{self.config["feedback"]}</code>\n\n'
+ 'ℹ️ Так же Вы можете <b>изменить биографию</b> в <b>конфиге</b>. '
+ 'Можно <b>отменить</b> или <b>сделать</b> действие, нажав на <b>кнопки ниже</b>'
)
await call.edit(
text=text,
reply_markup=[
[
{
'text': '✅ Да',
"callback": self.bio
},
{
"text": '🚫 Нет',
"callback": self.bio_n
}
],
[{'text': '↩️ Назад', 'callback': self.settings}]
]
)
async def bio(self, call: InlineCall):
self._db.set(__name__, 'change_bio', True)
info = self.render_settings()
await call.edit(
text=info,
reply_markup=[
[
{
'text': "📖 Биография",
'callback': self.settings_about
},
{
'text': '📝 Префикс',
'callback': self.settings_name
}
],
[
{
"text": "🚫 Закрыть",
"action": 'close'
}
]
]
)
async def bio_n(self, call: InlineCall):
self._db.set(__name__, 'change_bio', False)
info = self.render_settings()
await call.edit(
text=info,
reply_markup=[
[
{
'text': "📖 Биография",
'callback': self.settings_about
},
{
'text': '📝 Префикс',
'callback': self.settings_name
}
],
[
{
"text": "🚫 Закрыть",
"action": 'close'
}
]
]
)
# @loader.inline_everyone
async def callback_handler_ok(self, call, chat_id: int):
await call.delete()
logging.info(f'Message in chat ({chat_id}) deleted by {call.from_user.first_name} ({call.from_user.id})')
limit: list = self._db.get(__name__, 'ratelimit', [])
limit.remove(chat_id)
self._db.set(__name__, 'ratelimit', limit)
def get_afk(self):
return self._db.get(__name__, "afk", False)