mirror of
https://github.com/bellingcat/snscrape.git
synced 2026-06-11 03:48:29 +03:00
Fix Telegram post URL extraction
This commit is contained in:
@@ -73,7 +73,12 @@ class TelegramChannelScraper(snscrape.base.Scraper):
|
||||
if onlyUsername:
|
||||
yield post['data-post'].split('/')[0]
|
||||
return
|
||||
date = datetime.datetime.strptime(post.find('div', class_ = 'tgme_widget_message_footer').find('a', class_ = 'tgme_widget_message_date').find('time', datetime = True)['datetime'].replace('-', '', 2).replace(':', ''), '%Y%m%dT%H%M%S%z')
|
||||
dateDiv = post.find('div', class_ = 'tgme_widget_message_footer').find('a', class_ = 'tgme_widget_message_date')
|
||||
rawUrl = dateDiv['href']
|
||||
if not rawUrl.startswith('https://t.me/') or sum(x == '/' for x in rawUrl) != 4 or rawUrl.rsplit('/', 1)[1].strip('0123456789') != '':
|
||||
self.logger.warning(f'Possibly incorrect URL: {rawUrl!r}')
|
||||
url = rawUrl.replace('//t.me/', '//t.me/s/')
|
||||
date = datetime.datetime.strptime(dateDiv.find('time', datetime = True)['datetime'].replace('-', '', 2).replace(':', ''), '%Y%m%dT%H%M%S%z')
|
||||
if (message := post.find('div', class_ = 'tgme_widget_message_text')):
|
||||
content = message.text
|
||||
outlinks = []
|
||||
@@ -81,7 +86,7 @@ class TelegramChannelScraper(snscrape.base.Scraper):
|
||||
if any(x in link.parent.attrs.get('class', []) for x in ('tgme_widget_message_user', 'tgme_widget_message_author')):
|
||||
# Author links at the top (avatar and name)
|
||||
continue
|
||||
if link['href'] == f'https://t.me/{post["data-post"]}':
|
||||
if link['href'] == rawUrl or link['href'] == url:
|
||||
# Generic filter of links to the post itself, catches videos, photos, and the date link
|
||||
continue
|
||||
href = urllib.parse.urljoin(pageUrl, link['href'])
|
||||
@@ -106,9 +111,9 @@ class TelegramChannelScraper(snscrape.base.Scraper):
|
||||
if imageI['style'].startswith("background-image:url('"):
|
||||
kwargs['image'] = imageI['style'][22 : imageI['style'].index("'", 22)]
|
||||
else:
|
||||
self.logger.warning(f'Could not process link preview image on https://t.me/s/{post["data-post"]}')
|
||||
self.logger.warning(f'Could not process link preview image on {url}')
|
||||
linkPreview = LinkPreview(**kwargs)
|
||||
yield TelegramPost(url = f'https://t.me/s/{post["data-post"]}', date = date, content = content, outlinks = outlinks, outlinksss = outlinksss, linkPreview = linkPreview)
|
||||
yield TelegramPost(url = url, date = date, content = content, outlinks = outlinks, outlinksss = outlinksss, linkPreview = linkPreview)
|
||||
|
||||
def get_items(self):
|
||||
r, soup = self._initial_page()
|
||||
|
||||
Reference in New Issue
Block a user