mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-30 20:43:12 -05:00
* Changed uvicorn port to 80 * Changed port in docker-compose to match dockerfile * Readded environment variables in docker-compose * production image rework * Use opengraph metadata to make basic recipe cards when full recipe metadata is not available * fixed instrucitons on parse * add last_recipe * automated testing * roadmap update * Sqlite (#75) * file structure * auto-test * take 2 * refactor ap scheduler and startup process * fixed scraper error * database abstraction * database abstraction * port recipes over to new schema * meal migration * start settings migration * finale mongo port * backup improvements * migration imports to new DB structure * unused import cleanup * docs strings * settings and theme import logic * cleanup * fixed tinydb error * requirements * fuzzy search * remove scratch file * sqlalchemy models * improved search ui * recipe models almost done * sql modal population * del scratch * rewrite database model mixins * mostly grabage * recipe updates * working sqllite * remove old files and reorganize * final cleanup Co-authored-by: Hayden <hay-kot@pm.me> * Backup card (#78) * backup / import dialog * upgrade to new tag method * New import card * rename settings.py to app_config.py * migrate to poetry for development * fix failing test Co-authored-by: Hayden <hay-kot@pm.me> * added mkdocs to docker-compose * Translations (#72) * Translations + danish * changed back proxy target to use ENV * Resolved more merge conflicts * Removed test in translation * Documentation of translations * Updated translations * removed old packages Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com> * fail to start bug fixes * feature: prep/cook/total time slots (#80) Co-authored-by: Hayden <hay-kot@pm.me> * missing bind attributes * Bug fixes (#81) * fix: url remains after succesful import * docs: changelog + update todos * arm image * arm compose * compose updates * update poetry * arm support Co-authored-by: Hayden <hay-kot@pm.me> * dockerfile hotfix * dockerfile hotfix * Version Release Final Touches (#84) * Remove slim * bug: opacity issues * bug: startup failure with no database * ci/cd on dev branch * formatting * v0.1.0 documentation Co-authored-by: Hayden <hay-kot@pm.me> * db init hotfix * bug: fix crash in mongo * fix mongo bug * fixed version notifier * finale changelog Co-authored-by: kentora <=> Co-authored-by: Hayden <hay-kot@pm.me> Co-authored-by: Richard Mitic <richard.h.mitic@gmail.com> Co-authored-by: kentora <kentora@kentora.dk>
64 lines
1.6 KiB
Python
64 lines
1.6 KiB
Python
import shutil
|
|
from pathlib import Path
|
|
|
|
import requests
|
|
|
|
CWD = Path(__file__).parent
|
|
IMG_DIR = CWD.parent.joinpath("data", "img")
|
|
|
|
|
|
def read_image(recipe_slug: str) -> Path:
|
|
if IMG_DIR.joinpath(recipe_slug).is_file():
|
|
return IMG_DIR.joinpath(recipe_slug)
|
|
else:
|
|
recipe_slug = recipe_slug.split(".")[0]
|
|
for file in IMG_DIR.glob(f"{recipe_slug}*"):
|
|
return file
|
|
|
|
|
|
def write_image(recipe_slug: str, file_data: bytes, extension: str) -> Path.name:
|
|
delete_image(recipe_slug)
|
|
|
|
image_path = Path(IMG_DIR.joinpath(f"{recipe_slug}.{extension}"))
|
|
with open(image_path, "ab") as f:
|
|
f.write(file_data)
|
|
|
|
return image_path
|
|
|
|
|
|
def delete_image(recipe_slug: str) -> str:
|
|
recipe_slug = recipe_slug.split(".")[0]
|
|
for file in IMG_DIR.glob(f"{recipe_slug}*"):
|
|
return file.unlink()
|
|
|
|
|
|
def scrape_image(image_url: str, slug: str) -> Path:
|
|
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 = IMG_DIR.joinpath(filename)
|
|
|
|
try:
|
|
r = requests.get(image_url, stream=True)
|
|
except:
|
|
return None
|
|
|
|
if r.status_code == 200:
|
|
r.raw.decode_content = True
|
|
|
|
with open(filename, "wb") as f:
|
|
shutil.copyfileobj(r.raw, f)
|
|
|
|
return filename
|
|
|
|
return None
|