-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer-ownership.py
44 lines (38 loc) · 1.4 KB
/
transfer-ownership.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
"""
Transfer channel ownership.
https://docs.pyrogram.org/telegram/functions/channels/edit-creator
"""
from pyrogram.raw.functions.channels import EditCreator
from pyrogram.raw.functions.account import GetPassword
from pyrogram.raw.types import InputCheckPasswordEmpty
from pyrogram.raw.types.account import Password
from pyrogram.utils import compute_password_check
from pyrogram import Client, raw
app = Client("name")
async def main():
await app.start()
chat_id = -1000000000
new_owner_id = "DevZaid" # user id or username
peer_channel = await app.resolve_peer(chat_id)
peer_user = await app.resolve_peer(new_owner_id)
if not isinstance(peer_channel, raw.types.InputPeerChannel):
print("This chat_id not for channel/supergroup")
return False
if not isinstance(peer_user, raw.types.InputPeerUser):
print("This user_id not for user")
return False
i: "Password" = await app.invoke(GetPassword())
if not i.has_password:
password = InputCheckPasswordEmpty()
else:
current_password = input("- Enter your password : - ")
password = compute_password_check(i, current_password)
res: "raw.types.Update" = await app.invoke(
EditCreator(
channel=peer_channel,
user_id=peer_user,
password=password
)
)
print(res)
app.run(main())