File size: 17,876 Bytes
677cbbf a8e9b84 abc89fd a8e9b84 677cbbf a8e9b84 677cbbf a8e9b84 48dd506 a8e9b84 5b1240d abc89fd 5b1240d a8e9b84 5b1240d a8e9b84 5b1240d a8e9b84 5b1240d a8e9b84 5b1240d a8e9b84 5b1240d a8e9b84 5b1240d a8e9b84 5b1240d a8e9b84 5b1240d a8e9b84 5b1240d abc89fd 5b1240d a8e9b84 48dd506 a8e9b84 677cbbf a8e9b84 677cbbf a8e9b84 677cbbf a8e9b84 677cbbf a8e9b84 48dd506 a8e9b84 677cbbf a8e9b84 677cbbf a8e9b84 677cbbf a8e9b84 677cbbf a8e9b84 48dd506 |
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 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 |
import time, re, os
from config import BOT_USERNAME
from pyrogram.enums import MessageEntityType
from pyrogram import filters
from pyrogram.types import Message
from DragMusic import app
from DragMusic.Mongo.readable_time import get_readable_time
from DragMusic.Mongo.afkdb import add_afk, is_afk, remove_afk
@app.on_message(
filters.command(["afk", "brb", "Afk", "Brb"], prefixes=["/", "!","."]) |
filters.regex(r"^(afk|brb|Afk|Brb)(?:\s+(.+))?$"))
async def active_afk(_, message: Message):
if message.sender_chat:
return
user_id = message.from_user.id
verifier, reasondb = await is_afk(user_id)
if verifier:
await remove_afk(user_id)
try:
afktype = reasondb["type"]
timeafk = reasondb["time"]
data = reasondb["data"]
reasonafk = reasondb["reason"]
seenago = get_readable_time((int(time.time() - timeafk)))
if afktype == "text":
send = await message.reply_text(
f"{message.from_user.first_name} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}",
disable_web_page_preview=True,
)
if afktype == "text_reason":
send = await message.reply_text(
f"{message.from_user.first_name} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}\n\nReason: {reasonafk}",
disable_web_page_preview=True,
)
if afktype == "animation":
if str(reasonafk) == "None":
send = await message.reply_animation(
data,
caption=f"{message.from_user.first_name} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ for {seenago}",
)
else:
send = await message.reply_animation(
data,
caption=f"{message.from_user.first_name} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ for {seenago}\n\nReason: {reasonafk}",
)
if afktype == "photo":
if str(reasonafk) == "None":
send = await message.reply_photo(
photo=f"/tmp/downloads/{user_id}.jpg",
caption=f"{message.from_user.first_name} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}",
)
else:
send = await message.reply_photo(
photo=f"/tmp/downloads/{user_id}.jpg",
caption=f"{message.from_user.first_name} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}\n\nReason: {reasonafk}",
)
except Exception:
send = await message.reply_text(
f"{message.from_user.first_name} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ",
disable_web_page_preview=True,
)
return
# Handle both command format and plain text format
details = None # Ensure details is always defined
if message.command:
# Command format: /afk or /afk reason
if len(message.command) == 1 and not message.reply_to_message:
details = {
"type": "text",
"time": time.time(),
"data": None,
"reason": None,
}
elif len(message.command) > 1 and not message.reply_to_message:
_reason = (message.text.split(None, 1)[1].strip())[:100]
details = {
"type": "text_reason",
"time": time.time(),
"data": None,
"reason": _reason,
}
else:
# Plain text format: afk or afk reason
text_parts = message.text.strip().split(None, 1)
if len(text_parts) == 1:
details = {
"type": "text",
"time": time.time(),
"data": None,
"reason": None,
}
else:
_reason = text_parts[1].strip()[:100]
details = {
"type": "text_reason",
"time": time.time(),
"data": None,
"reason": _reason,
}
# Fallback if details is still None (shouldn't happen, but just in case)
if details is None:
details = {
"type": "text",
"time": time.time(),
"data": None,
"reason": None,
}
# Handle reply to media (works for both command and plain text)
if message.reply_to_message:
if message.reply_to_message.animation:
_data = message.reply_to_message.animation.file_id
if details.get("reason"):
details.update({
"type": "animation",
"data": _data,
})
else:
details.update({
"type": "animation",
"data": _data,
"reason": None,
})
elif message.reply_to_message.photo:
await app.download_media(
message.reply_to_message, file_name=f"/tmp/downloads/{user_id}.jpg"
)
if details.get("reason"):
details.update({
"type": "photo",
"data": None,
})
else:
details.update({
"type": "photo",
"data": None,
"reason": None,
})
elif message.reply_to_message.sticker:
if message.reply_to_message.sticker.is_animated:
if details.get("reason"):
details.update({
"type": "text_reason",
"data": None,
})
else:
details.update({
"type": "text",
"data": None,
"reason": None,
})
else:
await app.download_media(
message.reply_to_message, file_name=f"/tmp/downloads/{user_id}.jpg"
)
if details.get("reason"):
details.update({
"type": "photo",
"data": None,
})
else:
details.update({
"type": "photo",
"data": None,
"reason": None,
})
await add_afk(user_id, details)
await message.reply_text(f"{message.from_user.first_name} ɪs ɴᴏᴡ ᴀғᴋ!")
chat_watcher_group = 1
@app.on_message(
~filters.me & ~filters.bot & ~filters.via_bot,
group=chat_watcher_group,
)
async def chat_watcher_func(_, message):
if message.sender_chat:
return
message_text = (message.text or message.caption or "").lower()
if message.command and message.command[0].lower() in ["afk", "brb"]:
return
if re.match(r"^(afk|brb)(?:\s+.*)?$", message_text):
return
userid = message.from_user.id
user_name = message.from_user.first_name
if message.entities:
possible = ["/afk", f"/afk@{BOT_USERNAME}"]
message_text = message.text or message.caption
for entity in message.entities:
if entity.type == MessageEntityType.BOT_COMMAND:
if (message_text[0 : 0 + entity.length]).lower() in possible:
return
msg = ""
replied_user_id = 0
verifier, reasondb = await is_afk(userid)
if verifier:
await remove_afk(userid)
try:
afktype = reasondb["type"]
timeafk = reasondb["time"]
data = reasondb["data"]
reasonafk = reasondb["reason"]
seenago = get_readable_time((int(time.time() - timeafk)))
if afktype == "text":
msg += f"{user_name[:25]} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}\n\n"
if afktype == "text_reason":
msg += f"{user_name[:25]} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}\n\nReason: {reasonafk}\n\n"
if afktype == "animation":
if str(reasonafk) == "None":
send = await message.reply_animation(
data,
caption=f"{user_name[:25]} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}\n\n",
)
else:
send = await message.reply_animation(
data,
caption=f"{user_name[:25]} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}\n\nReason: {reasonafk}\n\n",
)
if afktype == "photo":
if str(reasonafk) == "None":
send = await message.reply_photo(
photo=f"/tmp/downloads/{userid}.jpg",
caption=f"{user_name[:25]} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}\n\n",
)
else:
send = await message.reply_photo(
photo=f"/tmp/downloads/{userid}.jpg",
caption=f"{user_name[:25]} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ ᴀɴᴅ ᴡᴀs ᴀᴡᴀʏ ғᴏʀ {seenago}\n\nReason: {reasonafk}\n\n",
)
except:
msg += f"{user_name[:25]} ɪs ʙᴀᴄᴋ ᴏɴʟɪɴᴇ\n\n"
if message.reply_to_message:
try:
replied_first_name = message.reply_to_message.from_user.first_name
replied_user_id = message.reply_to_message.from_user.id
verifier, reasondb = await is_afk(replied_user_id)
if verifier:
try:
afktype = reasondb["type"]
timeafk = reasondb["time"]
data = reasondb["data"]
reasonafk = reasondb["reason"]
seenago = get_readable_time((int(time.time() - timeafk)))
if afktype == "text":
msg += (
f"{replied_first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n"
)
if afktype == "text_reason":
msg += f"{replied_first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nReason: {reasonafk}\n\n"
if afktype == "animation":
if str(reasonafk) == "None":
send = await message.reply_animation(
data,
caption=f"{replied_first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n",
)
else:
send = await message.reply_animation(
data,
caption=f"{replied_first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nReason: {reasonafk}\n\n",
)
if afktype == "photo":
if str(reasonafk) == "None":
send = await message.reply_photo(
photo=f"/tmp/downloads/{replied_user_id}.jpg",
caption=f"{replied_first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n",
)
else:
send = await message.reply_photo(
photo=f"/tmp/downloads/{replied_user_id}.jpg",
caption=f"{replied_first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nReason: {reasonafk}\n\n",
)
except:
msg += f"{replied_first_name[:25]} ɪs ᴀғᴋ\n\n"
except:
pass
if message.entities:
entity = message.entities
j = 0
for x in range(len(entity)):
if (entity[j].type) == MessageEntityType.MENTION:
found = re.findall("@([_0-9a-zA-Z]+)", message.text)
try:
get_user = found[j]
user = await app.get_users(get_user)
if user.id == replied_user_id:
j += 1
continue
except:
j += 1
continue
verifier, reasondb = await is_afk(user.id)
if verifier:
try:
afktype = reasondb["type"]
timeafk = reasondb["time"]
data = reasondb["data"]
reasonafk = reasondb["reason"]
seenago = get_readable_time((int(time.time() - timeafk)))
if afktype == "text":
msg += (
f"{user.first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n"
)
if afktype == "text_reason":
msg += f"{user.first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nAlasan: {reasonafk}\n\n"
if afktype == "animation":
if str(reasonafk) == "None":
send = await message.reply_animation(
data,
caption=f"{user.first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n",
)
else:
send = await message.reply_animation(
data,
caption=f"{user.first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nAlasan: {reasonafk}\n\n",
)
if afktype == "photo":
if str(reasonafk) == "None":
send = await message.reply_photo(
photo=f"/tmp/downloads/{user.id}.jpg",
caption=f"{user.first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n",
)
else:
send = await message.reply_photo(
photo=f"/tmp/downloads/{user.id}.jpg",
caption=f"{user.first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nAlasan: {reasonafk}\n\n",
)
except:
msg += f"{user.first_name[:25]} ɪs ᴀғᴋ\n\n"
elif (entity[j].type) == MessageEntityType.TEXT_MENTION:
try:
user_id = entity[j].user.id
if user_id == replied_user_id:
j += 1
continue
first_name = entity[j].user.first_name
except:
j += 1
continue
verifier, reasondb = await is_afk(user_id)
if verifier:
try:
afktype = reasondb["type"]
timeafk = reasondb["time"]
data = reasondb["data"]
reasonafk = reasondb["reason"]
seenago = get_readable_time((int(time.time() - timeafk)))
if afktype == "text":
msg += f"{first_name[:25]}** ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n"
if afktype == "text_reason":
msg += f"{first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nAlasan: {reasonafk}\n\n"
if afktype == "animation":
if str(reasonafk) == "None":
send = await message.reply_animation(
data,
caption=f"{first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n",
)
else:
send = await message.reply_animation(
data,
caption=f"{first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nAlasan: {reasonafk}\n\n",
)
if afktype == "photo":
if str(reasonafk) == "None":
send = await message.reply_photo(
photo=f"/tmp/downloads/{user_id}.jpg",
caption=f"{first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\n",
)
else:
send = await message.reply_photo(
photo=f"/tmp/downloads/{user_id}.jpg",
caption=f"{first_name[:25]} ɪs ᴀғᴋ sɪɴᴄᴇ {seenago}\n\nAlasan: {reasonafk}\n\n",
)
except:
msg += f"{first_name[:25]} ɪs ᴀғᴋ\n\n"
j += 1
if msg != "":
try:
send = await message.reply_text(msg, disable_web_page_preview=True)
except:
pass
|