-
-
Notifications
You must be signed in to change notification settings - Fork 347
/
ukinti.py
189 lines (183 loc) · 6.33 KB
/
ukinti.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
""" @ukinti_bot
Available Commands:
.unbanall
.kick option
Available Options: d, y, m, w, o, q, r """
from telethon import events
from datetime import datetime, timedelta
from telethon.tl.types import UserStatusEmpty, UserStatusLastMonth, UserStatusLastWeek, UserStatusOffline, UserStatusOnline, UserStatusRecently, ChannelParticipantsKicked, ChatBannedRights
from telethon.tl import functions, types
from time import sleep
import asyncio
from uniborg.util import admin_cmd
@borg.on(admin_cmd(pattern="unbanall ?(.*)"))
async def _(event):
if event.fwd_from:
return
input_str = event.pattern_match.group(1)
if input_str:
logger.info("TODO: Not yet Implemented")
else:
if event.is_private:
return False
await event.edit("Searching Participant Lists.")
p = 0
async for i in borg.iter_participants(event.chat_id, filter=ChannelParticipantsKicked, aggressive=True):
rights = ChatBannedRights(
until_date=0,
view_messages=False
)
try:
await borg(functions.channels.EditBannedRequest(event.chat_id, i, rights))
except FloodWaitError as ex:
logger.warn("sleeping for {} seconds".format(ex.seconds))
sleep(ex.seconds)
except Exception as ex:
await event.edit(str(ex))
else:
p += 1
await event.edit("{}: {} unbanned".format(event.chat_id, p))
@borg.on(admin_cmd(pattern="ikuck ?(.*)"))
async def _(event):
if event.fwd_from:
return
if event.is_private:
return False
input_str = event.pattern_match.group(1)
if input_str:
chat = await event.get_chat()
if not (chat.admin_rights or chat.creator):
await event.edit("`You aren't an admin here!`")
return False
p = 0
b = 0
c = 0
d = 0
e = []
m = 0
n = 0
y = 0
w = 0
o = 0
q = 0
r = 0
await event.edit("Searching Participant Lists.")
async for i in borg.iter_participants(event.chat_id):
p = p + 1
#
# Note that it's "reversed". You must set to ``True`` the permissions
# you want to REMOVE, and leave as ``None`` those you want to KEEP.
rights = ChatBannedRights(
until_date=None,
view_messages=True
)
if isinstance(i.status, UserStatusEmpty):
y = y + 1
if "y" in input_str:
status, e = await ban_user(event.chat_id, i, rights)
if not status:
await event.edit("I need admin priveleges to perform this action!")
e.append(str(e))
break
else:
c = c + 1
if isinstance(i.status, UserStatusLastMonth):
m = m + 1
if "m" in input_str:
status, e = await ban_user(event.chat_id, i, rights)
if not status:
await event.edit("I need admin priveleges to perform this action!")
e.append(str(e))
break
else:
c = c + 1
if isinstance(i.status, UserStatusLastWeek):
w = w + 1
if "w" in input_str:
status, e = await ban_user(event.chat_id, i, rights)
if not status:
await event.edit("I need admin priveleges to perform this action!")
e.append(str(e))
break
else:
c = c + 1
if isinstance(i.status, UserStatusOffline):
o = o + 1
if "o" in input_str:
status, e = await ban_user(event.chat_id, i, rights)
if not status:
await event.edit("I need admin priveleges to perform this action!")
e.append(str(e))
break
else:
c = c + 1
if isinstance(i.status, UserStatusOnline):
q = q + 1
if "q" in input_str:
status, e = await ban_user(event.chat_id, i, rights)
if not status:
await event.edit("I need admin priveleges to perform this action!")
e.append(str(e))
break
else:
c = c + 1
if isinstance(i.status, UserStatusRecently):
r = r + 1
if "r" in input_str:
status, e = await ban_user(event.chat_id, i, rights)
if not status:
await event.edit("I need admin priveleges to perform this action!")
e.append(str(e))
break
else:
c = c + 1
if i.bot:
b = b + 1
if "b" in input_str:
status, e = await ban_user(event.chat_id, i, rights)
if not status:
await event.edit("I need admin priveleges to perform this action!")
e.append(str(e))
break
else:
c = c + 1
elif i.deleted:
d = d + 1
if "d" in input_str:
status, e = await ban_user(event.chat_id, i, rights)
if not status:
await event.edit("I need admin priveleges to perform this action!")
e.append(str(e))
else:
c = c + 1
elif i.status is None:
n = n + 1
if input_str:
required_string = """Kicked {} / {} users
Deleted Accounts: {}
UserStatusEmpty: {}
UserStatusLastMonth: {}
UserStatusLastWeek: {}
UserStatusOffline: {}
UserStatusOnline: {}
UserStatusRecently: {}
Bots: {}
None: {}"""
await event.edit(required_string.format(c, p, d, y, m, w, o, q, r, b, n))
await asyncio.sleep(5)
await event.edit("""Total: {} users
Deleted Accounts: {}
UserStatusEmpty: {}
UserStatusLastMonth: {}
UserStatusLastWeek: {}
UserStatusOffline: {}
UserStatusOnline: {}
UserStatusRecently: {}
Bots: {}
None: {}""".format(p, d, y, m, w, o, q, r, b, n))
async def ban_user(chat_id, i, rights):
try:
await borg(functions.channels.EditBannedRequest(chat_id, i, rights))
return True, None
except Exception as exc:
return False, str(exc)