2019-04-25 21:58:30 +02:00
|
|
|
# PFERD
|
|
|
|
|
|
|
|
**P**rogramm zum **F**lotten, **E**infachen **R**unterladen von **D**ateien
|
2019-04-25 13:48:58 +02:00
|
|
|
|
2020-07-11 20:16:33 +02:00
|
|
|
- [Installation](#installation)
|
|
|
|
- [Upgrading from 2.0.0 to 2.1.0+](#upgrading-from-200-to-210)
|
|
|
|
- [Example setup](#example-setup)
|
|
|
|
- [Usage](#usage)
|
|
|
|
- [General concepts](#general-concepts)
|
|
|
|
- [Constructing transforms](#constructing-transforms)
|
|
|
|
- [Transform creators](#transform-creators)
|
|
|
|
- [Transform combinators](#transform-combinators)
|
|
|
|
- [A short, but commented example](#a-short-but-commented-example)
|
|
|
|
|
2019-04-25 13:48:58 +02:00
|
|
|
## Installation
|
|
|
|
|
2020-05-08 21:03:49 +02:00
|
|
|
Ensure that you have at least Python 3.8 installed.
|
2019-04-25 13:48:58 +02:00
|
|
|
|
2019-04-25 22:04:14 +02:00
|
|
|
To install PFERD or update your installation to the latest version, run this
|
2020-07-11 20:16:33 +02:00
|
|
|
wherever you want to install or have already installed PFERD:
|
2019-04-25 13:48:58 +02:00
|
|
|
```
|
2020-09-03 21:47:10 +02:00
|
|
|
$ pip install git+https://github.com/Garmelon/PFERD@v2.3.0
|
2019-04-25 13:48:58 +02:00
|
|
|
```
|
|
|
|
|
2020-07-11 20:16:33 +02:00
|
|
|
The use of [venv] is recommended.
|
|
|
|
|
|
|
|
[venv]: https://docs.python.org/3/library/venv.html
|
2019-04-25 21:30:02 +02:00
|
|
|
|
2020-06-25 17:38:35 +02:00
|
|
|
### Upgrading from 2.0.0 to 2.1.0+
|
|
|
|
|
2020-07-11 20:21:32 +02:00
|
|
|
- The `IliasDirectoryType` type was renamed to `IliasElementType` and is now far more detailed.
|
2020-07-11 20:16:33 +02:00
|
|
|
The new values are: `REGULAR_FOLDER`, `VIDEO_FOLDER`, `EXERCISE_FOLDER`, `REGULAR_FILE`, `VIDEO_FILE`, `FORUM`, `EXTERNAL_LINK`.
|
|
|
|
- Forums and external links are skipped automatically if you use the `kit_ilias` helper.
|
2020-06-25 17:38:35 +02:00
|
|
|
|
2019-04-25 22:04:14 +02:00
|
|
|
## Example setup
|
|
|
|
|
2020-05-08 21:03:49 +02:00
|
|
|
In this example, `python3` refers to at least Python 3.8.
|
2019-04-25 22:04:14 +02:00
|
|
|
|
2019-04-25 21:30:02 +02:00
|
|
|
A full example setup and initial use could look like:
|
|
|
|
```
|
|
|
|
$ mkdir Vorlesungen
|
|
|
|
$ cd Vorlesungen
|
2020-05-15 13:26:23 +02:00
|
|
|
$ python3 -m venv .venv
|
|
|
|
$ .venv/bin/activate
|
2020-09-03 21:47:10 +02:00
|
|
|
$ pip install git+https://github.com/Garmelon/PFERD@v2.3.0
|
|
|
|
$ curl -O https://raw.githubusercontent.com/Garmelon/PFERD/v2.3.0/example_config.py
|
2019-04-25 21:57:04 +02:00
|
|
|
$ python3 example_config.py
|
2019-04-25 22:01:12 +02:00
|
|
|
$ deactivate
|
|
|
|
```
|
|
|
|
|
|
|
|
Subsequent runs of the program might look like:
|
|
|
|
```
|
|
|
|
$ cd Vorlesungen
|
2020-05-15 13:26:23 +02:00
|
|
|
$ .venv/bin/activate
|
2019-04-25 22:01:12 +02:00
|
|
|
$ python3 example_config.py
|
|
|
|
$ deactivate
|
2019-04-25 21:30:02 +02:00
|
|
|
```
|
2020-05-08 18:47:58 +02:00
|
|
|
|
2020-07-11 20:16:33 +02:00
|
|
|
If you just want to get started and crawl *your entire ILIAS Desktop* instead
|
|
|
|
of a given set of courses, please replace `example_config.py` with
|
|
|
|
`example_config_personal_desktop.py` in all of the instructions below (`curl` call and
|
|
|
|
`python3` run command).
|
|
|
|
|
2020-05-08 18:47:58 +02:00
|
|
|
## Usage
|
|
|
|
|
2020-07-11 20:16:33 +02:00
|
|
|
### General concepts
|
|
|
|
|
2020-05-08 18:47:58 +02:00
|
|
|
A PFERD config is a normal python file that starts multiple *synchronizers*
|
|
|
|
which do all the heavy lifting. While you can create and wire them up manually,
|
|
|
|
you are encouraged to use the helper methods provided in `PFERD.Pferd`.
|
|
|
|
|
2020-05-15 11:02:45 +02:00
|
|
|
The synchronizers take some input arguments specific to their service and a
|
2020-07-11 20:16:33 +02:00
|
|
|
*transform*. The transform receives the computed path of an element in ILIAS and
|
|
|
|
can return either an output path (so you can rename files or move them around as
|
|
|
|
you wish) or `None` if you do not want to save the given file.
|
2020-05-08 18:47:58 +02:00
|
|
|
|
|
|
|
Additionally the ILIAS synchronizer allows you to define a *crawl filter*. This
|
2020-06-29 16:18:33 +02:00
|
|
|
filter also receives the computed path as the input, but is only called for
|
|
|
|
*directories*. If you return `True`, the directory will be crawled and
|
2020-05-08 18:47:58 +02:00
|
|
|
searched. If you return `False` the directory will be ignored and nothing in it
|
2020-07-11 20:16:33 +02:00
|
|
|
will be passed to the transform.
|
|
|
|
|
|
|
|
### Constructing transforms
|
|
|
|
|
|
|
|
While transforms are just normal python functions, writing them by hand can
|
|
|
|
quickly become tedious. In order to help you with writing your own transforms
|
|
|
|
and filters, PFERD defines a few useful transform creators and combinators in
|
|
|
|
the `PFERD.transform` module:
|
|
|
|
|
|
|
|
#### Transform creators
|
|
|
|
|
|
|
|
These methods let you create a few basic transform building blocks:
|
|
|
|
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`glob(glob)`**
|
2020-07-11 20:16:33 +02:00
|
|
|
Creates a transform that returns the unchanged path if the glob matches the path and `None` otherwise.
|
2020-07-11 20:21:32 +02:00
|
|
|
See also [Path.match].
|
2020-07-11 20:16:33 +02:00
|
|
|
Example: `glob("Übung/*.pdf")`
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`predicate(pred)`**
|
2020-07-11 20:16:33 +02:00
|
|
|
Creates a transform that returns the unchanged path if `pred(path)` returns a truthy value.
|
2020-07-11 20:21:32 +02:00
|
|
|
Returns `None` otherwise.
|
2020-07-11 20:16:33 +02:00
|
|
|
Example: `predicate(lambda path: len(path.parts) == 3)`
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`move_dir(source, target)`**
|
|
|
|
Creates a transform that moves all files from the `source` to the `target` directory.
|
2020-07-11 20:16:33 +02:00
|
|
|
Example: `move_dir("Übung/", "Blätter/")`
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`move(source, target)`**
|
|
|
|
Creates a transform that moves the `source` file to `target`.
|
2020-07-11 20:16:33 +02:00
|
|
|
Example: `move("Vorlesung/VL02_Automten.pdf", "Vorlesung/VL02_Automaten.pdf")`
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`rename(source, target)`**
|
2020-07-11 20:16:33 +02:00
|
|
|
Creates a transform that renames all files named `source` to `target`.
|
2020-07-11 20:21:32 +02:00
|
|
|
This transform works on the file names, not paths, and thus works no matter where the file is located.
|
2020-07-11 20:16:33 +02:00
|
|
|
Example: `rename("VL02_Automten.pdf", "VL02_Automaten.pdf")`
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`re_move(regex, target)`**
|
2020-07-11 20:16:33 +02:00
|
|
|
Creates a transform that moves all files matching `regex` to `target`.
|
|
|
|
The transform `str.format` on the `target` string with the contents of the capturing groups before returning it.
|
|
|
|
The capturing groups can be accessed via their index.
|
2020-07-11 20:21:32 +02:00
|
|
|
See also [Match.group].
|
2020-07-11 20:16:33 +02:00
|
|
|
Example: `re_move(r"Übung/Blatt (\d+)\.pdf", "Blätter/Blatt_{1:0>2}.pdf")`
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`re_rename(regex, target)`**
|
2020-07-11 20:16:33 +02:00
|
|
|
Creates a transform that renames all files matching `regex` to `target`.
|
2020-07-11 20:21:32 +02:00
|
|
|
This transform works on the file names, not paths, and thus works no matter where the file is located.
|
2020-07-11 20:16:33 +02:00
|
|
|
Example: `re_rename(r"VL(\d+)(.*)\.pdf", "Vorlesung_Nr_{1}__{2}.pdf")`
|
|
|
|
|
|
|
|
All movement or rename transforms above return `None` if a file doesn't match
|
|
|
|
their movement or renaming criteria. This enables them to be used as building
|
|
|
|
blocks to build up more complex transforms.
|
|
|
|
|
|
|
|
In addition, `PFERD.transform` also defines the `keep` transform which returns its input path unchanged.
|
|
|
|
This behaviour can be very useful when creating more complex transforms.
|
|
|
|
See below for example usage.
|
|
|
|
|
|
|
|
[Path.match]: https://docs.python.org/3/library/pathlib.html#pathlib.Path.match
|
|
|
|
[Match.group]: https://docs.python.org/3/library/re.html#re.Match.group
|
|
|
|
|
|
|
|
#### Transform combinators
|
|
|
|
|
|
|
|
These methods let you combine transforms into more complex transforms:
|
|
|
|
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`optionally(transform)`**
|
2020-07-11 20:16:33 +02:00
|
|
|
Wraps a given transform and returns its result if it is not `None`.
|
2020-05-08 18:47:58 +02:00
|
|
|
Otherwise returns the input path unchanged.
|
2020-07-11 20:16:33 +02:00
|
|
|
See below for example usage.
|
2020-07-11 20:21:32 +02:00
|
|
|
* **`do(transforms)`**
|
2020-07-11 20:16:33 +02:00
|
|
|
Accepts a series of transforms and applies them in the given order to the result of the previous one.
|
|
|
|
If any transform returns `None`, `do` short-circuits and also returns `None`.
|
|
|
|
This can be used to perform multiple renames in a row:
|
2020-05-08 18:47:58 +02:00
|
|
|
```py
|
|
|
|
do(
|
|
|
|
# Move them
|
|
|
|
move_dir("Vorlesungsmaterial/Vorlesungsvideos/", "Vorlesung/Videos/"),
|
|
|
|
# Fix extensions (if they have any)
|
|
|
|
optionally(re_rename("(.*).m4v.mp4", "{1}.mp4")),
|
|
|
|
# Remove the 'dbs' prefix (if they have any)
|
|
|
|
optionally(re_rename("(?i)dbs-(.+)", "{1}")),
|
2020-07-11 20:16:33 +02:00
|
|
|
)
|
2020-05-08 18:47:58 +02:00
|
|
|
```
|
2020-07-11 20:21:32 +02:00
|
|
|
- **`attempt(transforms)`**
|
2020-07-11 20:16:33 +02:00
|
|
|
Applies the passed transforms in the given order until it finds one that does not return `None`.
|
|
|
|
If it does not find any, it returns `None`.
|
|
|
|
This can be used to give a list of possible transformations and automatically pick the first one that fits:
|
2020-05-08 18:47:58 +02:00
|
|
|
```py
|
|
|
|
attempt(
|
|
|
|
# Move all videos. If a video is passed in, this `re_move` will succeed
|
|
|
|
# and attempt short-circuits with the result.
|
|
|
|
re_move(r"Vorlesungsmaterial/.*/(.+?)\.mp4", "Vorlesung/Videos/{1}.mp4"),
|
|
|
|
# Move the whole folder to a nicer name - now without any mp4!
|
|
|
|
move_dir("Vorlesungsmaterial/", "Vorlesung/"),
|
|
|
|
# If we got another file, keep it.
|
|
|
|
keep,
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2020-07-11 20:16:33 +02:00
|
|
|
All of these combinators are used in the provided example configs, if you want
|
|
|
|
to see some more real-life usages.
|
2020-05-08 18:47:58 +02:00
|
|
|
|
|
|
|
### A short, but commented example
|
|
|
|
|
|
|
|
```py
|
2020-07-11 20:16:33 +02:00
|
|
|
from pathlib import Path, PurePath
|
|
|
|
from PFERD import Pferd
|
|
|
|
from PFERD.ilias import IliasElementType
|
|
|
|
from PFERD.transform import *
|
|
|
|
|
|
|
|
# This filter will later be used by the ILIAS crawler to decide whether it
|
|
|
|
# should crawl a directory (or directory-like structure).
|
|
|
|
def filter_course(path: PurePath, type: IliasElementType) -> bool:
|
|
|
|
# Note that glob returns a Transform, which is a function from PurePath ->
|
|
|
|
# Optional[PurePath]. Because of this, we need to apply the result of
|
|
|
|
# 'glob' to our input path. The returned value will be truthy (a Path) if
|
|
|
|
# the transform succeeded, or `None` if it failed.
|
|
|
|
|
|
|
|
# We need to crawl the 'Tutorien' folder as it contains one that we want.
|
2020-05-08 18:47:58 +02:00
|
|
|
if glob("Tutorien/")(path):
|
|
|
|
return True
|
|
|
|
# If we found 'Tutorium 10', keep it!
|
|
|
|
if glob("Tutorien/Tutorium 10")(path):
|
|
|
|
return True
|
|
|
|
# Discard all other folders inside 'Tutorien'
|
|
|
|
if glob("Tutorien/*")(path):
|
|
|
|
return False
|
|
|
|
|
|
|
|
# All other dirs (including subdirs of 'Tutorium 10') should be searched :)
|
|
|
|
return True
|
|
|
|
|
2020-07-11 20:16:33 +02:00
|
|
|
|
|
|
|
# This transform will later be used to rename a few files. It can also be used
|
|
|
|
# to ignore some files.
|
|
|
|
transform_course = attempt(
|
|
|
|
# We don't care about the other tuts and would instead prefer a cleaner
|
|
|
|
# directory structure.
|
|
|
|
move_dir("Tutorien/Tutorium 10/", "Tutorium/"),
|
|
|
|
# We don't want to modify any other files, so we're going to keep them
|
|
|
|
# exactly as they are.
|
|
|
|
keep
|
|
|
|
)
|
|
|
|
|
|
|
|
# Enable and configure the text output. Needs to be called before calling any
|
|
|
|
# other PFERD methods.
|
|
|
|
Pferd.enable_logging()
|
|
|
|
# Create a Pferd instance rooted in the same directory as the script file. This
|
|
|
|
# is not a test run, so files will be downloaded (default, can be omitted).
|
2020-05-08 18:47:58 +02:00
|
|
|
pferd = Pferd(Path(__file__).parent, test_run=False)
|
|
|
|
|
|
|
|
# Use the ilias_kit helper to synchronize an ILIAS course
|
|
|
|
pferd.ilias_kit(
|
2020-07-11 20:16:33 +02:00
|
|
|
# The directory that all of the downloaded files should be placed in
|
|
|
|
"My_cool_course/",
|
2020-05-08 18:47:58 +02:00
|
|
|
# The course ID (found in the URL when on the course page in ILIAS)
|
|
|
|
"course id",
|
2020-07-11 20:16:33 +02:00
|
|
|
# A path to a cookie jar. If you synchronize multiple ILIAS courses,
|
|
|
|
# setting this to a common value requires you to only log in once.
|
2020-05-08 18:47:58 +02:00
|
|
|
cookies=Path("ilias_cookies.txt"),
|
2020-07-11 20:16:33 +02:00
|
|
|
# A transform can rename, move or filter out certain files
|
2020-05-08 18:47:58 +02:00
|
|
|
transform=transform_course,
|
|
|
|
# A crawl filter limits what paths the cralwer searches
|
|
|
|
dir_filter=filter_course,
|
|
|
|
)
|
|
|
|
```
|