mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 06:24:18 +02:00
107 lines
4.1 KiB
Python
107 lines
4.1 KiB
Python
# .------.------.------.------.------.------.------.------.------.------.
|
||
# |D.--. |4.--. |N.--. |1.--. |3.--. |L.--. |3.--. |K.--. |0.--. |0.--. |
|
||
# | :/\: | :/\: | :(): | :/\: | :(): | :/\: | :(): | :/\: | :/\: | :/\: |
|
||
# | (__) | :\/: | ()() | (__) | ()() | (__) | ()() | :\/: | :\/: | :\/: |
|
||
# | '--'D| '--'4| '--'N| '--'1| '--'3| '--'L| '--'3| '--'K| '--'0| '--'0|
|
||
# `------`------`------`------`------`------`------`------`------`------'
|
||
#
|
||
# Copyright 2023 t.me/D4n13l3k00
|
||
# Licensed under the Creative Commons CC BY-NC-ND 4.0
|
||
#
|
||
# Full license text can be found at:
|
||
# https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode
|
||
#
|
||
# Human-friendly one:
|
||
# https://creativecommons.org/licenses/by-nc-nd/4.0
|
||
|
||
# meta developer: @D4n13l3k00
|
||
|
||
|
||
from asyncio import sleep
|
||
|
||
from telethon import functions
|
||
from telethon.tl.functions.account import UpdateProfileRequest
|
||
from telethon.tl.functions.users import GetFullUserRequest
|
||
|
||
from .. import loader, utils # type: ignore
|
||
|
||
|
||
@loader.tds
|
||
class CuMod(loader.Module):
|
||
"""Полное копирование юзера(ава, имя|фамилия, био)"""
|
||
|
||
strings = {"name": "CopyUser"}
|
||
|
||
@loader.owner
|
||
async def cucmd(self, message):
|
||
""".cu <s> <a> <reply/@username>
|
||
<s> - Скрытый режим
|
||
<a> - Удалить ваши аватарки
|
||
Аргументы после юзера не указывайте, не скушает
|
||
Примеры:
|
||
.cu s @user/reply
|
||
.cu a @user/reply
|
||
.cu s a @user/reply"""
|
||
reply = await message.get_reply_message()
|
||
user = None
|
||
s = False
|
||
a = False
|
||
if utils.get_args_raw(message):
|
||
args = utils.get_args_raw(message).split(" ")
|
||
for i in args:
|
||
if i.lower() == "s":
|
||
s = True
|
||
elif i.lower() in ["а", "a"]:
|
||
a = True
|
||
else:
|
||
try:
|
||
user = await message.client.get_entity(i)
|
||
break
|
||
except Exception:
|
||
continue
|
||
if user is None and reply is not None:
|
||
user = reply.sender
|
||
if user is None and reply is None:
|
||
if not s:
|
||
await message.edit("Кого?")
|
||
return
|
||
if s:
|
||
await message.delete()
|
||
if not s:
|
||
for i in range(11):
|
||
await message.edit(
|
||
f"Получаем доступ к аккаунту пользователя [{i*10}%]\n[{(i*'#').ljust(10, '–')}]"
|
||
)
|
||
await sleep(0.3)
|
||
if a:
|
||
avs = await message.client.get_profile_photos("me")
|
||
if len(avs) > 0:
|
||
await message.client(
|
||
functions.photos.DeletePhotosRequest(
|
||
await message.client.get_profile_photos("me")
|
||
)
|
||
)
|
||
full = await message.client(GetFullUserRequest(user.id))
|
||
if not s:
|
||
await message.edit("Получаем аватарку... [35%]\n[###–––––––]")
|
||
if full.profile_photo:
|
||
up = await message.client.upload_file(
|
||
await message.client.download_profile_photo(user, bytes)
|
||
)
|
||
if not s:
|
||
await message.edit("Ставим аватарку... [50%]\n[#####–––––]")
|
||
await message.client(functions.photos.UploadProfilePhotoRequest(up))
|
||
if not s:
|
||
await message.edit("Получаем данные... [99%]\n[#########–]")
|
||
await message.client(
|
||
UpdateProfileRequest(
|
||
user.first_name if user.first_name is not None else "",
|
||
user.last_name if user.last_name is not None else "",
|
||
full.about[:70] if full.about is not None else "",
|
||
)
|
||
)
|
||
if not s:
|
||
await message.edit("Аккаунт клонирован! [100%]\n[##########]")
|
||
await sleep(5)
|
||
await message.edit("Аккаунт клонирован!")
|