mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-08 11:25:17 -05:00
76 lines
2.0 KiB
Python
76 lines
2.0 KiB
Python
import shutil
|
|
from dataclasses import dataclass
|
|
from pathlib import Path
|
|
|
|
import requests
|
|
|
|
from mealie.core import root_logger
|
|
from mealie.schema.recipe import Recipe
|
|
from mealie.services.image import minify
|
|
|
|
logger = root_logger.get_logger()
|
|
|
|
|
|
@dataclass
|
|
class ImageOptions:
|
|
ORIGINAL_IMAGE: str = "original.webp"
|
|
MINIFIED_IMAGE: str = "min-original.webp"
|
|
TINY_IMAGE: str = "tiny-original.webp"
|
|
|
|
|
|
IMG_OPTIONS = ImageOptions()
|
|
|
|
|
|
def write_image(recipe_slug: str, file_data: bytes, extension: str) -> Path:
|
|
image_dir = Recipe(slug=recipe_slug).image_dir
|
|
extension = extension.replace(".", "")
|
|
image_path = image_dir.joinpath(f"original.{extension}")
|
|
image_path.unlink(missing_ok=True)
|
|
|
|
if isinstance(file_data, Path):
|
|
shutil.copy2(file_data, image_path)
|
|
elif isinstance(file_data, bytes):
|
|
with open(image_path, "ab") as f:
|
|
f.write(file_data)
|
|
else:
|
|
with open(image_path, "ab") as f:
|
|
shutil.copyfileobj(file_data, f)
|
|
|
|
minify.minify_image(image_path, force=True)
|
|
|
|
return image_path
|
|
|
|
|
|
def scrape_image(image_url: str, slug: str) -> Path:
|
|
logger.info(f"Image URL: {image_url}")
|
|
if isinstance(image_url, str): # Handles String Types
|
|
image_url = image_url
|
|
|
|
if isinstance(image_url, list): # Handles List Types
|
|
image_url = image_url[0]
|
|
|
|
if isinstance(image_url, dict): # Handles Dictionary Types
|
|
for key in image_url:
|
|
if key == "url":
|
|
image_url = image_url.get("url")
|
|
|
|
filename = slug + "." + image_url.split(".")[-1]
|
|
filename = Recipe(slug=slug).image_dir.joinpath(filename)
|
|
|
|
try:
|
|
r = requests.get(image_url, stream=True)
|
|
except Exception:
|
|
logger.exception("Fatal Image Request Exception")
|
|
return None
|
|
|
|
if r.status_code == 200:
|
|
r.raw.decode_content = True
|
|
logger.info(f"File Name Suffix {filename.suffix}")
|
|
write_image(slug, r.raw, filename.suffix)
|
|
|
|
filename.unlink(missing_ok=True)
|
|
|
|
return slug
|
|
|
|
return None
|