mrmp/remote.py
Marc Beninca 1db8c559a2 files
2023-01-28 21:19:16 +01:00

49 lines
1.6 KiB
Python

import os
import requests
import arguments
import catalog
import hypertext
import msys
import repository
class Remote(repository.Repository):
def __init__(self):
super().__init__(arguments.remote)
self.load()
def load(self):
archives = {}
c = {}
for architecture in self.architectures:
subsystems = architecture.subsystems.keys()
location = os.path.join(self.location,
architecture.distribution.path)
archives[architecture] = hypertext.HyperText(location).archive
#
c[architecture] = {}
for subsystem in subsystems:
location = os.path.join(self.location,
architecture.subsystems[subsystem]
.path,
f'{subsystem}{msys.CATALOG}')
binary = requests.get(location).content
c[architecture][subsystem] = catalog.Catalog(binary)
self.archives = archives
self.catalogs = c
def get_files(self, path):
return hypertext.HyperText(os.path.join(self.location, path)).links
def __str__(self):
lines = [
super().__str__(),
'Archives:',
]
for architecture, archive in reversed(sorted(self.archives.items())):
lines.append(f'{architecture}{archive}')
lines.append('Subsystems:')
for arch, ss in reversed(sorted(self.catalogs.items())):
lines.append(f'{arch}{list(ss.keys())}')
return os.linesep.join(lines)