Skip to content
Snippets Groups Projects
Commit 31d2ede1 authored by Jonas Leder's avatar Jonas Leder
Browse files

add service for communication with server

parent d98af217
No related branches found
No related tags found
1 merge request!1Support for version 2
<?php
namespace App\Services;
use Symfony\Component\HttpClient\HttpClient;
use Symfony\Contracts\HttpClient\HttpClientInterface;
class WebResetter
{
public function __construct(
private readonly string $webResetterIp,
private readonly string $webResetterApikey,
private readonly HttpClientInterface $httpClient
)
{
}
public function pressPowerButton(int $deviceID, bool $shortPress = true): bool|string
{
$response = $this->httpClient->request(
'POST',
'http://' . $this->webResetterIp . '/button/power',
[
'json' => [
'deviceID' => $deviceID,
'shortPress' => $shortPress,
'apikey' => $this->webResetterApikey
]
]
);
if($response->getStatusCode() != 200) {
return $response->getContent();
}
return true;
}
public function pressResetButton(int $deviceID, bool $shortPress = true): bool|string
{
$response = $this->httpClient->request(
'POST',
'http://' . $this->webResetterIp . '/button/reset',
[
'json' => [
'deviceID' => $deviceID,
'shortPress' => $shortPress,
'apikey' => $this->webResetterApikey
]
]
);
if($response->getStatusCode() != 200) {
return $response->getContent();
}
return true;
}
public function locateLED(int $deviceID, bool $powerOn = true): bool|string
{
$response = $this->httpClient->request(
'POST',
'http://' . $this->webResetterIp . '/locate',
[
'json' => [
'deviceID' => $deviceID,
'power' => $powerOn,
'apikey' => $this->webResetterApikey
]
]
);
if($response->getStatusCode() != 200) {
return $response->getContent();
}
return true;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment