async def _(event): cws = getcurrent_welcome_settings(event.chat_id) if ( cws and (event.user_joined or event.user_added) and not (await event.get_user()).bot ): a_user = await event.get_user() chat = await event.get_chat() me = await bot.get_me() title = chat.title if chat.title else "this chat" participants = await bot.get_participants(chat) count = len(participants) mention = "<a href='tg://user?id={}'>{}</a>".format( a_user.id, a_user.first_name ) my_mention = "<a href='tg://user?id={}'>{}</a>".format(me.id, me.first_name) first = a_user.first_name last = a_user.last_name fullname = f"{first} {last}" if last else first username = f"@{a_user.username}" if a_user.username else mention userid = a_user.id my_first = me.first_name my_last = me.last_name my_fullname = f"{my_first} {my_last}" if my_last else my_first my_username = f"@{me.username}" if me.username else my_mention file_media = None current_saved_welcome_message = None if cws: if cws.f_mesg_id: msg_o = await event.client.get_messages( entity=BOTLOG_CHATID, ids=int(cws.f_mesg_id) ) file_media = msg_o.media current_saved_welcome_message = msg_o.message elif cws.reply: current_saved_welcome_message = cws.reply if not pmpermit_sql.is_approved(userid): pmpermit_sql.approve(userid, "Due to private welcome") current_message = await event.client.send_message( userid, current_saved_welcome_message.format( mention=mention, title=title, count=count, first=first, last=last, fullname=fullname, username=username, userid=userid, my_first=my_first, my_last=my_last, my_fullname=my_fullname, my_username=my_username, my_mention=my_mention, ), file=file_media, parse_mode="html", )
async def show_welcome(event): cws = getcurrent_welcome_settings(event.chat_id) if not cws: await event.edit("`No pwelcome message saved here.`") return if cws.f_mesg_id: msg_o = await bot.get_messages(entity=BOTLOG_CHATID, ids=int(cws.f_mesg_id)) await event.edit( "`I am currently pwelcoming new users with this welcome note.`" ) await event.reply(msg_o.message, file=msg_o.media) elif cws.reply: await event.edit( "`I am currently pwelcoming new users with this welcome note.`" ) await event.reply(cws.reply)