| |
| |
| |
| |
| |
| |
| |
| """ |
| Apache License 2.0 |
| Copyright (c) 2022 @Digital_Botz |
| |
| Permission is hereby granted, free of charge, to any person obtaining a copy |
| of this software and associated documentation files (the "Software"), to deal |
| in the Software without restriction, including without limitation the rights |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| copies of the Software, and to permit persons to whom the Software is |
| furnished to do so, subject to the following conditions: |
| The above copyright notice and this permission notice shall be included in all |
| copies or substantial portions of the Software. |
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| |
| Telegram Link : https://t.me/Digital_Botz |
| Repo Link : https://github.com/DigitalBotz/Digital-Rename-Bot |
| License Link : https://github.com/DigitalBotz/Digital-Rename-Bot/blob/main/LICENSE |
| """ |
|
|
| |
| from pyrogram import Client, filters |
| from helper.database import digital_botz |
|
|
| @Client.on_message(filters.private & filters.command('set_caption')) |
| async def add_caption(client, message): |
| rkn = await message.reply_text("__**ᴘʟᴇᴀsᴇ ᴡᴀɪᴛ**__") |
| if len(message.command) == 1: |
| return await rkn.edit("**__Gɪᴠᴇ Tʜᴇ Cᴀᴩᴛɪᴏɴ__\n\nExᴀᴍᴩʟᴇ:- `/set_caption {filename}\n\n💾 Sɪᴢᴇ: {filesize}\n\n⏰ Dᴜʀᴀᴛɪᴏɴ: {duration}\n\bBy: @Rkn_Bots_Updates`**") |
| caption = message.text.split(" ", 1)[1] |
| await digital_botz.set_caption(message.from_user.id, caption=caption) |
| await rkn.edit("__**✅ Cᴀᴩᴛɪᴏɴ Sᴀᴠᴇᴅ**__") |
| |
| @Client.on_message(filters.private & filters.command(['del_caption', 'delete_caption', 'delcaption'])) |
| async def delete_caption(client, message): |
| rkn = await message.reply_text("__**ᴘʟᴇᴀsᴇ ᴡᴀɪᴛ**__") |
| caption = await digital_botz.get_caption(message.from_user.id) |
| if not caption: |
| return await rkn.edit("__**😔 Yᴏᴜ Dᴏɴ'ᴛ Hᴀᴠᴇ Aɴy Cᴀᴩᴛɪᴏɴ**__") |
| await digital_botz.set_caption(message.from_user.id, caption=None) |
| await rkn.edit("__**❌️ Cᴀᴩᴛɪᴏɴ Dᴇʟᴇᴛᴇᴅ**__") |
| |
| @Client.on_message(filters.private & filters.command(['see_caption', 'view_caption'])) |
| async def see_caption(client, message): |
| rkn = await message.reply_text("__**ᴘʟᴇᴀsᴇ ᴡᴀɪᴛ**__") |
| caption = await digital_botz.get_caption(message.from_user.id) |
| if caption: |
| await rkn.edit(f"**Yᴏᴜ'ʀᴇ Cᴀᴩᴛɪᴏɴ:-**\n\n`{caption}`") |
| else: |
| await rkn.edit("__**😔 Yᴏᴜ Dᴏɴ'ᴛ Hᴀᴠᴇ Aɴy Cᴀᴩᴛɪᴏɴ**__") |
|
|
| @Client.on_message(filters.private & filters.command(['view_thumb', 'viewthumb'])) |
| async def viewthumb(client, message): |
| rkn = await message.reply_text("__**ᴘʟᴇᴀsᴇ ᴡᴀɪᴛ**__") |
| thumb = await digital_botz.get_thumbnail(message.from_user.id) |
| if thumb: |
| await client.send_photo(chat_id=message.chat.id, photo=thumb) |
| await rkn.delete() |
| else: |
| await rkn.edit("😔 __**Yᴏᴜ Dᴏɴ'ᴛ Hᴀᴠᴇ Aɴy Tʜᴜᴍʙɴᴀɪʟ**__") |
| |
| @Client.on_message(filters.private & filters.command(['del_thumb', 'delete_thumb', 'delthumb'])) |
| async def removethumb(client, message): |
| rkn = await message.reply_text("__**ᴘʟᴇᴀsᴇ ᴡᴀɪᴛ**__") |
| thumb = await digital_botz.get_thumbnail(message.from_user.id) |
| if thumb: |
| await digital_botz.set_thumbnail(message.from_user.id, file_id=None) |
| await rkn.edit("❌️ __**Tʜᴜᴍʙɴᴀɪʟ Dᴇʟᴇᴛᴇᴅ**__") |
| return |
| await rkn.edit("😔 __**Yᴏᴜ Dᴏɴ'ᴛ Hᴀᴠᴇ Aɴy Tʜᴜᴍʙɴᴀɪʟ**__") |
|
|
|
|
| @Client.on_message(filters.private & filters.photo) |
| async def addthumbs(client, message): |
| rkn = await message.reply_text("__**ᴘʟᴇᴀsᴇ ᴡᴀɪᴛ**__") |
| await digital_botz.set_thumbnail(message.from_user.id, file_id=message.photo.file_id) |
| await rkn.edit("✅️ __**Tʜᴜᴍʙɴᴀɪʟ Sᴀᴠᴇᴅ**__") |
|
|
| |
| |
| |
| |
| |
| |
|
|