-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwebhook.py
More file actions
713 lines (582 loc) · 30.2 KB
/
webhook.py
File metadata and controls
713 lines (582 loc) · 30.2 KB
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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
import time
import datetime
import requests
import sys
import re
import os
import io
import json
from dateutil import parser
from config import WEBHOOK_URL, COOLDOWN, EMBED_COLOR, ERROR_PLACEHOLDER
from bs4 import BeautifulSoup
from discord import SyncWebhook, Embed, File
from rate_limiter import discord_rate_limiter
def log_message(message, log_type="info"):
timestamp = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
log_entry = f"{timestamp} {message}"
print(log_entry)
if log_type in ["error", "new_message", "status"]:
with open("Disgram.log", "a") as log_file:
log_file.write(log_entry + "\n")
def is_message_logged(channel, number):
try:
with open("Disgram.log", "r") as log_file:
for line in log_file:
match = re.search(rf"https://t.me/{channel}/(\d+)", line)
if match and int(match.group(1)) >= int(number):
return True
except FileNotFoundError:
pass
return False
def scrapeTelegramMessageBox(channel):
max_retries = 5
retry_delay = 2
for attempt in range(max_retries):
try:
log_message(f"Scraping messages from Telegram channel: {channel} (Attempt {attempt + 1})")
tg_html = requests.get(f'https://t.me/s/{channel}', timeout=10)
tg_html.raise_for_status()
tg_soup = BeautifulSoup(tg_html.text, 'html.parser')
tg_box = tg_soup.find_all('div', {'class': 'tgme_widget_message_wrap js-widget_message_wrap'})
return tg_box
except requests.exceptions.RequestException as e:
log_message(f"Error scraping Telegram: {e}", log_type="error")
if attempt < max_retries - 1:
time.sleep(retry_delay)
retry_delay *= 2
else:
log_message("Max retries reached. Skipping this iteration.", log_type="error")
return []
def getAuthorIcon(tg_box):
icon_element = tg_box.find('i', {'class': 'tgme_widget_message_user_photo'})
if icon_element:
img_tag = icon_element.find('img')
if img_tag and 'src' in img_tag.attrs:
return img_tag['src']
return None
def getAuthorName(tg_box):
author_name = tg_box.find('a', {'class': 'tgme_widget_message_owner_name'})
return author_name.text.strip() if author_name else None
def getLink(tg_box):
msg_link = tg_box.find_all('a', {'class':'tgme_widget_message_date'}, href=True)
if msg_link:
return msg_link[0]['href']
return None
def _render_children(element, in_quote=False):
parts = []
for child in element.children:
parts.append(_render_node(child, in_quote))
return ''.join(parts)
def _render_node(node, in_quote=False):
# Text node
if getattr(node, 'name', None) is None:
return str(node)
name = node.name
if name == 'a':
text = _render_children(node, in_quote)
href = node.get('href', '')
if text == href:
return href
return f"[{text}]({href})" if href else text
if name == 'pre':
content = node.get_text()
return f"```{content}```"
if name in ('b', 'strong'):
return f"**{_render_children(node, in_quote)}**"
if name == 'tg-spoiler':
return f"||{_render_children(node, in_quote)}||"
if name in ('i', 'em'):
return f"*{_render_children(node, in_quote)}*"
if name == 'u':
return f"__{_render_children(node, in_quote)}__"
if name in ('s', 'strike', 'del'):
return f"~~{_render_children(node, in_quote)}~~"
if name == 'br':
return '\n'
if name == 'blockquote':
# Allow formatting inside, but disallow nested quotes
if in_quote:
return _render_children(node, in_quote=True)
inner = _render_children(node, in_quote=True)
inner = inner.replace('\r\n', '\n').replace('\r', '\n')
lines = inner.split('\n')
quoted = "\n".join(["> " + l if l != "" else "> " for l in lines]) + "\n"
return quoted
# Fallback to rendering children of unknown tags
return _render_children(node, in_quote)
def getText(tg_box):
msg_text = tg_box.find_all('div', {'class': 'tgme_widget_message_text js-message_text'})
if not msg_text:
return None
root = msg_text[0]
return _render_children(root)
def getTextFromIndividualMessage(msg_link):
"""Extract text from an individual message URL, useful for grouped media messages"""
if not msg_link:
return None
max_retries = 3
retry_delay = 1
for attempt in range(max_retries):
try:
response = requests.get(msg_link, timeout=10)
response.raise_for_status()
soup = BeautifulSoup(response.content, 'html.parser')
# First try to find text in standard location
text_div = soup.find('div', class_='tgme_widget_message_text')
if text_div:
text_content = text_div.get_text(strip=True)
if text_content:
return text_content
# For grouped media messages, check meta tags
og_desc = soup.find('meta', property='og:description')
if og_desc:
content_attr = og_desc.get('content')
if content_attr:
# Handle both string and list types
content = str(content_attr).strip() if hasattr(content_attr, 'strip') else str(content_attr)
if content and _is_likely_message_content(content):
return content
return None
except Exception as e:
log_message(f"Error fetching text from individual message {msg_link}: {e}", log_type="error")
if attempt < max_retries - 1:
time.sleep(retry_delay)
else:
return None
def _is_likely_message_content(content):
"""Simple check to filter out obvious channel descriptions"""
if not content:
return False
content_lower = content.lower().strip()
# Filter out common channel description patterns
channel_desc_patterns = [
r'^the official .+ on telegram',
r'official .+ channel',
r'.+ official channel',
r'welcome to .+',
r'much recursion\. very telegram\. wow\.', # Telegram's description
r'^.+\s+–\s+.+$', # Channel title format
]
for pattern in channel_desc_patterns:
if re.match(pattern, content_lower):
return False
# If content is very generic/short, be cautious
if len(content.split()) <= 1:
return False
# Otherwise, likely message content
return True
def getImage(tg_box):
msg_image = tg_box.find('a', {'class': 'tgme_widget_message_photo_wrap'}, href=True)
if msg_image:
startIndex = msg_image['style'].find("background-image:url('") + 22
endIndex = msg_image['style'].find(".jpg')") + 4
if startIndex > 21 and endIndex > 3:
return msg_image['style'][startIndex:endIndex]
return None
def getAllImages(tg_box):
"""Extract all images from a message (for grouped media)"""
images = []
msg_images = tg_box.find_all('a', {'class': 'tgme_widget_message_photo_wrap'})
for msg_image in msg_images:
if msg_image.get('style'):
style = msg_image['style']
# Handle different image formats (.jpg, .png, .webp, etc.)
for ext in ['.jpg', '.jpeg', '.png', '.webp']:
start_pos = style.find("background-image:url('")
end_pos = style.find(f"{ext}')")
if start_pos > -1 and end_pos > -1:
start_index = start_pos + 22
end_index = end_pos + len(ext)
if start_index > 21 and end_index > start_index:
image_url = style[start_index:end_index]
images.append(image_url)
break
return images
def getAllVideos(tg_box):
"""Extract all videos from a message (for grouped media)"""
videos = []
video_elements = tg_box.find_all('video', {'class': 'tgme_widget_message_video'})
for video_element in video_elements:
if video_element.get('src'):
videos.append(video_element['src'])
return videos
def getTimestamp(tg_box):
time_element = tg_box.find('time', {'datetime': True})
if time_element and 'datetime' in time_element.attrs:
return parser.isoparse(time_element['datetime'])
return None
def download_image(image_url: str | None) -> tuple[io.BytesIO | None, str | None]:
if not image_url:
return (None, None)
max_retries = 3
retry_delay = 2
for attempt in range(max_retries):
try:
response = requests.get(image_url, timeout=10)
response.raise_for_status()
file_ext = os.path.splitext(image_url)[1]
if not file_ext:
file_ext = '.jpg'
filename = f"img_{int(time.time())}_{attempt}{file_ext}"
return io.BytesIO(response.content), filename
except Exception as e:
log_message(f"Error downloading image: {e}", log_type="error")
if attempt < max_retries - 1:
time.sleep(retry_delay)
retry_delay *= 2
else:
log_message("Max retries reached. Unable to download image.", log_type="error")
return (None, None)
# This should never be reached, but added for type checker completeness
return (None, None)
def download_video(video_url: str | None) -> tuple[io.BytesIO | None, str | None]:
if not video_url:
return (None, None)
max_retries = 3
retry_delay = 2
for attempt in range(max_retries):
try:
response = requests.get(video_url, timeout=30)
response.raise_for_status()
# Get file extension from URL or default to mp4
file_ext = video_url.split('.')[-1].split('?')[0] if '.' in video_url else 'mp4'
if file_ext not in ['mp4', 'mov', 'avi', 'webm', 'mkv']:
file_ext = 'mp4'
filename = f"video_{int(time.time())}_{attempt}.{file_ext}"
return io.BytesIO(response.content), filename
except Exception as e:
log_message(f"Error downloading video: {e}", log_type="error")
if attempt < max_retries - 1:
time.sleep(retry_delay)
retry_delay *= 2
else:
log_message("Max retries reached. Unable to download video.", log_type="error")
return (None, None)
# This should never be reached, but added for type checker completeness
return (None, None)
def getVideo(tg_box):
video_element = tg_box.find('video', {'class': 'tgme_widget_message_video'})
if video_element and 'src' in video_element.attrs:
return video_element['src']
return None
class RateLimitedWebhook:
"""
A wrapper around SyncWebhook that integrates with our rate limiter
"""
def __init__(self, webhook_url):
self.webhook_url = webhook_url
self.webhook = SyncWebhook.from_url(webhook_url)
def send_with_rate_limiting(self, max_retries=5, **kwargs):
"""
Send webhook message with rate limiting using SyncWebhook
"""
for attempt in range(max_retries + 1):
# Wait for rate limits before making request
if not discord_rate_limiter.wait_for_rate_limit(self.webhook_url, "POST"):
return False
try:
# Use SyncWebhook's send method which handles all Discord formatting
self.webhook.send(**kwargs)
# Manually track successful request for rate limiter
discord_rate_limiter._increment_global_counter()
bucket_key = discord_rate_limiter._get_bucket_key(self.webhook_url, "POST")
discord_rate_limiter._decrement_bucket_remaining(bucket_key)
return True
except requests.exceptions.HTTPError as e:
if e.response is not None:
# Handle the response with our rate limiter
should_retry, wait_time = discord_rate_limiter.handle_response(
e.response, self.webhook_url, "POST"
)
if not should_retry:
log_message(f"Webhook request failed permanently: {e}", log_type="error")
return False
if attempt < max_retries and wait_time:
log_message(f"Rate limited, retrying in {wait_time:.2f} seconds (attempt {attempt + 1}/{max_retries})", log_type="error")
time.sleep(wait_time)
continue
# Max retries reached or no response
if attempt >= max_retries:
log_message(f"Max retries ({max_retries}) exceeded for webhook", log_type="error")
return False
except Exception as e:
log_message(f"Webhook request exception on attempt {attempt + 1}: {e}", log_type="error")
if attempt < max_retries:
# Exponential backoff for network errors
wait_time = min(2.0 ** attempt, 60.0)
time.sleep(wait_time)
continue
else:
return False
return False
def sendMessage(msg_link, msg_text, msg_image, msg_video, author_name, icon_url, timestamp=None, all_images=None, all_videos=None):
"""Send a Discord message using SyncWebhook with proper rate limiting"""
# Use all_images if provided (for grouped media), otherwise fall back to single image
images_to_send = all_images if all_images else ([msg_image] if msg_image else [])
videos_to_send = all_videos if all_videos else ([msg_video] if msg_video else [])
# If this is a grouped media message, send all media items
if len(images_to_send) > 1 or len(videos_to_send) > 1:
log_message(f"Sending grouped media message with {len(images_to_send)} images and {len(videos_to_send)} videos: {msg_link}", log_type="new_message")
sendGroupedMediaMessage(msg_link, msg_text, images_to_send, videos_to_send, author_name, icon_url, timestamp)
return
# Handle media files (image and video)
image_data = None
image_filename = None
video_data = None
video_filename = None
video_sent_as_attachment = False
# Try to get image file
if images_to_send:
result = download_image(images_to_send[0])
if result and result[0] is not None and result[1] is not None:
image_data, image_filename = result
else:
image_data, image_filename = None, None
# Try to get video file if video exists
if videos_to_send:
video_url = videos_to_send[0]
try:
result = download_video(video_url)
if result and result[0] is not None and result[1] is not None:
video_data, video_filename = result
video_sent_as_attachment = True
log_message(f"Video will be sent as attachment: {video_url}", log_type="new_message")
except Exception as e:
log_message(f"Failed to download video, will fallback to link: {e}", log_type="error")
try:
webhook = RateLimitedWebhook(WEBHOOK_URL)
embed = Embed(title='Message Link', url=msg_link, color=EMBED_COLOR, timestamp=timestamp)
if msg_text:
embed.description = msg_text
embed.set_author(name=author_name, icon_url=icon_url, url=msg_link)
files = []
if image_data and image_filename:
file = File(image_data, filename=image_filename)
files.append(file)
embed.set_image(url=f"attachment://{image_filename}")
if video_data and video_filename:
video_file = File(video_data, filename=video_filename)
files.append(video_file)
log_message(f"Sending message to Discord: {msg_link}", log_type="new_message")
kwargs = {
'username': author_name,
'avatar_url': icon_url,
'embed': embed
}
if files:
kwargs['files'] = files
success = webhook.send_with_rate_limiting(**kwargs)
if not success:
log_message("Failed to send main message", log_type="error")
return
if videos_to_send and not video_sent_as_attachment:
video_url = videos_to_send[0]
video_content = f"[Attached video]({video_url})\n[Message Link](<{msg_link}>)"
log_message(f"Sending video link as separate message: {video_url}", log_type="new_message")
video_success = webhook.send_with_rate_limiting(
username=author_name,
avatar_url=icon_url,
content=video_content
)
if not video_success:
log_message("Failed to send video link message", log_type="error")
log_message("Message sent successfully.", log_type="new_message")
except Exception as e:
log_message(f"Error preparing or sending message to Discord: {e}", log_type="error")
def sendGroupedMediaMessage(msg_link, msg_text, images, videos, author_name, icon_url, timestamp=None):
try:
webhook = RateLimitedWebhook(WEBHOOK_URL)
main_embed = Embed(title='Grouped Media Message Link', url=msg_link, color=EMBED_COLOR, timestamp=timestamp)
description_parts = []
if msg_text:
description_parts.append(msg_text)
description_parts.append(f"-# **Grouped Media:** {len(images)} images, {len(videos)} videos")
main_embed.description = '\n\n'.join(description_parts)
main_embed.set_author(name=author_name, icon_url=icon_url, url=msg_link)
main_files = []
if images:
result = download_image(images[0])
if result and result[0] is not None and result[1] is not None:
image_data, image_filename = result
if image_data and image_filename:
file = File(image_data, filename=image_filename)
main_files.append(file)
main_embed.set_image(url=f"attachment://{image_filename}")
log_message(f"Sending grouped media main message: {msg_link}", log_type="new_message")
kwargs = {
'username': author_name,
'avatar_url': icon_url,
'embed': main_embed
}
if main_files:
kwargs['files'] = main_files
success = webhook.send_with_rate_limiting(**kwargs)
if not success:
log_message("Failed to send grouped media main message", log_type="error")
return
for i, image_url in enumerate(images[1:], 2):
try:
result = download_image(image_url)
if result and result[0] is not None and result[1] is not None:
image_data, image_filename = result
if image_data and image_filename:
image_embed = Embed(
title='Message Link',
url=msg_link,
color=EMBED_COLOR,
timestamp=timestamp
)
if msg_text:
image_embed.description = msg_text[:4096]
image_embed.set_author(name=author_name, icon_url=icon_url, url=msg_link)
image_embed.set_footer(text=f'Image {i} of {len(images)}')
image_embed.set_image(url=f"attachment://{image_filename}")
image_file = File(image_data, filename=image_filename)
success = webhook.send_with_rate_limiting(
username=author_name,
avatar_url=icon_url,
embed=image_embed,
files=[image_file]
)
if not success:
log_message(f"Failed to send image {i}", log_type="error")
except Exception as e:
log_message(f"Error sending image {i}: {e}", log_type="error")
for i, video_url in enumerate(videos, 1):
try:
video_sent_as_attachment = False
try:
result = download_video(video_url)
if result and result[0] is not None and result[1] is not None:
video_data, video_filename = result
log_message(f"Attempting to send video {i} as attachment: {video_url}", log_type="new_message")
video_embed = Embed(
title='Message Link',
url=msg_link,
color=EMBED_COLOR,
timestamp=timestamp
)
if msg_text:
video_embed.description = msg_text[:4096]
video_embed.set_author(name=author_name, icon_url=icon_url, url=msg_link)
video_embed.set_footer(text=f'Video {i} of {len(videos)}')
assert video_data is not None and video_filename is not None
video_file = File(video_data, filename=video_filename)
success = webhook.send_with_rate_limiting(
username=author_name,
avatar_url=icon_url,
embed=video_embed,
files=[video_file]
)
if success:
video_sent_as_attachment = True
log_message(f"Video {i} sent successfully as attachment", log_type="new_message")
else:
log_message(f"Failed to send video {i} as attachment, will try link", log_type="error")
except Exception as e:
log_message(f"Failed to send video {i} as attachment, falling back to link: {e}", log_type="error")
if not video_sent_as_attachment:
video_content = f"**Video** [**{i}**]({video_url}) of {len(videos)}\n[Message Link](<{msg_link}>)"
success = webhook.send_with_rate_limiting(
username=author_name,
avatar_url=icon_url,
content=video_content
)
if not success:
log_message(f"Failed to send video {i} link", log_type="error")
except Exception as e:
log_message(f"Error sending video {i}: {e}", log_type="error")
log_message(f"Grouped media message sent successfully: {len(images)} images, {len(videos)} videos", log_type="new_message")
except Exception as e:
log_message(f"Error sending grouped media message: {e}", log_type="error")
def sendMissingMessages(channel, last_number, current_number, author_name, icon_url, timestamp):
for missing_number in range(last_number + 1, current_number):
missing_link = f"https://t.me/{channel}/{missing_number}"
log_message(f"Sending placeholder for missing message: {missing_link}", log_type="error")
sendMessage(missing_link, ERROR_PLACEHOLDER, None, None, author_name, icon_url, timestamp=timestamp)
def sendMissingMessagesFiltered(channel, missing_numbers, author_name, icon_url, timestamp):
"""Send placeholders for specific missing message numbers (filtered to exclude grouped media components)"""
for missing_number in missing_numbers:
missing_link = f"https://t.me/{channel}/{missing_number}"
log_message(f"Sending placeholder for missing message: {missing_link}", log_type="error")
sendMessage(missing_link, ERROR_PLACEHOLDER, None, None, author_name, icon_url, timestamp=timestamp)
def main(tg_channel):
SCRIPT_START_TIME = datetime.datetime.now()
msg_log = []
last_processed_number = 0
grouped_media_ranges = set() # Track message numbers that are part of grouped media
log_message(f"Starting bot for channel: {tg_channel}", log_type="status2")
while True:
try:
msg_temp = []
log_message("Checking for new messages...", log_type="status2")
message_boxes = scrapeTelegramMessageBox(tg_channel)
if not message_boxes:
continue
for tg_box in message_boxes:
msg_link = getLink(tg_box)
if not msg_link:
continue
match = re.match(rf"https://t.me/{tg_channel}/(\d+)", msg_link)
if not match:
continue
current_number = int(match.group(1))
author_name = getAuthorName(tg_box)
icon_url = getAuthorIcon(tg_box)
timestamp = getTimestamp(tg_box)
# Check if this message is part of a grouped media we already processed
if current_number in grouped_media_ranges:
log_message(f"Skipping grouped media component: {msg_link}", log_type="status2")
msg_temp.append(msg_link)
last_processed_number = current_number
continue
if last_processed_number > 0 and current_number > last_processed_number + 1:
# Filter out grouped media components from missing messages
filtered_missing = []
for missing_num in range(last_processed_number + 1, current_number):
if missing_num not in grouped_media_ranges:
filtered_missing.append(missing_num)
if filtered_missing:
sendMissingMessagesFiltered(tg_channel, filtered_missing, author_name, icon_url, timestamp)
if is_message_logged(tg_channel, current_number):
log_message(f"Skipping already logged message: {msg_link}", log_type="status2")
continue
msg_text = getText(tg_box)
msg_image = getImage(tg_box)
msg_video = getVideo(tg_box)
# Check for grouped media
all_images = getAllImages(tg_box)
all_videos = getAllVideos(tg_box)
# Calculate total media count
total_media = len(all_images) + len(all_videos)
# For grouped media messages, if no text found in the box, try individual message URL
if total_media > 1 and not msg_text:
log_message(f"Grouped media detected with no text, trying individual message URL: {msg_link}", log_type="status2")
msg_text = getTextFromIndividualMessage(msg_link)
if msg_text:
log_message(f"Successfully extracted text from meta tags: '{msg_text[:50]}...'", log_type="status2")
if msg_link not in msg_log:
log_message(f"New message found: {msg_link}", log_type="new_message")
msg_temp.append(msg_link)
# If this is grouped media, mark the component message numbers
if total_media > 1:
log_message(f"Marking grouped media range: {current_number} + {total_media-1} components", log_type="status2")
for i in range(1, total_media): # Skip first message (already processed), mark next N-1
grouped_media_ranges.add(current_number + i)
sendMessage(msg_link, msg_text, msg_image, msg_video, author_name, icon_url, timestamp=timestamp, all_images=all_images, all_videos=all_videos)
msg_temp.append(msg_link)
last_processed_number = current_number
msg_log = msg_temp
current_time = datetime.datetime.now()
time_passed = current_time - SCRIPT_START_TIME
log_message(f"Bot working for {tg_channel}. Time passed: {time_passed}", log_type="status")
except Exception as e:
log_message(f"[ E R R O R ]\n{e}\nScript ignored the error and keeps running.", log_type="error")
time.sleep(COOLDOWN)
if __name__ == "__main__":
if len(sys.argv) != 2:
log_message("Usage: python webhook.py <TG_CHANNEL>", log_type="status2")
sys.exit(1)
TG_CHANNEL = sys.argv[1]
log_message(f"Initializing bot with channel: {TG_CHANNEL}", log_type="status2")
main(TG_CHANNEL)