mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
added rezkonv importer
This commit is contained in:
@@ -114,11 +114,13 @@ class ImportExportBase(forms.Form):
|
|||||||
PEPPERPLATE = 'PEPPERPLATE'
|
PEPPERPLATE = 'PEPPERPLATE'
|
||||||
RECIPESAGE = 'RECIPESAGE'
|
RECIPESAGE = 'RECIPESAGE'
|
||||||
DOMESTICA = 'DOMESTICA'
|
DOMESTICA = 'DOMESTICA'
|
||||||
|
REZKONV = 'REZKONV'
|
||||||
|
|
||||||
type = forms.ChoiceField(choices=(
|
type = forms.ChoiceField(choices=(
|
||||||
(DEFAULT, _('Default')), (PAPRIKA, 'Paprika'), (NEXTCLOUD, 'Nextcloud Cookbook'),
|
(DEFAULT, _('Default')), (PAPRIKA, 'Paprika'), (NEXTCLOUD, 'Nextcloud Cookbook'),
|
||||||
(MEALIE, 'Mealie'), (CHOWDOWN, 'Chowdown'), (SAFRON, 'Safron'), (CHEFTAP, 'ChefTap'),
|
(MEALIE, 'Mealie'), (CHOWDOWN, 'Chowdown'), (SAFRON, 'Safron'), (CHEFTAP, 'ChefTap'),
|
||||||
(PEPPERPLATE, 'Pepperplate'), (RECIPESAGE, 'Recipe Sage'), (DOMESTICA, 'Domestica'),
|
(PEPPERPLATE, 'Pepperplate'), (RECIPESAGE, 'Recipe Sage'), (DOMESTICA, 'Domestica'),
|
||||||
|
(REZKONV, 'RezKonv'),
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
81
cookbook/integration/rezkonv.py
Normal file
81
cookbook/integration/rezkonv.py
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
import json
|
||||||
|
import re
|
||||||
|
from io import BytesIO
|
||||||
|
from zipfile import ZipFile
|
||||||
|
|
||||||
|
from cookbook.helper.ingredient_parser import parse, get_food, get_unit
|
||||||
|
from cookbook.integration.integration import Integration
|
||||||
|
from cookbook.models import Recipe, Step, Food, Unit, Ingredient, Keyword
|
||||||
|
|
||||||
|
|
||||||
|
class RezKonv(Integration):
|
||||||
|
|
||||||
|
def get_recipe_from_file(self, file):
|
||||||
|
|
||||||
|
ingredient_mode = False
|
||||||
|
direction_mode = False
|
||||||
|
|
||||||
|
ingredients = []
|
||||||
|
directions = []
|
||||||
|
for line in file.replace('\r', '').split('\n'):
|
||||||
|
if 'Titel:' in line:
|
||||||
|
title = line.replace('Titel:', '').strip()
|
||||||
|
if 'Kategorien:' in line:
|
||||||
|
tags = line.replace('Kategorien:', '').strip()
|
||||||
|
if ingredient_mode and ('quelle' in line.lower() or 'source' in line.lower()):
|
||||||
|
ingredient_mode = False
|
||||||
|
if ingredient_mode:
|
||||||
|
if line != '' and '===' not in line and 'Zubereitung' not in line:
|
||||||
|
ingredients.append(line.strip())
|
||||||
|
if direction_mode:
|
||||||
|
if line.strip() != '' and line.strip() != '=====':
|
||||||
|
directions.append(line.strip())
|
||||||
|
if 'Zutaten:' in line:
|
||||||
|
ingredient_mode = True
|
||||||
|
if 'Zubereitung:' in line:
|
||||||
|
ingredient_mode = False
|
||||||
|
direction_mode = True
|
||||||
|
|
||||||
|
recipe = Recipe.objects.create(name=title, created_by=self.request.user, internal=True, space=self.request.space)
|
||||||
|
|
||||||
|
for k in tags.split(','):
|
||||||
|
keyword, created = Keyword.objects.get_or_create(name=k.strip(), space=self.request.space)
|
||||||
|
recipe.keywords.add(keyword)
|
||||||
|
|
||||||
|
step = Step.objects.create(
|
||||||
|
instruction='\n'.join(directions) + '\n\n'
|
||||||
|
)
|
||||||
|
|
||||||
|
for ingredient in ingredients:
|
||||||
|
amount, unit, ingredient, note = parse(ingredient)
|
||||||
|
f = get_food(ingredient, self.request.space)
|
||||||
|
u = get_unit(unit, self.request.space)
|
||||||
|
step.ingredients.add(Ingredient.objects.create(
|
||||||
|
food=f, unit=u, amount=amount, note=note
|
||||||
|
))
|
||||||
|
recipe.steps.add(step)
|
||||||
|
|
||||||
|
return recipe
|
||||||
|
|
||||||
|
def get_file_from_recipe(self, recipe):
|
||||||
|
raise NotImplementedError('Method not implemented in storage integration')
|
||||||
|
|
||||||
|
def split_recipe_file(self, file):
|
||||||
|
recipe_list = []
|
||||||
|
current_recipe = ''
|
||||||
|
|
||||||
|
for fl in file.readlines():
|
||||||
|
line = fl.decode("ANSI")
|
||||||
|
if line.startswith('=====') and 'rezkonv' in line.lower():
|
||||||
|
if current_recipe != '':
|
||||||
|
recipe_list.append(current_recipe)
|
||||||
|
current_recipe = ''
|
||||||
|
else:
|
||||||
|
current_recipe = ''
|
||||||
|
else:
|
||||||
|
current_recipe += line + '\n'
|
||||||
|
|
||||||
|
if current_recipe != '':
|
||||||
|
recipe_list.append(current_recipe)
|
||||||
|
|
||||||
|
return recipe_list
|
||||||
@@ -19,6 +19,7 @@ from cookbook.integration.mealie import Mealie
|
|||||||
from cookbook.integration.nextcloud_cookbook import NextcloudCookbook
|
from cookbook.integration.nextcloud_cookbook import NextcloudCookbook
|
||||||
from cookbook.integration.paprika import Paprika
|
from cookbook.integration.paprika import Paprika
|
||||||
from cookbook.integration.recipesage import RecipeSage
|
from cookbook.integration.recipesage import RecipeSage
|
||||||
|
from cookbook.integration.rezkonv import RezKonv
|
||||||
from cookbook.integration.safron import Safron
|
from cookbook.integration.safron import Safron
|
||||||
from cookbook.models import Recipe, ImportLog
|
from cookbook.models import Recipe, ImportLog
|
||||||
|
|
||||||
@@ -44,6 +45,8 @@ def get_integration(request, export_type):
|
|||||||
return Domestica(request, export_type)
|
return Domestica(request, export_type)
|
||||||
if export_type == ImportExportBase.RECIPESAGE:
|
if export_type == ImportExportBase.RECIPESAGE:
|
||||||
return RecipeSage(request, export_type)
|
return RecipeSage(request, export_type)
|
||||||
|
if export_type == ImportExportBase.REZKONV:
|
||||||
|
return RezKonv(request, export_type)
|
||||||
|
|
||||||
|
|
||||||
@group_required('user')
|
@group_required('user')
|
||||||
|
|||||||
@@ -28,10 +28,11 @@ Overview of the capabilities of the different integrations.
|
|||||||
| Chowdown | ✔️ | ⌚ | ✔️ |
|
| Chowdown | ✔️ | ⌚ | ✔️ |
|
||||||
| Safron | ✔️ | ⌚ | ❌ |
|
| Safron | ✔️ | ⌚ | ❌ |
|
||||||
| Paprika | ✔️ | ⌚ | ✔️ |
|
| Paprika | ✔️ | ⌚ | ✔️ |
|
||||||
| ChefTap | ✔️ | ❌ | ❌️ |
|
| ChefTap | ✔️ | ❌ | ❌ |
|
||||||
| Pepperplate | ✔️ | ⌚ | ❌️ |
|
| Pepperplate | ✔️ | ⌚ | ❌ |
|
||||||
| RecipeSage | ✔️ | ✔️ | ✔️ |
|
| RecipeSage | ✔️ | ✔️ | ✔️ |
|
||||||
| Domestica | ✔️ | ⌚ | ✔️ |
|
| Domestica | ✔️ | ⌚ | ✔️ |
|
||||||
|
| RezKonv | ✔️ | ❌ | ❌ |
|
||||||
|
|
||||||
✔ = implemented, ❌ = not implemented and not possible/planned, ⌚ = not yet implemented
|
✔ = implemented, ❌ = not implemented and not possible/planned, ⌚ = not yet implemented
|
||||||
|
|
||||||
@@ -144,3 +145,8 @@ Usually the import should recognize all ingredients and put everything else into
|
|||||||
or is worse than this feel free to provide me with more example data and I can try to improve the importer.
|
or is worse than this feel free to provide me with more example data and I can try to improve the importer.
|
||||||
|
|
||||||
As ChefTap cannot import these files anyway there won't be an exporter implemented in Tandoor.
|
As ChefTap cannot import these files anyway there won't be an exporter implemented in Tandoor.
|
||||||
|
|
||||||
|
## RezKonv
|
||||||
|
The RezKonv format is primarily used in the german recipe manager RezKonv Suite.
|
||||||
|
To migrate from RezKonv Suite to Tandoor select `Export > Gesamtes Kochbuch exportieren` (the last option in the export menu).
|
||||||
|
The generated file can simply be imported into Tandoor.
|
||||||
Reference in New Issue
Block a user