pferd/PFERD/utils.py

46 lines
1.6 KiB
Python
Raw Normal View History

2020-04-20 03:54:47 +02:00
import logging
import os
import sys
2020-04-20 03:54:47 +02:00
from pathlib import Path, PurePath
from typing import Optional, Tuple
2020-04-20 03:54:47 +02:00
import requests
from colorama import Fore, Style
def move(path: PurePath, from_folders: Tuple[str], to_folders: Tuple[str]) -> Optional[PurePath]:
2019-04-24 14:34:20 +02:00
l = len(from_folders)
if path.parts[:l] == from_folders:
2020-04-20 03:54:47 +02:00
return PurePath(*to_folders, *path.parts[l:])
return None
2020-04-20 03:54:47 +02:00
def rename(path: PurePath, to_name: str) -> PurePath:
return PurePath(*path.parts[:-1], to_name)
2020-04-20 03:54:47 +02:00
def stream_to_path(response: requests.Response, to_path: Path, chunk_size: int = 1024 ** 2) -> None:
2019-04-24 14:34:20 +02:00
with open(to_path, 'wb') as fd:
for chunk in response.iter_content(chunk_size=chunk_size):
2019-04-24 14:34:20 +02:00
fd.write(chunk)
class PrettyLogger:
2020-04-20 03:54:47 +02:00
def __init__(self, logger: logging.Logger) -> None:
self.logger = logger
2020-04-20 03:54:47 +02:00
def modified_file(self, file_name: Path) -> None:
self.logger.info(f"{Fore.MAGENTA}{Style.BRIGHT}Modified {file_name}.{Style.RESET_ALL}")
2020-04-20 03:54:47 +02:00
def new_file(self, file_name: Path) -> None:
self.logger.info(f"{Fore.GREEN}{Style.BRIGHT}Created {file_name}.{Style.RESET_ALL}")
2020-04-20 03:54:47 +02:00
def ignored_file(self, file_name: Path) -> None:
self.logger.info(f"{Style.DIM}Ignored {file_name}.{Style.RESET_ALL}")
2020-04-20 03:54:47 +02:00
def starting_synchronizer(self, target_directory: Path, synchronizer_name: str, subject: Optional[str] = None) -> None:
subject_str = f"{subject} " if subject else ""
self.logger.info("")
self.logger.info((
f"{Fore.CYAN}{Style.BRIGHT}Synchronizing {subject_str}to {target_directory}"
f" using the {synchronizer_name} synchronizer.{Style.RESET_ALL}"
))