Spaces:
Running
Running
File size: 12,445 Bytes
156ce57 |
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 |
# Ultroid - UserBot
# Copyright (C) 2021-2023 TeamUltroid
#
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
import asyncio
from telethon import events
from telethon.errors.rpcerrorlist import UserNotParticipantError
from telethon.tl.functions.channels import GetParticipantRequest
from telethon.utils import get_display_name
from pyUltroid.dB import stickers
from pyUltroid.dB.echo_db import check_echo
from pyUltroid.dB.forcesub_db import get_forcesetting
from pyUltroid.dB.gban_mute_db import is_gbanned
from pyUltroid.dB.greetings_db import get_goodbye, get_welcome, must_thank
from pyUltroid.dB.nsfw_db import is_profan
from pyUltroid.fns.helper import check_reply_to, inline_mention
from pyUltroid.fns.tools import (
async_searcher,
create_tl_btn,
get_chatbot_reply,
get_oracle_reply,
)
try:
from ProfanityDetector import detector
except ImportError:
detector = None
from . import LOG_CHANNEL, LOGS, asst, get_string, types, udB, ultroid_bot
from ._inline import something
if not udB.get_key("ORACLE_USERS"):
udB.set_key("ORACLE_USERS", {})
if not udB.get_key("CHATBOT_USERS"):
udB.set_key("CHATBOT_USERS", {})
@ultroid_bot.on(events.ChatAction())
async def Function(event):
try:
await DummyHandler(event)
except Exception as er:
LOGS.exception(er)
async def DummyHandler(ult):
# clean chat actions
key = udB.get_key("CLEANCHAT") or []
if ult.chat_id in key:
try:
await ult.delete()
except BaseException:
pass
# thank members
if must_thank(ult.chat_id):
chat_count = (await ult.client.get_participants(ult.chat_id, limit=0)).total
if chat_count % 100 == 0:
stik_id = chat_count / 100 - 1
sticker = stickers[stik_id]
await ult.respond(file=sticker)
# force subscribe
if (
udB.get_key("FORCESUB")
and ((ult.user_joined or ult.user_added))
and get_forcesetting(ult.chat_id)
):
user = await ult.get_user()
if not user.bot:
joinchat = get_forcesetting(ult.chat_id)
try:
await ultroid_bot(GetParticipantRequest(int(joinchat), user.id))
except UserNotParticipantError:
await ultroid_bot.edit_permissions(
ult.chat_id, user.id, send_messages=False
)
res = await ultroid_bot.inline_query(
asst.me.username, f"fsub {user.id}_{joinchat}"
)
await res[0].click(ult.chat_id, reply_to=ult.action_message.id)
if ult.user_joined or ult.added_by:
user = await ult.get_user()
chat = await ult.get_chat()
# gbans and @UltroidBans checks
if udB.get_key("ULTROID_BANS"):
try:
is_banned = await async_searcher(
"https://bans.ultroid.tech/api/status",
json={"userId": user.id},
post=True,
re_json=True,
)
if is_banned["is_banned"]:
await ult.client.edit_permissions(
chat.id,
user.id,
view_messages=False,
)
await ult.respond(
f'**@UltroidBans:** Banned user detected and banned!\n`{str(is_banned)}`.\nBan reason: {is_banned["reason"]}',
)
except BaseException:
pass
reason = is_gbanned(user.id)
if reason and chat.admin_rights:
try:
await ult.client.edit_permissions(
chat.id,
user.id,
view_messages=False,
)
gban_watch = get_string("can_1").format(inline_mention(user), reason)
await ult.reply(gban_watch)
except Exception as er:
LOGS.exception(er)
# greetings
elif get_welcome(ult.chat_id):
user = await ult.get_user()
chat = await ult.get_chat()
title = chat.title or "this chat"
count = (
chat.participants_count
or (await ult.client.get_participants(chat, limit=0)).total
)
mention = inline_mention(user)
name = user.first_name
fullname = get_display_name(user)
uu = user.username
username = f"@{uu}" if uu else mention
wel = get_welcome(ult.chat_id)
msgg = wel["welcome"]
med = wel["media"] or None
userid = user.id
msg = None
if msgg:
msg = msgg.format(
mention=mention,
group=title,
count=count,
name=name,
fullname=fullname,
username=username,
userid=userid,
)
if wel.get("button"):
btn = create_tl_btn(wel["button"])
await something(ult, msg, med, btn)
elif msg:
send = await ult.reply(
msg,
file=med,
)
await asyncio.sleep(150)
await send.delete()
else:
await ult.reply(file=med)
elif (ult.user_left or ult.user_kicked) and get_goodbye(ult.chat_id):
user = await ult.get_user()
chat = await ult.get_chat()
title = chat.title or "this chat"
count = (
chat.participants_count
or (await ult.client.get_participants(chat, limit=0)).total
)
mention = inline_mention(user)
name = user.first_name
fullname = get_display_name(user)
uu = user.username
username = f"@{uu}" if uu else mention
wel = get_goodbye(ult.chat_id)
msgg = wel["goodbye"]
med = wel["media"]
userid = user.id
msg = None
if msgg:
msg = msgg.format(
mention=mention,
group=title,
count=count,
name=name,
fullname=fullname,
username=username,
userid=userid,
)
if wel.get("button"):
btn = create_tl_btn(wel["button"])
await something(ult, msg, med, btn)
elif msg:
send = await ult.reply(
msg,
file=med,
)
await asyncio.sleep(150)
await send.delete()
else:
await ult.reply(file=med)
@ultroid_bot.on(events.NewMessage(incoming=True))
async def chatBot_replies(e):
if e.sender_id in udB.get_key("CHATBOT_USERS"):
xxrep = await check_reply_to(e)
else:
return
if xxrep:
sender = await e.get_sender()
if not isinstance(sender, types.User) or sender.bot:
return
if check_echo(e.chat_id, e.sender_id):
try:
await e.respond(e.message)
except Exception as er:
LOGS.exception(er)
key = udB.get_key("CHATBOT_USERS") or {}
if e.text and key.get(e.chat_id) and sender.id in key[e.chat_id]:
# Simulate typing indicator
async with e.client.action(e.chat_id, "typing"):
msg = await get_chatbot_reply(e.message.message)
if msg:
sleep = udB.get_key("CHATBOT_SLEEP") or 1.5
await asyncio.sleep(sleep)
# Check if the message length exceeds a certain threshold
if len(msg) > 4096:
# Create a temporary text file
with tempfile.NamedTemporaryFile(
mode="w+", delete=False
) as temp_file:
temp_file.write(msg)
# Send the text file with a caption
await e.client.send_file(
e.chat_id,
temp_file.name,
caption="Here is the response in a text file.",
)
# Delete the temporary text file
os.remove(temp_file.name)
else:
# Send the message directly
await e.reply(msg)
chat = await e.get_chat()
if e.is_group and sender.username:
await uname_stuff(e.sender_id, sender.username, sender.first_name)
elif e.is_private and chat.username:
await uname_stuff(e.sender_id, chat.username, chat.first_name)
if detector and is_profan(e.chat_id) and e.text:
x, y = detector(e.text)
if y:
await e.delete()
@ultroid_bot.on(events.NewMessage(incoming=True))
async def oracleBot_replies(e):
if e.sender_id in udB.get_key("ORACLE_USERS"):
xxxrep = await check_reply_to(e)
else:
return
if xxxrep:
sender = await e.get_sender()
if not isinstance(sender, types.User) or sender.bot:
return
if check_echo(e.chat_id, e.sender_id):
try:
await e.respond(e.message)
except Exception as er:
LOGS.exception(er)
key = udB.get_key("ORACLE_USERS") or {}
if e.text and key.get(e.chat_id) and sender.id in key[e.chat_id]:
# Simulate typing indicator
async with e.client.action(e.chat_id, "typing"):
msg = await get_oracle_reply(
e.message.message, user_id=sender.id, mongo_url=MONGO_URI
)
if msg:
sleep = udB.get_key("ORACLE_SLEEP") or 1.5
await asyncio.sleep(sleep)
# Check if the message length exceeds a certain threshold
if len(msg) > 4096:
# Create a temporary text file
with tempfile.NamedTemporaryFile(
mode="w+", delete=False
) as temp_file:
temp_file.write(msg)
# Send the text file with a caption
await e.client.send_file(
e.chat_id,
temp_file.name,
caption="Here is the response in a text file",
)
# Delete the temporary text file
os.remove(temp_file.name)
else:
# Send the message directly
await e.reply(msg)
chat = await e.get_chat()
if e.is_group and sender.username:
await uname_stuff(e.sender_id, sender.username, sender.first_name)
elif e.is_private and chat.username:
await uname_stuff(e.sender_id, chat.username, chat.first_name)
if detector and is_profan(e.chat_id) and e.text:
x, y = detector(e.text)
if y:
await e.delete()
@ultroid_bot.on(events.Raw(types.UpdateUserName))
async def uname_change(e):
await uname_stuff(e.user_id, e.usernames[0] if e.usernames else None, e.first_name)
async def uname_stuff(id, uname, name):
if udB.get_key("USERNAME_LOG"):
old_ = udB.get_key("USERNAME_DB") or {}
old = old_.get(id)
# Ignore Name Logs
if old and old == uname:
return
if old and uname:
await asst.send_message(
LOG_CHANNEL,
get_string("can_2").format(old, uname),
)
elif old:
await asst.send_message(
LOG_CHANNEL,
get_string("can_3").format(f"[{name}](tg://user?id={id})", old),
)
elif uname:
await asst.send_message(
LOG_CHANNEL,
get_string("can_4").format(f"[{name}](tg://user?id={id})", uname),
)
old_[id] = uname
udB.set_key("USERNAME_DB", old_)
|