Spaces:
Paused
Paused
File size: 1,733 Bytes
b2ff93a 631b7c5 b2ff93a 631b7c5 fd66625 b2ff93a fd66625 631b7c5 b2ff93a 631b7c5 85e7252 b2ff93a 631b7c5 b2ff93a 631b7c5 b2ff93a 631b7c5 b2ff93a fd66625 631b7c5 b2ff93a fd66625 b2ff93a 631b7c5 fd66625 631b7c5 85e7252 631b7c5 b2ff93a fd66625 b2ff93a |
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 |
import asyncio
import os
from . import ultroid_cmd, eor, ULTROID_IMAGES
from catbox import CatboxUploader
from random import choice
# Inisialisasi CatboxUploader
cat_uploader = CatboxUploader()
# upload_file = cat_uploader.upload_file # This line is problematic if upload_file is not async
# Fungsi untuk mendapatkan gambar inline (opsional, dari kode Anda sebelumnya)
def inline_pic():
return choice(ULTROID_IMAGES)
@ultroid_cmd(pattern="catbox(?: |$)(.*)")
async def catbox_upload_plugin(event):
"""
Plugin untuk mengunggah file ke Catbox.moe.
"""
if not event.reply_to_msg_id:
return await eor(event, "Balas ke media atau file untuk mengunggahnya ke Catbox.moe.")
reply_message = await event.get_reply_message()
if not reply_message.media:
return await eor(event, "Balas ke media atau file untuk mengunggahnya ke Catbox.moe.")
message = await eor(event, "Mengunduh media...")
filePath = None # Initialize filePath outside the try block
try:
filePath = await reply_message.download_media()
await message.edit("Mengunggah ke Catbox.moe...")
# <<< --- FIX IS HERE --- >>>
# Call upload_file directly without await, as it's a synchronous method.
# If it were an async method, it would be defined with 'async def'.
uploaded_url = cat_uploader.upload_file(filePath)
await message.edit(f"<blockquote>📤 Successful upload!\nURL: {uploaded_url}</blockquote>", parse_mode="html")
except Exception as e:
await message.edit(f"Terjadi kesalahan saat mengunggah: {e}")
finally:
# Hapus file lokal setelah diunggah
if filePath and os.path.exists(filePath):
os.remove(filePath) |