97 lines
3.6 KiB
Python
97 lines
3.6 KiB
Python
import datetime
|
|
import os
|
|
import requests
|
|
import importlib
|
|
import logging
|
|
import slugify
|
|
import time
|
|
import croniter
|
|
import win32gui
|
|
import win32con
|
|
from settings import settings
|
|
|
|
def main():
|
|
config = settings.load_settings()
|
|
log_path = os.path.abspath(os.path.expanduser(config['general']['location'] + "/log.txt"))
|
|
if config['general']['log']:
|
|
logging.basicConfig(filename=log_path, level=config['general']['log_level'], format="%(asctime)s [%(levelname)s] %(message)s")
|
|
else:
|
|
logging.basicConfig(level=config['general']['log_level'], format="%(asctime)s [%(levelname)s] %(message)s")
|
|
|
|
logging.debug(f"Config: {config}")
|
|
|
|
chosen_providers = config['general']['provider']
|
|
|
|
# Daemon mode
|
|
if config['daemon']['daemon']:
|
|
while True:
|
|
for provider in chosen_providers:
|
|
if provider == config['general']['provider'][0]:
|
|
download_with_provider(provider, config, set_wallpaper=True)
|
|
download_with_provider(provider, config)
|
|
if config['daemon']['cron'] != "":
|
|
now = datetime.datetime.now()
|
|
cron = croniter.croniter(config['daemon']['cron'], now)
|
|
next_run = cron.get_next(datetime.datetime)
|
|
logging.info(f"Next run: {next_run}")
|
|
time.sleep((next_run - now).total_seconds())
|
|
else:
|
|
time.sleep(config['daemon']['interval'])
|
|
# Download once
|
|
else:
|
|
for provider in chosen_providers:
|
|
if provider == config['general']['provider'][0]:
|
|
download_with_provider(provider, config, set_wallpaper=True)
|
|
download_with_provider(provider, config)
|
|
|
|
def download_with_provider(provider_name, config, set_wallpaper=False):
|
|
session = requests.Session()
|
|
session.headers.update({
|
|
"User-Agent": config['general']['user_agent']
|
|
})
|
|
|
|
# Convenience variables, could be inlined
|
|
provider_settings = config[provider_name] if provider_name in config else None
|
|
download_location = os.path.abspath(os.path.expanduser(config['general']['location']))
|
|
|
|
# Load the provider module
|
|
provider = importlib.import_module(f"providers.{provider_name}")
|
|
|
|
# Create an instance of the provider
|
|
provider_obj = getattr(provider, provider_name.title())(provider_settings, session)
|
|
# Get the image URL and title
|
|
image_url, image_title = provider_obj.get_image_info()
|
|
logging.debug(f"Image URL: {image_url}")
|
|
|
|
# Variables for the file path
|
|
date = datetime.datetime.now().strftime("%Y-%m-%d")
|
|
image_title = slugify.slugify(image_title)
|
|
file_path = f"{download_location}/{provider_name.title()}/{date} [{image_title}].jpg"
|
|
# Check if we should include the title in the filename
|
|
if not config['general']['include_title']:
|
|
file_path = f"{download_location}/{provider_name.title()}/{date}.jpg"
|
|
# Create the download location if it doesn't exist
|
|
if not os.path.exists(download_location):
|
|
logging.info(f"Creating download location: {download_location}")
|
|
os.mkdir(download_location)
|
|
if not os.path.exists(f"{download_location}/{provider_name.title()}"):
|
|
logging.info(f"Creating provider location: {download_location}/{provider_name.title()}")
|
|
os.mkdir(f"{download_location}/{provider_name.title()}")
|
|
# Check if the file exists and if we should overwrite it
|
|
if os.path.exists(file_path) and not config['general']['overwrite']:
|
|
logging.info(f"File exists, skipping: {file_path}")
|
|
return
|
|
|
|
# Download the image
|
|
logging.info(f"Downloading image: {image_title}")
|
|
image = session.get(image_url).content
|
|
logging.info(f"Saving file: {file_path}")
|
|
with open(file_path, "wb") as file:
|
|
file.write(image)
|
|
|
|
if config['general']['set_wallpaper'] and set_wallpaper:
|
|
logging.info("Setting wallpaper")
|
|
win32gui.SystemParametersInfo(win32con.SPI_SETDESKWALLPAPER, file_path, win32con.SPIF_SENDCHANGE)
|
|
|
|
if __name__ == "__main__":
|
|
main() |