forked from sultansq/kiu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
userbot.py
202 lines (195 loc) · 7.99 KB
/
userbot.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
import sys
from pyrogram import Client
import config
from ..logging import LOGGER
assistants = []
assistantids = []
class Userbot(Client):
def __init__(self):
self.one = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING1),
no_updates=True,
)
self.two = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING2),
no_updates=True,
)
self.three = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING3),
no_updates=True,
)
self.four = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING4),
no_updates=True,
)
self.five = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING5),
no_updates=True,
)
async def start(self):
LOGGER(__name__).info(f"Gettings Assistants Info...")
if config.STRING1:
await self.one.start()
try:
await self.one.join_chat("JK_ZG")
await self.one.join_chat("PP_G3")
except:
pass
assistants.append(1)
get_me = await self.one.get_me()
self.one.username = get_me.username
self.one.id = get_me.id
self.one.mention = get_me.mention
assistantids.append(get_me.id)
if get_me.last_name:
self.one.name = (
get_me.first_name + " " + get_me.last_name
)
else:
self.one.name = get_me.first_name
LOGGER(__name__).info(
f"Assistant Started as {self.one.name}"
)
try:
await self.one.send_message(
config.LOG_GROUP_ID, f"**» {config.MUSIC_BOT_NAME} تم تشغيل البوت المساعد **\n\n✨ ɪᴅ : `{self.one.id}`\n❄ ɴᴀᴍᴇ : {self.one.name}\n💫 ᴜsᴇʀɴᴀᴍᴇ : @{self.one.username}"
)
except:
LOGGER(__name__).error(
f"Assistant Account 1 has failed to access the log Group. Make sure that you have added your assistant to your log group and promoted as admin ! "
)
sys.exit()
if config.STRING2:
await self.two.start()
try:
await self.two.join_chat("JK_ZG")
await self.two.join_chat("PP_G3")
except:
pass
assistants.append(2)
get_me = await self.two.get_me()
self.two.username = get_me.username
self.two.id = get_me.id
self.two.mention = get_me.mention
assistantids.append(get_me.id)
if get_me.last_name:
self.two.name = (
get_me.first_name + " " + get_me.last_name
)
else:
self.two.name = get_me.first_name
try:
await self.two.send_message(
config.LOG_GROUP_ID, f"**» {config.MUSIC_BOT_NAME} ᴀssɪsᴛᴀɴᴛ ᴛᴡᴏ sᴛᴀʀᴛᴇᴅ :**\n\n✨ ɪᴅ : `{self.two.id}`\n❄ ɴᴀᴍᴇ : {self.two.name}\n💫 ᴜsᴇʀɴᴀᴍᴇ : @{self.two.username}"
)
except:
LOGGER(__name__).error(
f"Assistant Account 2 has failed to access the log Group. Make sure that you have added your assistant to your log group and promoted as admin ! "
)
sys.exit()
LOGGER(__name__).info(
f"Assistant Two Started as {self.two.name}"
)
if config.STRING3:
await self.three.start()
try:
await self.three.join_chat("JK_ZG")
await self.three.join_chat("PP_G3")
except:
pass
assistants.append(3)
get_me = await self.three.get_me()
self.three.username = get_me.username
self.three.id = get_me.id
self.three.mention = get_me.mention
assistantids.append(get_me.id)
if get_me.last_name:
self.three.name = (
get_me.first_name + " " + get_me.last_name
)
else:
self.three.name = get_me.first_name
try:
await self.three.send_message(
config.LOG_GROUP_ID, f"**» {config.MUSIC_BOT_NAME} ᴀssɪsᴛᴀɴᴛ ᴛʜʀᴇᴇ sᴛᴀʀᴛᴇᴅ :**\n\n✨ ɪᴅ : `{self.three.id}`\n❄ ɴᴀᴍᴇ : {self.three.name}\n💫 ᴜsᴇʀɴᴀᴍᴇ : @{self.three.username}"
)
except:
LOGGER(__name__).error(
f"Assistant Account 3 has failed to access the log Group. Make sure that you have added your assistant to your log group and promoted as admin ! "
)
sys.exit()
LOGGER(__name__).info(
f"Assistant Three Started as {self.three.name}"
)
if config.STRING4:
await self.four.start()
try:
await self.four.join_chat("JK_ZG")
await self.four.join_chat("PP_G3")
except:
pass
assistants.append(4)
get_me = await self.four.get_me()
self.four.username = get_me.username
self.four.id = get_me.id
self.four.mention = get_me.mention
assistantids.append(get_me.id)
if get_me.last_name:
self.four.name = (
get_me.first_name + " " + get_me.last_name
)
else:
self.four.name = get_me.first_name
try:
await self.four.send_message(
config.LOG_GROUP_ID, f"**» {config.MUSIC_BOT_NAME} ᴀssɪsᴛᴀɴᴛ ғᴏᴜʀ sᴛᴀʀᴛᴇᴅ :**\n\n✨ ɪᴅ : `{self.four.id}`\n❄ ɴᴀᴍᴇ : {self.four.name}\n💫 ᴜsᴇʀɴᴀᴍᴇ : @{self.four.username}"
)
except:
LOGGER(__name__).error(
f"Assistant Account 4 has failed to access the log Group. Make sure that you have added your assistant to your log group and promoted as admin ! "
)
sys.exit()
LOGGER(__name__).info(
f"Assistant Four Started as {self.four.name}"
)
if config.STRING5:
await self.five.start()
try:
await self.five.join_chat("JK_ZG")
await self.five.join_chat("PP_G3")
except:
pass
assistants.append(5)
get_me = await self.five.get_me()
self.five.username = get_me.username
self.five.id = get_me.id
self.five.mention = get_me.mention
assistantids.append(get_me.id)
if get_me.last_name:
self.five.name = (
get_me.first_name + " " + get_me.last_name
)
else:
self.five.name = get_me.first_name
try:
await self.five.send_message(
config.LOG_GROUP_ID, f"**» {config.MUSIC_BOT_NAME} ᴀssɪsᴛᴀɴᴛ ғɪᴠᴇ sᴛᴀʀᴛᴇᴅ :**\n\n✨ ɪᴅ : `{self.five.id}`\n❄ ɴᴀᴍᴇ : {self.five.name}\n💫 ᴜsᴇʀɴᴀᴍᴇ : @{self.five.username}"
)
except:
LOGGER(__name__).error(
f"Assistant Account 5 has failed to access the log Group. Make sure that you have added your assistant to your log group and promoted as admin ! "
)
sys.exit()
LOGGER(__name__).info(
f"Assistant Five Started as {self.five.name}"
)