Spaces:
Running
Running
File size: 9,711 Bytes
0189974 83b0433 0189974 eef97a7 0189974 eef97a7 711b749 eef97a7 1cbc430 2fc8036 eef97a7 09099c9 b002286 8e64093 fa04dc3 aa9e39d 795711a aa9e39d 795711a 12f026d 09099c9 b002286 795711a 67daa79 1cbc430 a6269a8 1cbc430 b002286 2707517 67daa79 b002286 dfdebb3 67daa79 b002286 67daa79 1cbc430 d9f4368 c3b4392 1cbc430 d9f4368 1cbc430 1d5aa72 c3b4392 768892d c3b4392 768892d c3b4392 768892d b9bfe40 4e5d5b0 c3b4392 b002286 9cab3bd 5be98cf 9cab3bd 5be98cf 9cab3bd 5be98cf 9cab3bd 5be98cf 9cab3bd 5be98cf 9cab3bd aa6ba21 b002286 c3b4392 b002286 d9f4368 83b0433 d9f4368 83b0433 d9f4368 83b0433 d9f4368 b002286 d9f4368 8e64093 67daa79 1cbc430 dfdebb3 1cbc430 f65dc76 1cbc430 711b749 6aa8ef9 1cbc430 c3b4392 1cbc430 c3b4392 711b749 5c5148b d9f4368 59fe4e1 d9f4368 5341b2a 62d9953 fa04dc3 62d9953 d9f4368 5341b2a aa9e39d d9f4368 bfbcae2 6daa732 d9f4368 8e64093 b002286 2fc8036 dfdebb3 2707517 dfdebb3 b002286 2fc8036 2707517 b002286 0648c02 c6c04b2 b2b36e4 12f026d c6c04b2 83b0433 f65dc76 83b0433 c6c04b2 f65dc76 09099c9 c6c04b2 09099c9 c6c04b2 12f026d b002286 67daa79 b002286 09099c9 f26f9dc 09099c9 b002286 09099c9 1cbc430 09099c9 e2da036 09099c9 fadf9d0 f7919c0 09099c9 83b0433 f65dc76 09099c9 8e64093 09099c9 1cbc430 b7d0333 c3b4392 09099c9 b002286 1cbc430 fec5a2d 1cbc430 b002286 4ce98fd d76971a 809532c d76971a 2707517 ed63425 |
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 |
import os
from asyncio import sleep
from pyrogram import enums
from datetime import datetime
from traceback import format_exc
from Powers.bot_class import Gojo
from pyrogram.types import Message
from pyrogram.enums import ChatType
from Powers.database.antispam_db import GBan
from Powers.utils.custom_filters import command
from Powers.utils.extract_user import extract_user
from Powers import (
LOGGER, DEV_USERS, SUDO_USERS, SUPPORT_STAFF, WHITELIST_USERS)
from pyrogram.errors import (
RPCError, MessageTooLong, EntityBoundsInvalid, MediaCaptionTooLong)
gban_db = GBan()
async def count(c: Gojo, chat):
try:
administrator = []
async for admin in c.get_chat_members(
chat_id=chat, filter=enums.ChatMembersFilter.ADMINISTRATORS
):
administrator.append(admin)
total_admin = administrator
bot = []
async for tbot in c.get_chat_members(
chat_id=chat, filter=enums.ChatMembersFilter.BOTS
):
bot.append(tbot)
total_bot = bot
bot_admin = 0
ban = []
async for banned in c.get_chat_members(
chat, filter=enums.ChatMembersFilter.BANNED
):
ban.append(banned)
total_banned = ban
for x in total_admin:
for y in total_bot:
if x == y:
bot_admin += 1
total_admin = len(total_admin)
total_bot = len(total_bot)
total_banned = len(total_banned)
return total_bot, total_admin, bot_admin, total_banned
except Exception as e:
total_bot = (
total_admin
) = bot_admin = total_banned = "Can't fetch due to some error."
return total_bot, total_admin, bot_admin, total_banned
async def user_info(c: Gojo, user, already=False):
if not already:
user = await c.get_users(user_ids=user)
if not user.first_name:
return ["Deleted account", None]
gbanned, reason_gban = gban_db.get_gban(user.id)
if gbanned:
gban = True
reason = f"The user is gbanned because {reason_gban}"
else:
gban = False
reason = "User is not gbanned"
user_id = user.id
username = user.username
first_name = user.first_name
last_name = user.last_name
mention = user.mention(f"{first_name}")
dc_id = user.dc_id
is_verified = user.is_verified
is_restricted = user.is_restricted
photo_id = user.photo.big_file_id if user.photo else None
is_support = True if user_id in SUPPORT_STAFF else False
if user_id in SUPPORT_STAFF:
if user_id in DEV_USERS:
omp = "User is dev"
elif user_id in SUDO_USERS:
omp = "User is sudoer"
elif user_id in WHITELIST_USERS:
omp = "User is in whitelist"
else:
omp = "Hmmm.......Who is that again?"
is_bot = user.is_bot
is_fake = user.is_fake
status = user.status
if is_bot is True:
last_date = "Targeted user is a bot"
elif status == "recently":
last_date = "Last seen Recently"
elif status == "within_week":
last_date = "Last seen within the last week"
elif status == "within_month":
last_date = "Last seen within the last month"
elif status == "long_time_ago":
last_date = "Last seen a long time ago or may be I am blocked by the user :("
elif status == "online":
last_date = "User is currently Online"
elif status == "offline":
last_date = datetime.fromtimestamp(user.status.date).strftime(
"%Y-%m-%d %H:%M:%S"
)
else:
last_date = "User is currently online"
caption = f"""
<b><i><u>β‘οΈ Extracted User info From Telegram β‘οΈ</b></i></u>
<b>π User ID</b>: <code>{user_id}</code>
<b>π Link To Profile</b>: <a href='tg://user?id={user_id}'>Click Hereπͺ</a>
<b>π£ Mention</b>: {mention}
<b>π£ First Name</b>: <code>{first_name}</code>
<b>π£ Second Name</b>: <code>{last_name}</code>
<b>π Username</b>: {("@" + username) if username else "NA"}
<b>π₯Έ Support</b>: {is_support}
<b>π€ Support user type</b>: <code>{omp}</code>
<b>π£ Gbanned</b>: {gban}
<b>π€ Gban reason</b>: <code>{reason}</code>
<b>π DC ID</b>: {dc_id}
<b>π§ RESTRICTED</b>: {is_restricted}
<b>β
VERIFIED</b>: {is_verified}
<b>π§ FAKE</b> : {is_fake}
<b>π€ BOT</b>: {is_bot}
<b>π Last seen</b>: <code>{last_date}</code>
"""
return caption, photo_id
async def chat_info(c: Gojo, chat, already=False):
if not already:
chat = await c.get_chat(chat)
chat_id = chat.id
username = chat.username
total_bot, total_admin, total_bot_admin, total_banned = await count(c, chat.id)
title = chat.title
if chat.type == ChatType.CHANNEL:
type_ = "channel"
if chat.type == ChatType.GROUP:
type_ = "group"
if chat.type == ChatType.SUPERGROUP:
type_ = "supergroup"
if chat.type == ChatType.PRIVATE:
type_ = "private"
if chat.type == ChatType.BOT:
type_ = "bot"
is_scam = chat.is_scam
is_fake = chat.is_fake
description = chat.description
members = chat.members_count
is_restricted = chat.is_restricted
dc_id = chat.dc_id
photo_id = chat.photo.big_file_id if chat.photo else None
can_save = chat.has_protected_content
linked_chat = chat.linked_chat
caption = f"""
π° <b>CHAT INFO</b> π°
<b>π ID</b>: <code>{chat_id}</code>
<b>π Chat Title</b>: {title}
<b>β¨ Chat Type</b>: {type_.upper()}
<b>π DataCentre ID</b>: {dc_id}
<b>π Username</b>: {("@" + username) if username else "NA"}
<b>βοΈ Administrators</b>: {total_admin}
<b>π€ Bots</b>: {total_bot}
<b>π« Banned</b>: {total_banned}
<b>βοΈ Admin π€ Bots</b>: {total_bot_admin}
<b>π§ Scam</b>: {is_scam}
<b>π€¨ Fake</b>: {is_fake}
<b>π§ Restricted</b>: {is_restricted}
<b>π¨πΏβπ» Description</b>: <code>{description}</code>
<b>πͺ Total members</b>: {members}
<b>π« Has Protected Content</b>: {can_save}
<b>π Linked Chat</b>: <code>{linked_chat.id if linked_chat else "Not Linked"}</code>
"""
return caption, photo_id
@Gojo.on_message(command(["info", "whois"]))
async def info_func(c: Gojo, message: Message):
try:
user, _, user_name = await extract_user(c, message)
except Exception as e:
return await message.reply_text(
f"Got an error while running extract_user function error is {e}.....Give this message in supoort group"
)
if not user:
await message.reply_text("Can't find user to fetch info!")
m = await message.reply_text(f"Fetching user info from telegram's database...")
try:
info_caption, photo_id = await user_info(c, user)
except Exception as e:
LOGGER.error(e)
LOGGER.error(format_exc())
return await m.edit(str(e))
if not photo_id:
await m.delete()
await sleep(2)
return await message.reply_text(info_caption, disable_web_page_preview=True)
photo = await c.download_media(photo_id)
await m.delete()
await sleep(2)
try:
await message.reply_photo(photo, caption=info_caption, quote=False)
except MediaCaptionTooLong:
x = await message.reply_photo(photo)
try:
await x.reply_text(info_caption)
except EntityBoundsInvalid:
await x.delete()
await message.reply_text(info_caption)
except RPCError as rpc:
await message.reply_text(rpc)
LOGGER.error(rpc)
LOGGER.error(format_exc())
except Exception as e:
await message.reply_text(text=e)
LOGGER.error(e)
LOGGER.error(format_exc())
os.remove(photo)
return
@Gojo.on_message(command(["chinfo", "chatinfo", "chat_info"]))
async def chat_info_func(c: Gojo, message: Message):
splited = message.text.split()
if len(splited) == 1:
chat = message.chat.id
else:
chat = splited[1]
try:
chat = int(chat)
except (ValueError, Exception) as ef:
if "invalid literal for int() with base 10:" in str(ef):
chat = str(chat)
else:
return await message.reply_text(
f"Got and exception {e}\n**Usage:**/chinfo [USERNAME|ID]"
)
m = await message.reply_text(
f"Fetching chat info of chat from telegram's database....."
)
try:
info_caption, photo_id = await chat_info(c, chat=chat)
except Exception as e:
await m.delete()
await sleep()
return await message.reply_text(f"**GOT AN ERROR:**\n {e}")
if not photo_id:
await m.delete()
await sleep(2)
return await message.reply_text(info_caption, disable_web_page_preview=True)
photo = await c.download_media(photo_id)
await m.delete()
await sleep(2)
try:
await message.reply_photo(photo, caption=info_caption, quote=False)
except MediaCaptionTooLong:
x = await message.reply_photo(photo)
try:
await x.reply_text(info_caption)
except EntityBoundsInvalid:
await x.delete()
await message.reply_text(info_caption)
except RPCError as rpc:
await message.reply_text(rpc)
LOGGER.error(e)
LOGGER.error(format_exc())
except Exception as e:
await message.reply_text(text=e)
LOGGER.error(e)
LOGGER.error(format_exc())
os.remove(photo)
return
__PLUGIN__ = "info"
__alt_name__ = [
"info",
"chinfo",
]
__HELP__ = """
**Information**
β’ /info - To get info about the user
β’ /chinfo - To get info about the chat
"""
|