Files
Ultroid-fork/plugins/notes.py
Devesh Pal 8ad7073d80 Ultroid v0.4 updates
Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com>
Co-authored-by: Danish <danish@ultroid.tech>
Co-authored-by: Mahesh Chauhan <84653476+vasusen-code@users.noreply.github.com>
Co-authored-by: Aditya <xditya@ultroid.tech>
Co-authored-by: CyrusXD <79554993+Ashutosh1478@users.noreply.github.com>
2022-02-09 11:53:45 +05:30

114 lines
3.5 KiB
Python

# Ultroid - UserBot
# Copyright (C) 2021-2022 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/>.
"""
✘ Commands Available -
• `{i}addnote <word><reply to a message>`
add note in the used chat with replied message and choosen word.
• `{i}remnote <word>`
Remove the note from used chat.
• `{i}listnote`
list all notes.
• Use :
set notes in group so all can use it.
type `#(Keyword of note)` to get it
"""
import os
from pyUltroid.dB.notes_db import add_note, get_notes, list_note, rem_note
from pyUltroid.functions.tools import create_tl_btn, format_btn, get_msg_button
from telegraph import upload_file as uf
from telethon.utils import pack_bot_file_id
from . import events, get_string, mediainfo, udB, ultroid_bot, ultroid_cmd
from ._inline import something
@ultroid_cmd(pattern="addnote( (.*)|$)", admins_only=True)
async def an(e):
wrd = (e.pattern_match.group(1).strip()).lower()
wt = await e.get_reply_message()
chat = e.chat_id
if not (wt and wrd):
return await e.eor(get_string("notes_1"), time=5)
if "#" in wrd:
wrd = wrd.replace("#", "")
btn = format_btn(wt.buttons) if wt.buttons else None
if wt and wt.media:
wut = mediainfo(wt.media)
if wut.startswith(("pic", "gif")):
dl = await wt.download_media()
variable = uf(dl)
os.remove(dl)
m = "https://telegra.ph" + variable[0]
elif wut == "video":
if wt.media.document.size > 8 * 1000 * 1000:
return await e.eor(get_string("com_4"), time=5)
dl = await wt.download_media()
variable = uf(dl)
os.remove(dl)
m = "https://telegra.ph" + variable[0]
else:
m = pack_bot_file_id(wt.media)
if wt.text:
txt = wt.text
if not btn:
txt, btn = get_msg_button(wt.text)
add_note(chat, wrd, txt, m, btn)
else:
add_note(chat, wrd, None, m, btn)
else:
txt = wt.text
if not btn:
txt, btn = get_msg_button(wt.text)
add_note(chat, wrd, txt, None, btn)
await e.eor(get_string("notes_2").format(wrd))
ultroid_bot.add_handler(notes, events.NewMessage())
@ultroid_cmd(pattern="remnote( (.*)|$)", admins_only=True)
async def rn(e):
wrd = (e.pattern_match.group(1).strip()).lower()
chat = e.chat_id
if not wrd:
return await e.eor(get_string("notes_3"), time=5)
if wrd.startswith("#"):
wrd = wrd.replace("#", "")
rem_note(int(chat), wrd)
await e.eor(f"Done Note: `#{wrd}` Removed.")
@ultroid_cmd(pattern="listnote$", admins_only=True)
async def lsnote(e):
x = list_note(e.chat_id)
if x:
sd = "Notes Found In This Chats Are\n\n"
return await e.eor(sd + x)
await e.eor(get_string("notes_5"))
async def notes(e):
xx = [z.replace("#", "") for z in e.text.lower().split() if z.startswith("#")]
for word in xx:
k = get_notes(e.chat_id, word)
if k:
msg = k["msg"]
media = k["media"]
if k.get("button"):
btn = create_tl_btn(k["button"])
return await something(e, msg, media, btn)
await e.client.send_message(
e.chat_id, msg, file=media, reply_to=e.reply_to_msg_id or e.id
)
if udB.get_key("NOTE"):
ultroid_bot.add_handler(notes, events.NewMessage())