mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
85 lines
2.4 KiB
Python
85 lines
2.4 KiB
Python
import requests
|
|
import asyncio
|
|
import threading
|
|
from bs4 import BeautifulSoup
|
|
from core.utils.data.state import state
|
|
from core.utils.general.logs import consoleLog
|
|
from core.utils.general.wrappers import run_thread
|
|
|
|
|
|
global url_uztracker
|
|
url_uztracker = "https://uztracker.net/tracker.php?nm="
|
|
|
|
def init_uztracker():
|
|
global up
|
|
global soup
|
|
try:
|
|
response = requests.get(url_uztracker, timeout=10)
|
|
if response.status_code == 200:
|
|
up = True
|
|
else:
|
|
up = False
|
|
consoleLog(f"Uztracker seems down, status code: {response.status_code}")
|
|
except requests.exceptions.RequestException as e:
|
|
consoleLog(f"Request Exception on {url_uztracker}:")
|
|
consoleLog(str(e))
|
|
consoleLog("Is the Site down?")
|
|
up = False
|
|
|
|
run_thread(threading.Thread(target=init_uztracker))
|
|
|
|
def scrape_uztracker(search):
|
|
if up:
|
|
search_url = url_uztracker + search
|
|
consoleLog(search_url)
|
|
result = False
|
|
global results
|
|
global resulttitles
|
|
results = []
|
|
resulttitles = []
|
|
|
|
try:
|
|
resultCount = 0
|
|
response = requests.get(search_url)
|
|
response.raise_for_status()
|
|
soup = BeautifulSoup(response.text, 'html.parser')
|
|
links = soup.find_all('a', class_="genmed tLink", href=lambda x: x and x.startswith('./viewtopic'))
|
|
for link in links:
|
|
if link.b:
|
|
resultCount += 1
|
|
results.append(link['href'])
|
|
resulttitles.append(link.b.text)
|
|
result = True
|
|
|
|
if result:
|
|
return resulttitles, results
|
|
|
|
if not result:
|
|
# add popup in gui for no result
|
|
return None
|
|
|
|
except requests.RequestException as e:
|
|
if result:
|
|
consoleLog(f"Failed to fetch {search_url}: {e}")
|
|
return None
|
|
else:
|
|
consoleLog("Error: Uztracker down")
|
|
return None, None
|
|
|
|
def get_post_title(post_url):
|
|
if up:
|
|
response = requests.get(post_url)
|
|
soup = BeautifulSoup(response.text, 'html.parser')
|
|
maintitle = soup.find(class_='tt-text')
|
|
if maintitle:
|
|
return maintitle.text
|
|
else:
|
|
consoleLog("Program not found")
|
|
else:
|
|
consoleLog("Error: Uztracker down")
|
|
return None
|
|
|
|
|
|
|
|
|