mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
74 lines
1.9 KiB
PHP
74 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Grocy\Controllers;
|
|
|
|
use \Grocy\Services\ChoresService;
|
|
|
|
class ChoresApiController extends BaseApiController
|
|
{
|
|
public function __construct(\Slim\Container $container)
|
|
{
|
|
parent::__construct($container);
|
|
$this->ChoresService = new ChoresService();
|
|
}
|
|
|
|
protected $ChoresService;
|
|
|
|
public function TrackChoreExecution(\Slim\Http\Request $request, \Slim\Http\Response $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']))
|
|
{
|
|
$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(array('chore_execution_id' => $choreExecutionId));
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
|
|
public function ChoreDetails(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args)
|
|
{
|
|
try
|
|
{
|
|
return $this->ApiResponse($this->ChoresService->GetChoreDetails($args['choreId']));
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
|
|
public function Current(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args)
|
|
{
|
|
return $this->ApiResponse($this->ChoresService->GetCurrent());
|
|
}
|
|
|
|
public function UndoChoreExecution(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args)
|
|
{
|
|
try
|
|
{
|
|
$this->ApiResponse($this->ChoresService->UndoChoreExecution($args['executionId']));
|
|
return $this->EmptyApiResponse($response);
|
|
}
|
|
catch (\Exception $ex)
|
|
{
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
}
|
|
}
|
|
}
|