mirror of
https://github.com/grocy/grocy.git
synced 2025-04-28 17:23:56 +00:00
107 lines
3.0 KiB
PHP
107 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace Grocy\Controllers;
|
|
|
|
use \Grocy\Services\ChoresService;
|
|
|
|
class ChoresApiController extends BaseApiController
|
|
{
|
|
public function __construct(\DI\Container $container)
|
|
{
|
|
parent::__construct($container);
|
|
$this->ChoresService = new ChoresService();
|
|
}
|
|
|
|
protected $ChoresService;
|
|
|
|
public function TrackChoreExecution(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
$requestBody = $request->getParsedBody();
|
|
|
|
try
|
|
{
|
|
$trackedTime = date('Y-m-d H:i:s');
|
|
if (array_key_exists('tracked_time', $requestBody) && (IsIsoDateTime($requestBody['tracked_time']) || IsIsoDate($requestBody['tracked_time'])))
|
|
{
|
|
$trackedTime = $requestBody['tracked_time'];
|
|
}
|
|
|
|
$doneBy = GROCY_USER_ID;
|
|
if (array_key_exists('done_by', $requestBody) && !empty($requestBody['done_by']))
|
|
{
|
|
$doneBy = $requestBody['done_by'];
|
|
}
|
|
|
|
$choreExecutionId = $this->ChoresService->TrackChore($args['choreId'], $trackedTime, $doneBy);
|
|
return $this->ApiResponse($response, $this->Database->chores_log($choreExecutionId));
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
|
|
public function ChoreDetails(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
try
|
|
{
|
|
return $this->ApiResponse($response, $this->ChoresService->GetChoreDetails($args['choreId']));
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
|
|
public function Current(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
return $this->ApiResponse($response, $this->ChoresService->GetCurrent());
|
|
}
|
|
|
|
public function UndoChoreExecution(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
try
|
|
{
|
|
$this->ApiResponse($response, $this->ChoresService->UndoChoreExecution($args['executionId']));
|
|
return $this->EmptyApiResponse($response);
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
|
|
public function CalculateNextExecutionAssignments(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
|
|
{
|
|
try
|
|
{
|
|
$requestBody = $request->getParsedBody();
|
|
|
|
$choreId = null;
|
|
if (array_key_exists('chore_id', $requestBody) && !empty($requestBody['chore_id']) && is_numeric($requestBody['chore_id']))
|
|
{
|
|
$choreId = intval($requestBody['chore_id']);
|
|
}
|
|
|
|
if ($choreId === null)
|
|
{
|
|
$chores = $this->Database->chores();
|
|
foreach ($chores as $chore)
|
|
{
|
|
$this->ChoresService->CalculateNextExecutionAssignment($chore->id);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$this->ChoresService->CalculateNextExecutionAssignment($choreId);
|
|
}
|
|
|
|
return $this->EmptyApiResponse($response);
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
}
|