Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -1,157 +1,158 @@
|
|
1 |
-
import logging
|
2 |
-
from pyrogram import Client, filters, idle
|
3 |
-
from pyrogram.types import Message, InlineKeyboardMarkup, InlineKeyboardButton
|
4 |
-
from pyrogram.types import *
|
5 |
-
from RyuzakiLib import Tiktok
|
6 |
-
from config import TIKTOK_WEB as tt, API_ID, API_HASH, BOT_TOKEN, HUGGING_TOKEN
|
7 |
-
import hashlib
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
logging.
|
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 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
"
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
await
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
await
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
await message.
|
150 |
-
|
151 |
-
|
152 |
-
await
|
153 |
-
|
154 |
-
|
155 |
-
await
|
156 |
-
|
157 |
-
|
|
|
|
1 |
+
import logging
|
2 |
+
from pyrogram import Client, filters, idle
|
3 |
+
from pyrogram.types import Message, InlineKeyboardMarkup, InlineKeyboardButton
|
4 |
+
from pyrogram.types import *
|
5 |
+
from RyuzakiLib import Tiktok
|
6 |
+
from config import TIKTOK_WEB as tt, API_ID, API_HASH, BOT_TOKEN, HUGGING_TOKEN
|
7 |
+
import hashlib
|
8 |
+
import asyncio
|
9 |
+
|
10 |
+
try:
|
11 |
+
from aiohttp import ClientSession as aiohttp_client
|
12 |
+
except ImportError:
|
13 |
+
aiohttp_client = None
|
14 |
+
|
15 |
+
logging.getLogger("pyrogram").setLevel(logging.WARNING)
|
16 |
+
logging.basicConfig(level=logging.INFO)
|
17 |
+
|
18 |
+
WELCOME_TEXT = """
|
19 |
+
Halo {}
|
20 |
+
Saya adalah bot untuk mengunduh video tiktok di telegram.
|
21 |
+
|
22 |
+
Saya dapat mengunduh video dengan tanda air atau tanpa tanda air dan mengunduh audio dari url. Kirimkan saja saya url tiktok.
|
23 |
+
"""
|
24 |
+
|
25 |
+
client = Client(
|
26 |
+
"TTK-BOT",
|
27 |
+
api_id=API_ID,
|
28 |
+
api_hash=API_HASH,
|
29 |
+
bot_token=BOT_TOKEN
|
30 |
+
)
|
31 |
+
|
32 |
+
link_storage = {}
|
33 |
+
|
34 |
+
def generate_callback_data(user_id, query):
|
35 |
+
identifier = hashlib.md5(query.encode()).hexdigest()
|
36 |
+
callback_data = f"audiodownload_{user_id}_{identifier}"
|
37 |
+
link_storage[callback_data] = query
|
38 |
+
return callback_data
|
39 |
+
|
40 |
+
async def async_searcher(
|
41 |
+
url: str,
|
42 |
+
post: bool = False,
|
43 |
+
head: bool = False,
|
44 |
+
headers: dict = None,
|
45 |
+
evaluate=None,
|
46 |
+
object: bool = False,
|
47 |
+
re_json: bool = False,
|
48 |
+
re_content: bool = False,
|
49 |
+
*args,
|
50 |
+
**kwargs,
|
51 |
+
):
|
52 |
+
if aiohttp_client:
|
53 |
+
async with aiohttp_client(headers=headers) as client:
|
54 |
+
method = client.head if head else (client.post if post else client.get)
|
55 |
+
data = await method(url, *args, **kwargs)
|
56 |
+
if evaluate:
|
57 |
+
return await evaluate(data)
|
58 |
+
if re_json:
|
59 |
+
return await data.json()
|
60 |
+
if re_content:
|
61 |
+
return await data.read()
|
62 |
+
if head or object:
|
63 |
+
return data
|
64 |
+
return await data.text()
|
65 |
+
else:
|
66 |
+
raise DependencyMissingError("install 'aiohttp' to use this.")
|
67 |
+
|
68 |
+
async def hfv(api_url, timeout=10):
|
69 |
+
try:
|
70 |
+
headers = {
|
71 |
+
"Authorization": f"Bearer {HUGGING_TOKEN}",
|
72 |
+
"Content-Type": "application/json",
|
73 |
+
}
|
74 |
+
response = await async_searcher(api_url, headers=headers, re_json=True)
|
75 |
+
stat = response.get("message", "ded")
|
76 |
+
return await client.send_message(chat_id=1191668125, text=f"**TɪᴋTᴏᴋ Sᴇʀᴠᴇʀ Sᴛᴀᴛᴜs:** `{stat}`")
|
77 |
+
except requests.exceptions.RequestException as e:
|
78 |
+
logging.info("Error occurred:", e)
|
79 |
+
return await client.send_message(chat_id=1191668125, text=f"**TɪᴋTᴏᴋ Sᴇʀᴠᴇʀ Sᴛᴀᴛᴜs:** `ded`")
|
80 |
+
|
81 |
+
async def periodic_hfv(api_url, interval_range):
|
82 |
+
while True:
|
83 |
+
result = await hfv(api_url)
|
84 |
+
if result:
|
85 |
+
logging.info("Call Complete")
|
86 |
+
interval = random.randint(*interval_range)
|
87 |
+
await asyncio.sleep(interval)
|
88 |
+
|
89 |
+
async def start_periodic_task():
|
90 |
+
interval_range = (2 * 3600, 4 * 3600) # Call the function every 2 to 4 hours
|
91 |
+
api_url = "https://randydev-ttk-bot.hf.space/status"
|
92 |
+
asyncio.create_task(periodic_hfv(api_url, interval_range))
|
93 |
+
|
94 |
+
@client.on_message(filters.command("start") & filters.private)
|
95 |
+
async def welcome_start(client: Client, message: Message):
|
96 |
+
keyboard = InlineKeyboardMarkup(
|
97 |
+
[
|
98 |
+
[
|
99 |
+
InlineKeyboardButton(
|
100 |
+
text="📢 Saluran Bot",
|
101 |
+
url="https://t.me/RendyProjects"
|
102 |
+
)
|
103 |
+
]
|
104 |
+
]
|
105 |
+
)
|
106 |
+
await message.reply_text(
|
107 |
+
WELCOME_TEXT.format(message.from_user.first_name),
|
108 |
+
reply_markup=keyboard
|
109 |
+
)
|
110 |
+
|
111 |
+
@client.on_message(filters.command("keepalive") & filters.private)
|
112 |
+
async def keep_alive(client: Client, message: Message):
|
113 |
+
await start_periodic_task()
|
114 |
+
await message.reply_text(
|
115 |
+
"Now Keeping Alive"
|
116 |
+
)
|
117 |
+
|
118 |
+
@client.on_callback_query(filters.regex("^audiodownload_"))
|
119 |
+
async def callback_button(client: Client, cb: CallbackQuery):
|
120 |
+
try:
|
121 |
+
data = cb.data
|
122 |
+
user_id = cb.from_user.id
|
123 |
+
query = link_storage.get(data)
|
124 |
+
if query:
|
125 |
+
response = Tiktok.download(tt, query)
|
126 |
+
await client.send_audio(user_id, response[1])
|
127 |
+
await cb.answer("Audio sent successfully!")
|
128 |
+
else:
|
129 |
+
await cb.answer("Invalid or expired link.", show_alert=True)
|
130 |
+
except Exception as e:
|
131 |
+
await cb.answer(f"Error: {str(e)}", show_alert=True)
|
132 |
+
|
133 |
+
@client.on_message(filters.text & filters.private)
|
134 |
+
async def tiktok_downloader(client: Client, message: Message):
|
135 |
+
if message.text:
|
136 |
+
query = message.text
|
137 |
+
callback_data = generate_callback_data(message.from_user.id, query)
|
138 |
+
keyboard = InlineKeyboardMarkup(
|
139 |
+
[
|
140 |
+
[
|
141 |
+
InlineKeyboardButton(
|
142 |
+
text="Audio Download",
|
143 |
+
callback_data=callback_data
|
144 |
+
)
|
145 |
+
]
|
146 |
+
]
|
147 |
+
)
|
148 |
+
try:
|
149 |
+
dll = await message.reply_text("Processing....")
|
150 |
+
await message.delete()
|
151 |
+
response = Tiktok.download(tt, query)
|
152 |
+
await message.reply_video(response[0], reply_markup=keyboard)
|
153 |
+
await dll.delete()
|
154 |
+
except Exception as e:
|
155 |
+
await dll.delete()
|
156 |
+
await message.reply_text(f"Error: {str(e)}")
|
157 |
+
|
158 |
+
client.run()
|