mirror of
https://github.com/grocy/grocy.git
synced 2025-04-28 17:23:56 +00:00
69 lines
1.9 KiB
PHP
69 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Grocy\Controllers;
|
|
|
|
use \Grocy\Services\RecipesService;
|
|
|
|
class RecipesApiController extends BaseApiController
|
|
{
|
|
public function __construct(\DI\Container $container)
|
|
{
|
|
parent::__construct($container);
|
|
$this->RecipesService = new RecipesService();
|
|
}
|
|
|
|
protected $RecipesService;
|
|
|
|
public function AddNotFulfilledProductsToShoppingList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
$requestBody = $request->getParsedBody();
|
|
$excludedProductIds = null;
|
|
|
|
if ($requestBody !== null && array_key_exists('excludedProductIds', $requestBody))
|
|
{
|
|
$excludedProductIds = $requestBody['excludedProductIds'];
|
|
}
|
|
|
|
$this->RecipesService->AddNotFulfilledProductsToShoppingList($args['recipeId'], $excludedProductIds);
|
|
return $this->EmptyApiResponse($response);
|
|
}
|
|
|
|
public function ConsumeRecipe(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
try
|
|
{
|
|
$this->RecipesService->ConsumeRecipe($args['recipeId']);
|
|
return $this->EmptyApiResponse($response);
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
|
|
public function GetRecipeFulfillment(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
try
|
|
{
|
|
if(!isset($args['recipeId']))
|
|
{
|
|
return $this->ApiResponse($response, $this->RecipesService->GetRecipesResolved());
|
|
}
|
|
|
|
$recipeResolved = FindObjectInArrayByPropertyValue($this->RecipesService->GetRecipesResolved(), 'recipe_id', $args['recipeId']);
|
|
if(!$recipeResolved)
|
|
{
|
|
throw new \Exception('Recipe does not exist');
|
|
}
|
|
else
|
|
{
|
|
return $this->ApiResponse($response, $recipeResolved);
|
|
}
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
}
|