mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
Listen to pylint
This commit is contained in:
parent
62ac569ec4
commit
154d6b29dd
@ -1,3 +1,8 @@
|
||||
"""
|
||||
This module exports only what you need for a basic configuration. If you want a
|
||||
more complex configuration, you need to import the other submodules manually.
|
||||
"""
|
||||
|
||||
import logging
|
||||
|
||||
STYLE = "{"
|
||||
@ -12,6 +17,10 @@ FORMATTER = logging.Formatter(
|
||||
|
||||
|
||||
def enable_logging(name: str = "PFERD", level: int = logging.INFO) -> None:
|
||||
"""
|
||||
Enable and configure logging via the logging module.
|
||||
"""
|
||||
|
||||
handler = logging.StreamHandler()
|
||||
handler.setFormatter(FORMATTER)
|
||||
|
||||
|
@ -7,7 +7,7 @@ from typing import Optional
|
||||
|
||||
import requests
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class CookieJar:
|
||||
@ -35,10 +35,10 @@ class CookieJar:
|
||||
return
|
||||
|
||||
try:
|
||||
logger.info(f"Loading old cookies from {self._cookies.filename}")
|
||||
LOGGER.info(f"Loading old cookies from {self._cookies.filename}")
|
||||
self._cookies.load(ignore_discard=True)
|
||||
except (FileNotFoundError, LoadError):
|
||||
logger.warn(
|
||||
LOGGER.warning(
|
||||
f"No valid cookie file found at {self._cookies.filename}, "
|
||||
"continuing with no cookies"
|
||||
)
|
||||
@ -49,9 +49,9 @@ class CookieJar:
|
||||
return
|
||||
|
||||
if reason is None:
|
||||
logger.info("Saving cookies")
|
||||
LOGGER.info("Saving cookies")
|
||||
else:
|
||||
logger.info(f"Saving cookies ({reason})")
|
||||
LOGGER.info(f"Saving cookies ({reason})")
|
||||
|
||||
# TODO figure out why ignore_discard is set
|
||||
# TODO possibly catch a few more exceptions
|
||||
|
@ -1 +1,5 @@
|
||||
"""
|
||||
Synchronizing files from ILIAS instances (https://www.ilias.de/).
|
||||
"""
|
||||
|
||||
from .authenticators import *
|
||||
|
@ -1,6 +1,8 @@
|
||||
"""
|
||||
A few utility bobs and bits.
|
||||
"""
|
||||
|
||||
import logging
|
||||
import os
|
||||
import sys
|
||||
from pathlib import Path, PurePath
|
||||
from typing import Optional, Tuple
|
||||
|
||||
@ -9,24 +11,42 @@ from colorama import Fore, Style
|
||||
|
||||
|
||||
def move(path: PurePath, from_folders: Tuple[str], to_folders: Tuple[str]) -> Optional[PurePath]:
|
||||
l = len(from_folders)
|
||||
if path.parts[:l] == from_folders:
|
||||
return PurePath(*to_folders, *path.parts[l:])
|
||||
"""
|
||||
If the input path is located anywhere within from_folders, replace the
|
||||
from_folders with to_folders. Returns None otherwise.
|
||||
"""
|
||||
|
||||
length = len(from_folders)
|
||||
if path.parts[:length] == from_folders:
|
||||
return PurePath(*to_folders, *path.parts[length:])
|
||||
return None
|
||||
|
||||
|
||||
def rename(path: PurePath, to_name: str) -> PurePath:
|
||||
"""
|
||||
Set the file name of the input path to to_name.
|
||||
"""
|
||||
|
||||
return PurePath(*path.parts[:-1], to_name)
|
||||
|
||||
|
||||
def stream_to_path(response: requests.Response, to_path: Path, chunk_size: int = 1024 ** 2) -> None:
|
||||
with open(to_path, 'wb') as fd:
|
||||
"""
|
||||
Download a requests response content to a file by streaming it. This
|
||||
function avoids excessive memory usage when downloading large files. The
|
||||
chunk_size is in bytes.
|
||||
"""
|
||||
|
||||
with open(to_path, 'wb') as file_descriptor:
|
||||
for chunk in response.iter_content(chunk_size=chunk_size):
|
||||
fd.write(chunk)
|
||||
file_descriptor.write(chunk)
|
||||
|
||||
|
||||
def prompt_yes_no(question: str, default: Optional[bool] = None) -> bool:
|
||||
"""Prompts the user and returns their choice."""
|
||||
"""
|
||||
Prompts the user a yes/no question and returns their choice.
|
||||
"""
|
||||
|
||||
if default is True:
|
||||
prompt = "[Y/n]"
|
||||
elif default is False:
|
||||
@ -35,30 +55,22 @@ def prompt_yes_no(question: str, default: Optional[bool] = None) -> bool:
|
||||
prompt = "[y/n]"
|
||||
|
||||
text = f"{question} {prompt} "
|
||||
WRONG_REPLY = "Please reply with 'yes'/'y' or 'no'/'n'."
|
||||
wrong_reply = "Please reply with 'yes'/'y' or 'no'/'n'."
|
||||
|
||||
while True:
|
||||
response = input(text).strip().lower()
|
||||
if response in {"yes", "ye", "y"}:
|
||||
return True
|
||||
elif response in {"no", "n"}:
|
||||
if response in {"no", "n"}:
|
||||
return False
|
||||
elif response == "":
|
||||
if default is None:
|
||||
print(WRONG_REPLY)
|
||||
else:
|
||||
return default
|
||||
else:
|
||||
print(WRONG_REPLY)
|
||||
if response == "" and default is not None:
|
||||
return default
|
||||
print(wrong_reply)
|
||||
|
||||
|
||||
class ResolveException(Exception):
|
||||
"""An exception while resolving a file."""
|
||||
|
||||
def __init__(self, message: str):
|
||||
"""Create a new exception."""
|
||||
super().__init__(message)
|
||||
|
||||
|
||||
def resolve_path(directory: Path, target_file: Path) -> Path:
|
||||
"""Resolve a file relative to the path of this organizer.
|
||||
@ -76,22 +88,46 @@ def resolve_path(directory: Path, target_file: Path) -> Path:
|
||||
|
||||
|
||||
class PrettyLogger:
|
||||
"""
|
||||
A logger that prints some specially formatted log messages in color.
|
||||
"""
|
||||
|
||||
def __init__(self, logger: logging.Logger) -> None:
|
||||
self.logger = logger
|
||||
|
||||
def modified_file(self, file_name: Path) -> None:
|
||||
"""
|
||||
An existing file has changed.
|
||||
"""
|
||||
|
||||
self.logger.info(
|
||||
f"{Fore.MAGENTA}{Style.BRIGHT}Modified {file_name}.{Style.RESET_ALL}")
|
||||
|
||||
def new_file(self, file_name: Path) -> None:
|
||||
"""
|
||||
A new file has been downloaded.
|
||||
"""
|
||||
|
||||
self.logger.info(
|
||||
f"{Fore.GREEN}{Style.BRIGHT}Created {file_name}.{Style.RESET_ALL}")
|
||||
|
||||
def ignored_file(self, file_name: Path) -> None:
|
||||
"""
|
||||
Nothing in particular happened to this file.
|
||||
"""
|
||||
|
||||
self.logger.info(f"{Style.DIM}Ignored {file_name}.{Style.RESET_ALL}")
|
||||
|
||||
def starting_synchronizer(self, target_directory: Path, synchronizer_name: str, subject: Optional[str] = None) -> None:
|
||||
def starting_synchronizer(
|
||||
self,
|
||||
target_directory: Path,
|
||||
synchronizer_name: str,
|
||||
subject: Optional[str] = None,
|
||||
) -> None:
|
||||
"""
|
||||
A special message marking that a synchronizer has been started.
|
||||
"""
|
||||
|
||||
subject_str = f"{subject} " if subject else ""
|
||||
self.logger.info("")
|
||||
self.logger.info((
|
||||
|
Loading…
Reference in New Issue
Block a user