mrmp/remote.py

41 lines
1.1 KiB
Python
Raw Normal View History

2021-10-09 12:02:10 +00:00
import os
import requests
import arguments
import hypertext
2021-10-09 12:36:53 +00:00
ARCHIVE = '.tar.xz'
ARCHITECTURES = ['x86_64', 'i686']
2021-10-09 12:02:10 +00:00
CHARSET = 'u8'
DISTRIBUTION = 'distrib'
2021-10-09 12:36:53 +00:00
SIGNATURE = '.sig'
2021-10-09 16:16:40 +00:00
SUBSYSTEMS = ['msys', 'mingw']
2021-10-09 12:02:10 +00:00
class Remote:
def __init__(self, args):
self.location = args[arguments.REMOTE]
2021-10-09 12:36:53 +00:00
self.load()
2021-10-09 12:02:10 +00:00
2021-10-09 12:36:53 +00:00
def load(self):
d = {}
for architecture in ARCHITECTURES:
url = os.path.join(self.location, DISTRIBUTION, architecture)
html = requests.get(url).content.decode(CHARSET)
links = sorted(hypertext.get_links(html))
archives = [link for link in links
if link.endswith(ARCHIVE)]
signatures = [link for link in links
if link.endswith(SIGNATURE)]
archive = archives[-1]
d[architecture] = archive
self.archives = d
2021-10-09 12:02:10 +00:00
def __str__(self):
2021-10-09 12:55:05 +00:00
lines = [f'Location: {self.location}',
'Archives:']
2021-10-09 12:59:07 +00:00
for architecture, archive in reversed(sorted(self.archives.items())):
2021-10-09 12:55:05 +00:00
lines.append(f'{architecture}{archive}')
return os.linesep.join(lines)