From e0b9b289727c98d2ae683a09b26f606180412500 Mon Sep 17 00:00:00 2001 From: Alexander Hayden Date: Mon, 7 Oct 2019 16:32:58 -0400 Subject: Fix update.py --- update.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'update.py') diff --git a/update.py b/update.py index 953f994..5cf99f9 100755 --- a/update.py +++ b/update.py @@ -103,7 +103,7 @@ def apply_updates(args): else: url = requests.get(mod[1]).url if url is None: - print('Failed to fetch {mod[0]}!'.format(mod=mod)) + print('[!]Failed to fetch {mod[0]}!'.format(mod=mod)) continue resp = requests.get(url) hsh = hashlib.sha1(resp.content).hexdigest() @@ -147,19 +147,19 @@ def check_updates(args): # Use selenium to find curseforge CDN links around cloudflare def find_cdn(ffx, url): try: - ffx.get(url + '/download') - page_src = ffx.page_source - dl = re.search('Elerium.PublicProjectDownload.countdown\(".*?"\);', page_src) - if not dl: - return None - dl = re.search('\d+', dl.group(0).split('"')[1]) + #ffx.get(url + '/download') + ffx.get(url + '/files') + #page_src = ffx.page_source + #dl = re.search('Elerium.PublicProjectDownload.countdown\(".*?"\);', page_src) + #if not dl: + # return None + dl = ffx.find_element_by_xpath("html/body/div/main/div/div/section/div/div/div/section/article/div/div/a").get_attribute("href") + dl = re.search('\d{7}', dl) dl = dl.group(0) four = str(int(dl[:4])) three = str(int(dl[4:])) - ffx.get(url + '/files') - elements = ffx.find_elements_by_tag_name('tr') - file_name = elements[1].find_element_by_tag_name('a').text + file_name = ffx.find_elements_by_xpath("html/body/div/main/div/div/section/div/div/div/section/article/div/div/span[contains(@class, 'text-sm')]")[1].text return 'https://media.forgecdn.net/files/{four}/{three}/{jar}'.format(four=four,three=three,jar=file_name) except: -- cgit v1.2.3