2020-07-26 17:53:59 +00:00
|
|
|
from bs4 import BeautifulSoup
|
2020-12-05 22:01:21 +00:00
|
|
|
import os
|
2020-07-26 17:53:59 +00:00
|
|
|
import urllib.parse as urlparse
|
|
|
|
from urllib.parse import parse_qs
|
|
|
|
|
|
|
|
SKIP_ARGS = ['ref_src', 'utm']
|
2021-01-23 22:43:53 +00:00
|
|
|
SKIP_PREFIX = ['//www.', '//mobile.', '//m.']
|
2021-02-20 20:04:32 +00:00
|
|
|
GOOG_STATIC = 'www.gstatic.com'
|
2020-07-26 17:53:59 +00:00
|
|
|
GOOG_IMG = '/images/branding/searchlogo/1x/googlelogo'
|
|
|
|
LOGO_URL = GOOG_IMG + '_desk'
|
2020-12-17 21:06:47 +00:00
|
|
|
BLANK_B64 = ('data:image/png;base64,'
|
|
|
|
'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAQAAAAnOwc2AAAAD0lEQVR42mNkw'
|
|
|
|
'AIYh7IgAAVVAAuInjI5AAAAAElFTkSuQmCC')
|
2020-07-26 17:53:59 +00:00
|
|
|
|
2020-12-17 21:06:47 +00:00
|
|
|
# Ad keywords
|
2020-07-26 17:53:59 +00:00
|
|
|
BLACKLIST = [
|
2020-12-17 21:06:47 +00:00
|
|
|
'ad', 'anuncio', 'annuncio', 'annonce', 'Anzeige', '广告', '廣告', 'Reklama',
|
|
|
|
'Реклама', 'Anunț', '광고', 'annons', 'Annonse', 'Iklan', '広告', 'Augl.',
|
|
|
|
'Mainos', 'Advertentie', 'إعلان', 'Գովազդ', 'विज्ञापन', 'Reklam', 'آگهی',
|
|
|
|
'Reklāma', 'Reklaam', 'Διαφήμιση', 'מודעה', 'Hirdetés', 'Anúncio'
|
2020-07-26 17:53:59 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
SITE_ALTS = {
|
2020-12-05 22:01:21 +00:00
|
|
|
'twitter.com': os.getenv('WHOOGLE_ALT_TW', 'nitter.net'),
|
|
|
|
'youtube.com': os.getenv('WHOOGLE_ALT_YT', 'invidious.snopyta.org'),
|
2021-01-23 22:43:53 +00:00
|
|
|
'instagram.com': os.getenv('WHOOGLE_ALT_IG', 'bibliogram.art/u'),
|
|
|
|
'reddit.com': os.getenv('WHOOGLE_ALT_RD', 'libredd.it')
|
2020-07-26 17:53:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-08 17:22:04 +00:00
|
|
|
def has_ad_content(element: str) -> bool:
|
|
|
|
"""Inspects an HTML element for ad related content
|
|
|
|
|
|
|
|
Args:
|
|
|
|
element: The HTML element to inspect
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool: True/False for the element containing an ad
|
|
|
|
|
|
|
|
"""
|
2021-03-08 17:38:40 +00:00
|
|
|
return (element.upper() in (value.upper() for value in BLACKLIST)
|
|
|
|
or 'ⓘ' in element)
|
2020-07-26 17:53:59 +00:00
|
|
|
|
|
|
|
|
2021-03-08 17:22:04 +00:00
|
|
|
def get_first_link(soup: BeautifulSoup) -> str:
|
|
|
|
"""Retrieves the first result link from the query response
|
|
|
|
|
|
|
|
Args:
|
|
|
|
soup: The BeautifulSoup response body
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: A str link to the first result
|
|
|
|
|
|
|
|
"""
|
2020-07-26 17:53:59 +00:00
|
|
|
# Replace hrefs with only the intended destination (no "utm" type tags)
|
|
|
|
for a in soup.find_all('a', href=True):
|
|
|
|
# Return the first search result URL
|
|
|
|
if 'url?q=' in a['href']:
|
|
|
|
return filter_link_args(a['href'])
|
|
|
|
|
|
|
|
|
2021-03-08 17:22:04 +00:00
|
|
|
def get_site_alt(link: str) -> str:
|
|
|
|
"""Returns an alternative to a particular site, if one is configured
|
|
|
|
|
|
|
|
Args:
|
|
|
|
link: A string result URL to check against the SITE_ALTS map
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: An updated (or ignored) result link
|
|
|
|
|
|
|
|
"""
|
2020-07-26 17:53:59 +00:00
|
|
|
for site_key in SITE_ALTS.keys():
|
|
|
|
if site_key not in link:
|
|
|
|
continue
|
|
|
|
|
|
|
|
link = link.replace(site_key, SITE_ALTS[site_key])
|
|
|
|
break
|
|
|
|
|
2021-01-23 22:43:53 +00:00
|
|
|
for prefix in SKIP_PREFIX:
|
|
|
|
link = link.replace(prefix, '//')
|
|
|
|
|
|
|
|
return link
|
2020-07-26 17:53:59 +00:00
|
|
|
|
|
|
|
|
2021-03-08 17:22:04 +00:00
|
|
|
def filter_link_args(link: str) -> str:
|
|
|
|
"""Filters out unnecessary URL args from a result link
|
|
|
|
|
|
|
|
Args:
|
|
|
|
link: The string result link to check for extraneous URL params
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: An updated (or ignored) result link
|
|
|
|
|
|
|
|
"""
|
|
|
|
parsed_link = urlparse.urlparse(link)
|
2020-07-26 17:53:59 +00:00
|
|
|
link_args = parse_qs(parsed_link.query)
|
|
|
|
safe_args = {}
|
|
|
|
|
|
|
|
if len(link_args) == 0 and len(parsed_link) > 0:
|
2021-03-08 17:22:04 +00:00
|
|
|
return link
|
2020-07-26 17:53:59 +00:00
|
|
|
|
|
|
|
for arg in link_args.keys():
|
|
|
|
if arg in SKIP_ARGS:
|
|
|
|
continue
|
|
|
|
|
|
|
|
safe_args[arg] = link_args[arg]
|
|
|
|
|
|
|
|
# Remove original link query and replace with filtered args
|
2021-03-08 17:22:04 +00:00
|
|
|
link = link.replace(parsed_link.query, '')
|
2020-07-26 17:53:59 +00:00
|
|
|
if len(safe_args) > 0:
|
2021-03-08 17:22:04 +00:00
|
|
|
link = link + urlparse.urlencode(safe_args, doseq=True)
|
2020-07-26 17:53:59 +00:00
|
|
|
else:
|
2021-03-08 17:22:04 +00:00
|
|
|
link = link.replace('?', '')
|
|
|
|
|
|
|
|
return link
|
|
|
|
|
|
|
|
|
|
|
|
def append_nojs(result: BeautifulSoup) -> None:
|
|
|
|
"""Appends a no-Javascript alternative for a search result
|
2020-07-26 17:53:59 +00:00
|
|
|
|
2021-03-08 17:22:04 +00:00
|
|
|
Args:
|
|
|
|
result: The search result to append a no-JS link to
|
2020-07-26 17:53:59 +00:00
|
|
|
|
2021-03-08 17:22:04 +00:00
|
|
|
Returns:
|
|
|
|
None
|
2020-07-26 17:53:59 +00:00
|
|
|
|
2021-03-08 17:22:04 +00:00
|
|
|
"""
|
2020-12-29 23:43:42 +00:00
|
|
|
nojs_link = BeautifulSoup(features='html.parser').new_tag('a')
|
2021-03-08 17:22:04 +00:00
|
|
|
nojs_link['href'] = '/window?location=' + result['href']
|
2020-07-26 17:53:59 +00:00
|
|
|
nojs_link['style'] = 'display:block;width:100%;'
|
|
|
|
nojs_link.string = 'NoJS Link: ' + nojs_link['href']
|
2021-03-08 17:22:04 +00:00
|
|
|
result.append(BeautifulSoup('<br><hr><br>', 'html.parser'))
|
|
|
|
result.append(nojs_link)
|