Spaces:
Runtime error
Runtime error
File size: 2,370 Bytes
46252cd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | <?php
declare(strict_types=1);
namespace OpenWA\Resources;
use OpenWA\Http\HttpExecutor;
/**
* Sessions resource — lifecycle management for WhatsApp sessions.
*
* Backed by src/modules/session/session.controller.ts.
*/
class SessionsResource
{
private HttpExecutor $http;
public function __construct(HttpExecutor $http)
{
$this->http = $http;
}
/** @return array<int,array<string,mixed>> */
public function list(): array
{
return $this->http->request('GET', '/api/sessions') ?? [];
}
/** @return array<string,mixed> */
public function get(string $id): array
{
return $this->http->request('GET', "/api/sessions/{$this->http->encodeSegment($id)}");
}
/**
* @param array<string,mixed> $body
* @return array<string,mixed>
*/
public function create(array $body): array
{
return $this->http->request('POST', '/api/sessions', [], $body);
}
public function delete(string $id): void
{
$this->http->request('DELETE', "/api/sessions/{$this->http->encodeSegment($id)}");
}
/** @return array<string,mixed> */
public function start(string $id): array
{
return $this->http->request('POST', "/api/sessions/{$this->http->encodeSegment($id)}/start");
}
/** @return array<string,mixed> */
public function stop(string $id): array
{
return $this->http->request('POST', "/api/sessions/{$this->http->encodeSegment($id)}/stop");
}
/** @return array<string,mixed> */
public function forceKill(string $id): array
{
return $this->http->request('POST', "/api/sessions/{$this->http->encodeSegment($id)}/force-kill");
}
/** @return array<string,mixed> */
public function getQrCode(string $id): array
{
return $this->http->request('GET', "/api/sessions/{$this->http->encodeSegment($id)}/qr");
}
/**
* @param array<string,mixed> $body
* @return array<string,mixed>
*/
public function requestPairingCode(string $id, array $body): array
{
return $this->http->request('POST', "/api/sessions/{$this->http->encodeSegment($id)}/pairing-code", [], $body);
}
/** @return array<string,mixed> */
public function stats(): array
{
return $this->http->request('GET', '/api/sessions/stats/overview');
}
}
|