mirror of
				https://github.com/grocy/grocy.git
				synced 2025-11-04 05:15:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			228 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			228 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Grocy\Controllers;
 | 
						|
 | 
						|
use Grocy\Services\RecipesService;
 | 
						|
use Grocy\Helpers\Grocycode;
 | 
						|
 | 
						|
class RecipesController extends BaseController
 | 
						|
{
 | 
						|
	use GrocycodeTrait;
 | 
						|
 | 
						|
	public function MealPlan(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | 
						|
	{
 | 
						|
		$start = date('Y-m-d');
 | 
						|
		if (isset($request->getQueryParams()['start']) && IsIsoDate($request->getQueryParams()['start']))
 | 
						|
		{
 | 
						|
			$start = $request->getQueryParams()['start'];
 | 
						|
		}
 | 
						|
 | 
						|
		$days = 6;
 | 
						|
		if (isset($request->getQueryParams()['days']) && filter_var($request->getQueryParams()['days'], FILTER_VALIDATE_INT) !== false)
 | 
						|
		{
 | 
						|
			$days = $request->getQueryParams()['days'];
 | 
						|
		}
 | 
						|
 | 
						|
		$mealPlanWhereTimespan = "day BETWEEN DATE('$start', '-$days days') AND DATE('$start', '+$days days')";
 | 
						|
 | 
						|
		$recipes = $this->getDatabase()->recipes()->where('type', RecipesService::RECIPE_TYPE_NORMAL)->fetchAll();
 | 
						|
		$events = [];
 | 
						|
		foreach ($this->getDatabase()->meal_plan()->where($mealPlanWhereTimespan) as $mealPlanEntry)
 | 
						|
		{
 | 
						|
			$recipe = FindObjectInArrayByPropertyValue($recipes, 'id', $mealPlanEntry['recipe_id']);
 | 
						|
			$title = '';
 | 
						|
 | 
						|
			if ($recipe !== null)
 | 
						|
			{
 | 
						|
				$title = $recipe->name;
 | 
						|
			}
 | 
						|
 | 
						|
			$productDetails = null;
 | 
						|
			if ($mealPlanEntry['product_id'] !== null)
 | 
						|
			{
 | 
						|
				$productDetails = $this->getStockService()->GetProductDetails($mealPlanEntry['product_id']);
 | 
						|
			}
 | 
						|
 | 
						|
			$events[] = [
 | 
						|
				'id' => $mealPlanEntry['id'],
 | 
						|
				'title' => $title,
 | 
						|
				'start' => $mealPlanEntry['day'],
 | 
						|
				'date_format' => 'date',
 | 
						|
				'recipe' => json_encode($recipe),
 | 
						|
				'mealPlanEntry' => json_encode($mealPlanEntry),
 | 
						|
				'type' => $mealPlanEntry['type'],
 | 
						|
				'productDetails' => json_encode($productDetails)
 | 
						|
			];
 | 
						|
		}
 | 
						|
 | 
						|
		return $this->renderPage($response, 'mealplan', [
 | 
						|
			'fullcalendarEventSources' => $events,
 | 
						|
			'recipes' => $recipes,
 | 
						|
			'internalRecipes' => $this->getDatabase()->recipes()->where("id IN (SELECT recipe_id FROM meal_plan_internal_recipe_relation WHERE $mealPlanWhereTimespan)")->fetchAll(),
 | 
						|
			'recipesResolved' => $this->getRecipesService()->GetRecipesResolved("recipe_id IN (SELECT recipe_id FROM meal_plan_internal_recipe_relation WHERE $mealPlanWhereTimespan)"),
 | 
						|
			'products' => $this->getDatabase()->products()->orderBy('name', 'COLLATE NOCASE'),
 | 
						|
			'quantityUnits' => $this->getDatabase()->quantity_units()->orderBy('name', 'COLLATE NOCASE'),
 | 
						|
			'quantityUnitConversionsResolved' => $this->getDatabase()->quantity_unit_conversions_resolved(),
 | 
						|
			'mealplanSections' => $this->getDatabase()->meal_plan_sections()->orderBy('sort_number'),
 | 
						|
			'usedMealplanSections' => $this->getDatabase()->meal_plan_sections()->where("id IN (SELECT section_id FROM meal_plan WHERE $mealPlanWhereTimespan)")->orderBy('sort_number'),
 | 
						|
			'weekRecipe' => $this->getDatabase()->recipes()->where("type = 'mealplan-week' AND name = LTRIM(STRFTIME('%Y-%W', DATE('$start')), '0')")->fetch()
 | 
						|
		]);
 | 
						|
	}
 | 
						|
 | 
						|
	public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | 
						|
	{
 | 
						|
		$recipes = $this->getDatabase()->recipes()->where('type', RecipesService::RECIPE_TYPE_NORMAL)->orderBy('name', 'COLLATE NOCASE');
 | 
						|
		$recipesResolved = $this->getRecipesService()->GetRecipesResolved('recipe_id > 0');
 | 
						|
 | 
						|
		$selectedRecipe = null;
 | 
						|
		if (isset($request->getQueryParams()['recipe']))
 | 
						|
		{
 | 
						|
			$selectedRecipe = $this->getDatabase()->recipes($request->getQueryParams()['recipe']);
 | 
						|
		}
 | 
						|
		else
 | 
						|
		{
 | 
						|
			foreach ($recipes as $recipe)
 | 
						|
			{
 | 
						|
				$selectedRecipe = $recipe;
 | 
						|
				break;
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		$totalCosts = null;
 | 
						|
		$totalCalories = null;
 | 
						|
		if ($selectedRecipe)
 | 
						|
		{
 | 
						|
			$totalCosts = FindObjectInArrayByPropertyValue($recipesResolved, 'recipe_id', $selectedRecipe->id)->costs;
 | 
						|
			$totalCalories = FindObjectInArrayByPropertyValue($recipesResolved, 'recipe_id', $selectedRecipe->id)->calories;
 | 
						|
		}
 | 
						|
 | 
						|
		$viewData = [
 | 
						|
			'recipes' => $recipes,
 | 
						|
			'recipesResolved' => $recipesResolved,
 | 
						|
			'recipePositionsResolved' => $this->getDatabase()->recipes_pos_resolved()->where('recipe_id', $selectedRecipe->id),
 | 
						|
			'selectedRecipe' => $selectedRecipe,
 | 
						|
			'products' => $this->getDatabase()->products(),
 | 
						|
			'quantityUnits' => $this->getDatabase()->quantity_units(),
 | 
						|
			'userfields' => $this->getUserfieldsService()->GetFields('recipes'),
 | 
						|
			'userfieldValues' => $this->getUserfieldsService()->GetAllValues('recipes'),
 | 
						|
			'quantityUnitConversionsResolved' => $this->getDatabase()->quantity_unit_conversions_resolved(),
 | 
						|
			'selectedRecipeTotalCosts' => $totalCosts,
 | 
						|
			'selectedRecipeTotalCalories' => $totalCalories,
 | 
						|
			'mealplanSections' => $this->getDatabase()->meal_plan_sections()->orderBy('sort_number')
 | 
						|
		];
 | 
						|
 | 
						|
		if ($selectedRecipe)
 | 
						|
		{
 | 
						|
			$selectedRecipeSubRecipes = $this->getDatabase()->recipes()->where('id IN (SELECT includes_recipe_id FROM recipes_nestings_resolved WHERE recipe_id = :1 AND includes_recipe_id != :1)', $selectedRecipe->id)->orderBy('name', 'COLLATE NOCASE')->fetchAll();
 | 
						|
 | 
						|
			$includedRecipeIdsAbsolute = [];
 | 
						|
			$includedRecipeIdsAbsolute[] = $selectedRecipe->id;
 | 
						|
			foreach ($selectedRecipeSubRecipes as $subRecipe)
 | 
						|
			{
 | 
						|
				$includedRecipeIdsAbsolute[] = $subRecipe->id;
 | 
						|
			}
 | 
						|
 | 
						|
			// TODO: Why not directly use recipes_pos_resolved for all recipe positions here (parent and child)?
 | 
						|
			// This view already correctly recolves child recipe amounts...
 | 
						|
			$allRecipePositions = [];
 | 
						|
			foreach ($includedRecipeIdsAbsolute as $id)
 | 
						|
			{
 | 
						|
				$allRecipePositions[$id] = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id = :1 AND is_nested_recipe_pos = 0', $id)->orderBy('ingredient_group', 'ASC', 'product_group', 'ASC');
 | 
						|
				foreach ($allRecipePositions[$id] as $pos)
 | 
						|
				{
 | 
						|
					if ($id != $selectedRecipe->id)
 | 
						|
					{
 | 
						|
						$pos2 = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id = :1  AND recipe_pos_id = :2 AND is_nested_recipe_pos = 1', $selectedRecipe->id, $pos->recipe_pos_id)->fetch();
 | 
						|
						$pos->recipe_amount = $pos2->recipe_amount;
 | 
						|
						$pos->missing_amount = $pos2->missing_amount;
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
 | 
						|
			$viewData['selectedRecipeSubRecipes'] = $selectedRecipeSubRecipes;
 | 
						|
			$viewData['includedRecipeIdsAbsolute'] = $includedRecipeIdsAbsolute;
 | 
						|
			$viewData['allRecipePositions'] = $allRecipePositions;
 | 
						|
		}
 | 
						|
 | 
						|
		return $this->renderPage($response, 'recipes', $viewData);
 | 
						|
	}
 | 
						|
 | 
						|
	public function RecipeEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | 
						|
	{
 | 
						|
		$recipeId = $args['recipeId'];
 | 
						|
 | 
						|
		return $this->renderPage($response, 'recipeform', [
 | 
						|
			'recipe' => $this->getDatabase()->recipes($recipeId),
 | 
						|
			'recipePositions' => $this->getDatabase()->recipes_pos()->where('recipe_id', $recipeId),
 | 
						|
			'mode' => $recipeId == 'new' ? 'create' : 'edit',
 | 
						|
			'products' => $this->getDatabase()->products()->orderBy('name', 'COLLATE NOCASE'),
 | 
						|
			'quantityunits' => $this->getDatabase()->quantity_units(),
 | 
						|
			'recipes' => $this->getDatabase()->recipes()->where('type', RecipesService::RECIPE_TYPE_NORMAL)->orderBy('name', 'COLLATE NOCASE'),
 | 
						|
			'recipeNestings' => $this->getDatabase()->recipes_nestings()->where('recipe_id', $recipeId),
 | 
						|
			'userfields' => $this->getUserfieldsService()->GetFields('recipes'),
 | 
						|
			'quantityUnitConversionsResolved' => $this->getDatabase()->quantity_unit_conversions_resolved()
 | 
						|
		]);
 | 
						|
	}
 | 
						|
 | 
						|
	public function RecipePosEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | 
						|
	{
 | 
						|
		if ($args['recipePosId'] == 'new')
 | 
						|
		{
 | 
						|
			return $this->renderPage($response, 'recipeposform', [
 | 
						|
				'mode' => 'create',
 | 
						|
				'recipe' => $this->getDatabase()->recipes($args['recipeId']),
 | 
						|
				'recipePos' => new \stdClass(),
 | 
						|
				'products' => $this->getDatabase()->products()->where('active = 1')->orderBy('name', 'COLLATE NOCASE'),
 | 
						|
				'quantityUnits' => $this->getDatabase()->quantity_units()->orderBy('name', 'COLLATE NOCASE'),
 | 
						|
				'quantityUnitConversionsResolved' => $this->getDatabase()->quantity_unit_conversions_resolved()
 | 
						|
			]);
 | 
						|
		}
 | 
						|
		else
 | 
						|
		{
 | 
						|
			return $this->renderPage($response, 'recipeposform', [
 | 
						|
				'mode' => 'edit',
 | 
						|
				'recipe' => $this->getDatabase()->recipes($args['recipeId']),
 | 
						|
				'recipePos' => $this->getDatabase()->recipes_pos($args['recipePosId']),
 | 
						|
				'products' => $this->getDatabase()->products()->orderBy('name', 'COLLATE NOCASE'),
 | 
						|
				'quantityUnits' => $this->getDatabase()->quantity_units()->orderBy('name', 'COLLATE NOCASE'),
 | 
						|
				'quantityUnitConversionsResolved' => $this->getDatabase()->quantity_unit_conversions_resolved()
 | 
						|
			]);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	public function RecipesSettings(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | 
						|
	{
 | 
						|
		return $this->renderPage($response, 'recipessettings');
 | 
						|
	}
 | 
						|
 | 
						|
	public function MealPlanSectionEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | 
						|
	{
 | 
						|
		if ($args['sectionId'] == 'new')
 | 
						|
		{
 | 
						|
			return $this->renderPage($response, 'mealplansectionform', [
 | 
						|
				'mode' => 'create'
 | 
						|
			]);
 | 
						|
		}
 | 
						|
		else
 | 
						|
		{
 | 
						|
			return $this->renderPage($response, 'mealplansectionform', [
 | 
						|
				'mealplanSection' => $this->getDatabase()->meal_plan_sections($args['sectionId']),
 | 
						|
				'mode' => 'edit'
 | 
						|
			]);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	public function MealPlanSectionsList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | 
						|
	{
 | 
						|
		return $this->renderPage($response, 'mealplansections', [
 | 
						|
			'mealplanSections' => $this->getDatabase()->meal_plan_sections()->where('id > 0')->orderBy('sort_number')
 | 
						|
		]);
 | 
						|
	}
 | 
						|
 | 
						|
	public function RecipeGrocycodeImage(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
 | 
						|
	{
 | 
						|
		$gc = new Grocycode(Grocycode::RECIPE, $args['recipeId']);
 | 
						|
		return $this->ServeGrocycodeImage($request, $response, $gc);
 | 
						|
	}
 | 
						|
}
 |