mirror of
https://github.com/jonathan-martz/pocketbase-php-sdk.git
synced 2026-04-03 07:27:42 +00:00
81 lines
1.9 KiB
PHP
81 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Pb;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class Settings
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private string $url;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private static string $token = '';
|
|
|
|
/**
|
|
* @param string $url
|
|
* @param string $token
|
|
*/
|
|
public function __construct(string $url, string $token)
|
|
{
|
|
$this->url = $url;
|
|
self::$token = $token;
|
|
}
|
|
|
|
public function authAsAdmin(string $email, string $password): void
|
|
{
|
|
$bodyParams['identity'] = $email;
|
|
$bodyParams['password'] = $password;
|
|
$output = $this->doRequest($this->url . "/api/admins/auth-with-password", 'POST', $bodyParams);
|
|
self::$token = json_decode($output, true)['token'];
|
|
}
|
|
|
|
/**
|
|
* @param string $recordId
|
|
* @param string $url
|
|
* @param string $method
|
|
* @return bool|string
|
|
*/
|
|
public function doRequest(string $url, string $method, $bodyParams = []): string
|
|
{
|
|
$ch = curl_init();
|
|
|
|
if (self::$token != '') {
|
|
$headers = array(
|
|
'Content-Type:application/json',
|
|
'Authorization: ' . self::$token
|
|
);
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
}
|
|
|
|
if ($bodyParams) {
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $bodyParams);
|
|
}
|
|
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
|
|
$output = curl_exec($ch);
|
|
curl_close($ch);
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function getAll():array
|
|
{
|
|
return json_decode($this->doRequest($this->url . '/api/settings', 'GET', []), true);
|
|
}
|
|
|
|
public function update($bodyParam):array{
|
|
return json_decode($this->doRequest($this->url . '/api/settings', 'PATCH', json_encode($bodyParam)), true);
|
|
}
|
|
}
|