mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
076b8c5a1f
Only download files that are newer than the local version.
78 lines
2.7 KiB
Python
78 lines
2.7 KiB
Python
from pathlib import Path
|
|
from typing import Optional
|
|
|
|
from .cookie_jar import CookieJar
|
|
from .download_strategies import DownloadEverythingStrategy, DownloadStrategy
|
|
from .ilias import (IliasAuthenticator, IliasCrawler, IliasDirectoryFilter,
|
|
IliasDownloader, KitShibbolethAuthenticator)
|
|
from .organizer import Organizer
|
|
from .tmp_dir import TmpDir
|
|
from .transform import Transform, apply_transform
|
|
from .utils import Location
|
|
|
|
# TODO save known-good cookies as soon as possible
|
|
# TODO print synchronizer name before beginning synchronization
|
|
|
|
|
|
class Pferd(Location):
|
|
# pylint: disable=too-many-arguments
|
|
|
|
def __init__(self, base_dir: Path, tmp_dir: Path = Path(".tmp")):
|
|
super().__init__(Path(base_dir))
|
|
|
|
self._tmp_dir = TmpDir(self.resolve(tmp_dir))
|
|
|
|
def _ilias(
|
|
self,
|
|
target: Path,
|
|
base_url: str,
|
|
course_id: str,
|
|
authenticator: IliasAuthenticator,
|
|
cookies: Optional[Path],
|
|
dir_filter: IliasDirectoryFilter,
|
|
transform: Transform,
|
|
download_strategy: DownloadStrategy,
|
|
) -> None:
|
|
cookie_jar = CookieJar(cookies)
|
|
session = cookie_jar.create_session()
|
|
tmp_dir = self._tmp_dir.new_subdir()
|
|
organizer = Organizer(self.resolve(target))
|
|
|
|
crawler = IliasCrawler(base_url, course_id, session, authenticator, dir_filter)
|
|
downloader = IliasDownloader(tmp_dir, organizer, session, authenticator)
|
|
|
|
cookie_jar.load_cookies()
|
|
info = crawler.crawl()
|
|
cookie_jar.save_cookies()
|
|
downloader.download_all(
|
|
[
|
|
info for info in apply_transform(transform, info)
|
|
if download_strategy.should_download(organizer, info)
|
|
]
|
|
)
|
|
cookie_jar.save_cookies()
|
|
|
|
def ilias_kit(
|
|
self,
|
|
target: Path,
|
|
course_id: str,
|
|
dir_filter: IliasDirectoryFilter = lambda x: True,
|
|
transform: Transform = lambda x: x,
|
|
cookies: Optional[Path] = None,
|
|
username: Optional[str] = None,
|
|
password: Optional[str] = None,
|
|
download_strategy: DownloadStrategy = DownloadEverythingStrategy(),
|
|
) -> None:
|
|
# This authenticator only works with the KIT ilias instance.
|
|
authenticator = KitShibbolethAuthenticator(username=username, password=password)
|
|
self._ilias(
|
|
target=target,
|
|
base_url="https://ilias.studium.kit.edu/",
|
|
course_id=course_id,
|
|
authenticator=authenticator,
|
|
cookies=cookies,
|
|
dir_filter=dir_filter,
|
|
transform=transform,
|
|
download_strategy=download_strategy,
|
|
)
|