104 lines
4.9 KiB
Python
104 lines
4.9 KiB
Python
# lazyleech - Telegram bot primarily to leech from torrents and upload to Telegram
|
|
# Copyright (c) 2021 lazyleech developers <theblankx protonmail com, meliodas_bot protonmail com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
import tempfile
|
|
from pyrogram import Client, filters
|
|
from .. import ALL_CHATS, help_dict
|
|
from ..utils.misc import get_file_mimetype, watermark_photo
|
|
|
|
@Client.on_message(filters.command(['watermark', 'savewatermark', 'setwatermark']) & filters.chat(ALL_CHATS))
|
|
async def savewatermark(client, message):
|
|
reply = message.reply_to_message
|
|
document = message.document
|
|
photo = message.photo
|
|
thumbset = False
|
|
user_id = message.from_user.id
|
|
watermark_path = os.path.join(str(user_id), 'watermark.jpg')
|
|
os.makedirs(str(user_id), exist_ok=True)
|
|
if document or photo:
|
|
if photo or (document.file_size < 10485760 and os.path.splitext(document.file_name)[1] and (not document.mime_type or document.mime_type.startswith('image/'))):
|
|
with tempfile.NamedTemporaryFile(dir=str(user_id)) as tempthumb:
|
|
await message.download(tempthumb.name)
|
|
mimetype = await get_file_mimetype(tempthumb.name)
|
|
if mimetype.startswith('image/'):
|
|
thumbset = True
|
|
with open(watermark_path, 'wb') as watermark_file:
|
|
while True:
|
|
chunk = tempthumb.read(10)
|
|
if not chunk:
|
|
break
|
|
watermark_file.write(chunk)
|
|
if not getattr(reply, 'empty', True) and not thumbset:
|
|
document = reply.document
|
|
photo = reply.photo
|
|
if document or photo:
|
|
if photo or (document.file_size < 10485760 and os.path.splitext(document.file_name)[1] and (not document.mime_type or document.mime_type.startswith('image/'))):
|
|
with tempfile.NamedTemporaryFile(dir=str(user_id)) as tempthumb:
|
|
await reply.download(tempthumb.name)
|
|
mimetype = await get_file_mimetype(tempthumb.name)
|
|
if mimetype.startswith('image/'):
|
|
thumbset = True
|
|
with open(watermark_path, 'wb') as watermark_file:
|
|
while True:
|
|
chunk = tempthumb.read(10)
|
|
if not chunk:
|
|
break
|
|
watermark_file.write(chunk)
|
|
if thumbset:
|
|
thumbnail = os.path.join(str(user_id), 'thumbnail.jpg')
|
|
watermarked_thumbnail = os.path.join(str(user_id), 'watermarked_thumbnail.jpg')
|
|
if os.path.isfile(thumbnail):
|
|
await watermark_photo(thumbnail, watermark_path, watermarked_thumbnail)
|
|
await message.reply_text('Watermark set')
|
|
else:
|
|
await message.reply_text('Cannot find watermark')
|
|
|
|
@Client.on_message(filters.command(['clearwatermark', 'rmwatermark', 'delwatermark', 'removewatermark', 'deletewatermark']) & filters.chat(ALL_CHATS))
|
|
async def rmwatermark(client, message):
|
|
for path in ('watermark', 'watermarked_thumbnail'):
|
|
path = os.path.join(str(message.from_user.id), f'{path}.jpg')
|
|
if os.path.isfile(path):
|
|
os.remove(path)
|
|
await message.reply_text('Watermark cleared')
|
|
|
|
@Client.on_message(filters.command('testwatermark') & filters.chat(ALL_CHATS))
|
|
async def testwatermark(client, message):
|
|
watermark = os.path.join(str(message.from_user.id), 'watermark.jpg')
|
|
if not os.path.isfile(watermark):
|
|
await message.reply_text('Cannot find watermark')
|
|
return
|
|
watermarked_thumbnail = os.path.join(str(message.from_user.id), 'watermarked_thumbnail.jpg')
|
|
with tempfile.NamedTemporaryFile(suffix='.jpg') as file:
|
|
to_upload = watermarked_thumbnail
|
|
if not os.path.isfile(to_upload):
|
|
await watermark_photo('testwatermark.jpg', watermark, file.name)
|
|
to_upload = file.name
|
|
await message.reply_photo(to_upload)
|
|
|
|
help_dict['watermark'] = ('Watermark',
|
|
'''/watermark <i><as reply to image or as a caption></i>
|
|
/setwatermark <i><as reply to image or as a caption></i>
|
|
/savewatermark <i><as reply to image or as a caption></i>
|
|
|
|
/clearwatermark
|
|
/rmwatermark
|
|
/removewatermark
|
|
/delwatermark
|
|
/deletewatermark
|
|
|
|
/testwatermark''')
|