2018-04-11 19:49:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Grocy\Controllers;
|
|
|
|
|
2020-08-29 12:05:32 +02:00
|
|
|
use Grocy\Controllers\Users\User;
|
2021-07-13 19:29:23 +02:00
|
|
|
use Grocy\Helpers\WebhookRunner;
|
|
|
|
use Grocy\Helpers\Grocycode;
|
2023-05-13 14:43:51 +02:00
|
|
|
use Psr\Http\Message\ResponseInterface as Response;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
2020-08-29 12:05:32 +02:00
|
|
|
|
2018-04-11 19:49:35 +02:00
|
|
|
class BatteriesApiController extends BaseApiController
|
|
|
|
{
|
2023-05-13 14:43:51 +02:00
|
|
|
public function BatteryDetails(Request $request, Response $response, array $args)
|
2018-04-11 19:49:35 +02:00
|
|
|
{
|
2020-08-31 20:40:31 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
return $this->ApiResponse($response, $this->getBatteriesService()->GetBatteryDetails($args['batteryId']));
|
|
|
|
}
|
|
|
|
catch (\Exception $ex)
|
|
|
|
{
|
|
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-13 14:43:51 +02:00
|
|
|
public function Current(Request $request, Response $response, array $args)
|
2020-08-31 20:40:31 +02:00
|
|
|
{
|
2020-09-01 19:59:40 +02:00
|
|
|
return $this->FilteredApiResponse($response, $this->getBatteriesService()->GetCurrent(), $request->getQueryParams());
|
2018-04-11 19:49:35 +02:00
|
|
|
}
|
|
|
|
|
2023-05-13 14:43:51 +02:00
|
|
|
public function TrackChargeCycle(Request $request, Response $response, array $args)
|
2018-04-11 19:49:35 +02:00
|
|
|
{
|
2020-08-29 18:31:28 +02:00
|
|
|
User::checkPermission($request, User::PERMISSION_BATTERIES_TRACK_CHARGE_CYCLE);
|
2020-08-29 12:05:32 +02:00
|
|
|
|
2020-10-14 22:49:29 +02:00
|
|
|
$requestBody = $this->GetParsedAndFilteredRequestBody($request);
|
2018-04-11 19:49:35 +02:00
|
|
|
|
2018-04-22 14:25:08 +02:00
|
|
|
try
|
|
|
|
{
|
2019-01-19 14:51:51 +01:00
|
|
|
$trackedTime = date('Y-m-d H:i:s');
|
|
|
|
if (array_key_exists('tracked_time', $requestBody) && IsIsoDateTime($requestBody['tracked_time']))
|
|
|
|
{
|
|
|
|
$trackedTime = $requestBody['tracked_time'];
|
|
|
|
}
|
|
|
|
|
2020-03-01 23:47:47 +07:00
|
|
|
$chargeCycleId = $this->getBatteriesService()->TrackChargeCycle($args['batteryId'], $trackedTime);
|
|
|
|
return $this->ApiResponse($response, $this->getDatabase()->battery_charge_cycles($chargeCycleId));
|
2018-04-22 14:25:08 +02:00
|
|
|
}
|
|
|
|
catch (\Exception $ex)
|
|
|
|
{
|
2019-01-19 14:51:51 +01:00
|
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
2018-04-22 14:25:08 +02:00
|
|
|
}
|
2018-08-04 15:44:58 +02:00
|
|
|
}
|
2018-10-27 10:55:30 +02:00
|
|
|
|
2023-05-13 14:43:51 +02:00
|
|
|
public function UndoChargeCycle(Request $request, Response $response, array $args)
|
2018-10-27 10:55:30 +02:00
|
|
|
{
|
2020-08-29 18:31:28 +02:00
|
|
|
User::checkPermission($request, User::PERMISSION_BATTERIES_UNDO_CHARGE_CYCLE);
|
2020-08-29 12:05:32 +02:00
|
|
|
|
2020-08-29 16:41:27 +02:00
|
|
|
try
|
2018-10-27 10:55:30 +02:00
|
|
|
{
|
2020-03-01 23:47:47 +07:00
|
|
|
$this->ApiResponse($response, $this->getBatteriesService()->UndoChargeCycle($args['chargeCycleId']));
|
2019-01-19 14:51:51 +01:00
|
|
|
return $this->EmptyApiResponse($response);
|
2018-10-27 10:55:30 +02:00
|
|
|
}
|
|
|
|
catch (\Exception $ex)
|
|
|
|
{
|
2019-01-19 14:51:51 +01:00
|
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
2018-10-27 10:55:30 +02:00
|
|
|
}
|
2020-08-31 20:40:31 +02:00
|
|
|
}
|
|
|
|
|
2023-05-13 14:43:51 +02:00
|
|
|
public function BatteryPrintLabel(Request $request, Response $response, array $args)
|
2021-07-13 19:29:23 +02:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$battery = $this->getDatabase()->batteries()->where('id', $args['batteryId'])->fetch();
|
|
|
|
|
|
|
|
$webhookData = array_merge([
|
|
|
|
'battery' => $battery->name,
|
|
|
|
'grocycode' => (string)(new Grocycode(Grocycode::BATTERY, $args['batteryId'])),
|
|
|
|
], GROCY_LABEL_PRINTER_PARAMS);
|
|
|
|
|
|
|
|
if (GROCY_LABEL_PRINTER_RUN_SERVER)
|
|
|
|
{
|
|
|
|
(new WebhookRunner())->run(GROCY_LABEL_PRINTER_WEBHOOK, $webhookData, GROCY_LABEL_PRINTER_HOOK_JSON);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->ApiResponse($response, $webhookData);
|
|
|
|
}
|
|
|
|
catch (\Exception $ex)
|
|
|
|
{
|
|
|
|
return $this->GenericErrorResponse($response, $ex->getMessage());
|
|
|
|
}
|
|
|
|
}
|
2018-04-11 19:49:35 +02:00
|
|
|
}
|