File size: 7,169 Bytes
056f521 |
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 |
# <============================================== IMPORTS =========================================================>
import html
import random
from datetime import datetime
import humanize
from telegram import MessageEntity, Update
from telegram.error import BadRequest
from telegram.ext import ContextTypes, MessageHandler, filters
from Database.sql import afk_sql as sql
from Mikobot import LOGGER, function
from Mikobot.plugins.disable import DisableAbleCommandHandler, DisableAbleMessageHandler
from Mikobot.plugins.users import get_user_id
# <=======================================================================================================>
AFK_GROUP = 7
AFK_REPLY_GROUP = 8
# <================================================ FUNCTION =======================================================>
async def afk(update: Update, context: ContextTypes.DEFAULT_TYPE):
if update.effective_message.text:
args = update.effective_message.text.split(None, 1)
else:
return
user = update.effective_user
if not user: # ignore channels
return
notice = ""
if len(args) >= 2:
reason = args[1]
if len(reason) > 100:
reason = reason[:100]
notice = "\nYour afk reason was shortened to 100 characters."
else:
reason = ""
sql.set_afk(update.effective_user.id, reason)
fname = update.effective_user.first_name
try:
if reason:
await update.effective_message.reply_text(
f"➲ {fname} is now away! \n\n➦ Reason: <code>{reason}</code> \n {notice}",
parse_mode="html",
)
else:
await update.effective_message.reply_text(
"➲ {} is now away!{}".format(fname, notice),
)
except BadRequest:
pass
async def no_longer_afk(update: Update, context: ContextTypes.DEFAULT_TYPE):
user = update.effective_user
message = update.effective_message
if not user: # ignore channels
return
if sql.is_afk(user.id):
afk_user = sql.check_afk_status(user.id)
time = humanize.naturaldelta(datetime.now() - afk_user.time)
res = sql.rm_afk(user.id)
if res:
if message.new_chat_members: # dont say msg
return
firstname = update.effective_user.first_name
try:
options = [
"➲ {} is here!",
"➲ {} is back!",
"➲ {} is now in the chat!",
"➲ {} is awake!",
"➲ {} is back online!",
"➲ {} is finally here!",
"➲ Welcome back! {}",
]
chosen_option = random.choice(options)
await update.effective_message.reply_text(
chosen_option.format(firstname)
+ f"\n\nYou were AFK for: <code>{time}</code>",
parse_mode="html",
)
except:
return
async def reply_afk(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
message = update.effective_message
userc = update.effective_user
userc_id = userc.id
if message.entities and message.parse_entities(
[MessageEntity.TEXT_MENTION, MessageEntity.MENTION],
):
entities = message.parse_entities(
[MessageEntity.TEXT_MENTION, MessageEntity.MENTION],
)
chk_users = []
for ent in entities:
if ent.type == MessageEntity.TEXT_MENTION:
user_id = ent.user.id
fst_name = ent.user.first_name
if user_id in chk_users:
return
chk_users.append(user_id)
if ent.type != MessageEntity.MENTION:
return
user_id = await get_user_id(
message.text[ent.offset : ent.offset + ent.length],
)
if not user_id:
return
if user_id in chk_users:
return
chk_users.append(user_id)
try:
chat = await bot.get_chat(user_id)
except BadRequest:
LOGGER.error(
"Error: Could not fetch userid {} for AFK module".format(user_id)
)
return
fst_name = chat.first_name
await check_afk(update, context, user_id, fst_name, userc_id)
elif message.reply_to_message:
user_id = message.reply_to_message.from_user.id
fst_name = message.reply_to_message.from_user.first_name
await check_afk(update, context, user_id, fst_name, userc_id)
async def check_afk(
update: Update,
context: ContextTypes.DEFAULT_TYPE,
user_id: int,
fst_name: str,
userc_id: int,
):
if sql.is_afk(user_id):
user = sql.check_afk_status(user_id)
if int(userc_id) == int(user_id):
return
time = humanize.naturaldelta(datetime.now() - user.time)
if not user.reason:
res = "➲ {} is afk.\n\n➦ Last seen {} ago.".format(
fst_name,
time,
)
await update.effective_message.reply_text(res)
else:
res = (
"➲ {} is afk.\n\n➦ Reason: <code>{}</code>\n➦ Last seen {} ago.".format(
html.escape(fst_name),
html.escape(user.reason),
time,
)
)
await update.effective_message.reply_text(res, parse_mode="html")
# <=================================================== HELP ====================================================>
__help__ = """
» /afk <reason>*:* mark yourself as AFK (away from keyboard).
» brb , !afk <reason>*:* same as the afk command - but not a command.
» /bye [Reason > Optional] - Tell others that you are AFK (Away From Keyboard).
» /bye [reply to media] - AFK with media.
» /byedel - Enable auto delete AFK message in group (Only for group admin). Default is **Enable**.
➠ *When marked as AFK, any mentions will be replied to with a message to say you're not available!*
"""
# <================================================ HANDLER =======================================================>
AFK_HANDLER = DisableAbleCommandHandler("afk", afk, block=False)
AFK_REGEX_HANDLER = DisableAbleMessageHandler(
filters.Regex(r"^(?i:(brb|!afk))( .*)?$"), afk, friendly="afk", block=False
)
NO_AFK_HANDLER = MessageHandler(
filters.ALL & filters.ChatType.GROUPS, no_longer_afk, block=False
)
AFK_REPLY_HANDLER = MessageHandler(
filters.ALL & filters.ChatType.GROUPS, reply_afk, block=False
)
function(AFK_HANDLER, AFK_GROUP)
function(AFK_REGEX_HANDLER, AFK_GROUP)
function(NO_AFK_HANDLER, AFK_GROUP)
function(AFK_REPLY_HANDLER, AFK_REPLY_GROUP)
__mod_name__ = "AFK"
__command_list__ = ["afk"]
__handlers__ = [
(AFK_HANDLER, AFK_GROUP),
(AFK_REGEX_HANDLER, AFK_GROUP),
(NO_AFK_HANDLER, AFK_GROUP),
(AFK_REPLY_HANDLER, AFK_REPLY_GROUP),
]
# <================================================ END =======================================================>
|