Simplified RpcRequest constructor to accept StandardMethods & string as a input for the method parameter
This commit is contained in:
parent
aa445c7bdd
commit
9e02f0c29b
2 changed files with 47 additions and 41 deletions
|
@ -5,6 +5,7 @@
|
||||||
use InvalidArgumentException;
|
use InvalidArgumentException;
|
||||||
use Socialbox\Classes\Logger;
|
use Socialbox\Classes\Logger;
|
||||||
use Socialbox\Enums\StandardError;
|
use Socialbox\Enums\StandardError;
|
||||||
|
use Socialbox\Enums\StandardMethods;
|
||||||
use Socialbox\Exceptions\StandardException;
|
use Socialbox\Exceptions\StandardException;
|
||||||
use Socialbox\Interfaces\SerializableInterface;
|
use Socialbox\Interfaces\SerializableInterface;
|
||||||
|
|
||||||
|
@ -17,12 +18,17 @@
|
||||||
/**
|
/**
|
||||||
* Constructs the object from an array of data.
|
* Constructs the object from an array of data.
|
||||||
*
|
*
|
||||||
* @param string $method The method of the request.
|
* @param string|StandardMethods $method The method of the request.
|
||||||
* @param string|null $id The ID of the request.
|
* @param string|null $id The ID of the request.
|
||||||
* @param array|null $parameters The parameters of the request.
|
* @param array|null $parameters The parameters of the request.
|
||||||
*/
|
*/
|
||||||
public function __construct(string $method, ?string $id, ?array $parameters=null)
|
public function __construct(string|StandardMethods $method, ?string $id, ?array $parameters=null)
|
||||||
{
|
{
|
||||||
|
if($method instanceof StandardMethods)
|
||||||
|
{
|
||||||
|
$method = $method->value;
|
||||||
|
}
|
||||||
|
|
||||||
$this->method = $method;
|
$this->method = $method;
|
||||||
$this->parameters = $parameters;
|
$this->parameters = $parameters;
|
||||||
$this->id = $id;
|
$this->id = $id;
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
public function ping(): true
|
public function ping(): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::PING->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::PING, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
public function getSessionState(): SessionState
|
public function getSessionState(): SessionState
|
||||||
{
|
{
|
||||||
return SessionState::fromArray($this->sendRequest(
|
return SessionState::fromArray($this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::GET_SESSION_STATE->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::GET_SESSION_STATE, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult());
|
)->getResponse()->getResult());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
public function getAllowedMethods(): array
|
public function getAllowedMethods(): array
|
||||||
{
|
{
|
||||||
return $this->sendRequest(
|
return $this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::GET_ALLOWED_METHODS->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::GET_ALLOWED_METHODS, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
public function getPrivacyPolicy(): ServerDocument
|
public function getPrivacyPolicy(): ServerDocument
|
||||||
{
|
{
|
||||||
return ServerDocument::fromArray($this->sendRequest(
|
return ServerDocument::fromArray($this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::GET_PRIVACY_POLICY->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::GET_PRIVACY_POLICY, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult());
|
)->getResponse()->getResult());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
public function acceptPrivacyPolicy(): true
|
public function acceptPrivacyPolicy(): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::ACCEPT_PRIVACY_POLICY->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::ACCEPT_PRIVACY_POLICY, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
public function getTermsOfService(): ServerDocument
|
public function getTermsOfService(): ServerDocument
|
||||||
{
|
{
|
||||||
return ServerDocument::fromArray($this->sendRequest(
|
return ServerDocument::fromArray($this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::GET_TERMS_OF_SERVICE->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::GET_TERMS_OF_SERVICE, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult());
|
)->getResponse()->getResult());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,7 +124,7 @@
|
||||||
public function acceptTermsOfService(): true
|
public function acceptTermsOfService(): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::ACCEPT_TERMS_OF_SERVICE->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::ACCEPT_TERMS_OF_SERVICE, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -137,7 +137,7 @@
|
||||||
public function getCommunityGuidelines(): ServerDocument
|
public function getCommunityGuidelines(): ServerDocument
|
||||||
{
|
{
|
||||||
return ServerDocument::fromArray($this->sendRequest(
|
return ServerDocument::fromArray($this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::GET_COMMUNITY_GUIDELINES->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::GET_COMMUNITY_GUIDELINES, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult());
|
)->getResponse()->getResult());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@
|
||||||
public function acceptCommunityGuidelines(): true
|
public function acceptCommunityGuidelines(): true
|
||||||
{
|
{
|
||||||
return $this->sendRequest(
|
return $this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::ACCEPT_COMMUNITY_GUIDELINES->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::ACCEPT_COMMUNITY_GUIDELINES, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@
|
||||||
public function verificationEmail(string $emailAddress): true
|
public function verificationEmail(string $emailAddress): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_EMAIL->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_EMAIL, Utilities::randomCrc32(), [
|
||||||
'email_address' => $emailAddress
|
'email_address' => $emailAddress
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -180,7 +180,7 @@
|
||||||
public function verificationAnswerEmail(string $verificationCode): true
|
public function verificationAnswerEmail(string $verificationCode): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_EMAIL->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_EMAIL, Utilities::randomCrc32(), [
|
||||||
'verification_code' => $verificationCode
|
'verification_code' => $verificationCode
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -196,7 +196,7 @@
|
||||||
public function verificationSms(string $phoneNumber): true
|
public function verificationSms(string $phoneNumber): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_SMS->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_SMS, Utilities::randomCrc32(), [
|
||||||
'phone_number' => $phoneNumber
|
'phone_number' => $phoneNumber
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -212,7 +212,7 @@
|
||||||
public function verificationAnswerSms(string $verificationCode): true
|
public function verificationAnswerSms(string $verificationCode): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_SMS->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_SMS, Utilities::randomCrc32(), [
|
||||||
'verification_code' => $verificationCode
|
'verification_code' => $verificationCode
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -228,7 +228,7 @@
|
||||||
public function verificationPhone(string $phoneNumber): true
|
public function verificationPhone(string $phoneNumber): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_PHONE_CALL->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_PHONE_CALL, Utilities::randomCrc32(), [
|
||||||
'phone_number' => $phoneNumber
|
'phone_number' => $phoneNumber
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -244,7 +244,7 @@
|
||||||
public function verificationAnswerPhone(string $verificationCode): true
|
public function verificationAnswerPhone(string $verificationCode): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_PHONE_CALL->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_PHONE_CALL, Utilities::randomCrc32(), [
|
||||||
'verification_code' => $verificationCode
|
'verification_code' => $verificationCode
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -259,7 +259,7 @@
|
||||||
public function verificationGetImageCaptcha(): string
|
public function verificationGetImageCaptcha(): string
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_GET_IMAGE_CAPTCHA->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::VERIFICATION_GET_IMAGE_CAPTCHA, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -273,7 +273,7 @@
|
||||||
public function verificationAnswerImageCaptcha(string $verificationCode): true
|
public function verificationAnswerImageCaptcha(string $verificationCode): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_IMAGE_CAPTCHA->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_IMAGE_CAPTCHA, Utilities::randomCrc32(), [
|
||||||
'verification_code' => $verificationCode
|
'verification_code' => $verificationCode
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -288,7 +288,7 @@
|
||||||
public function verificationGetTextCaptcha(): string
|
public function verificationGetTextCaptcha(): string
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_GET_TEXT_CAPTCHA->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::VERIFICATION_GET_TEXT_CAPTCHA, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -302,7 +302,7 @@
|
||||||
public function verificationAnswerTextCaptcha(string $verificationCode): true
|
public function verificationAnswerTextCaptcha(string $verificationCode): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_TEXT_CAPTCHA->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_TEXT_CAPTCHA, Utilities::randomCrc32(), [
|
||||||
'verification_code' => $verificationCode
|
'verification_code' => $verificationCode
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -317,7 +317,7 @@
|
||||||
public function verificationGetExternalUrl(): string
|
public function verificationGetExternalUrl(): string
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_GET_EXTERNAL_URL->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::VERIFICATION_GET_EXTERNAL_URL, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@
|
||||||
public function verificationAnswerExternalUrl(string $verificationCode): true
|
public function verificationAnswerExternalUrl(string $verificationCode): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_EXTERNAL_URL->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_ANSWER_EXTERNAL_URL, Utilities::randomCrc32(), [
|
||||||
'verification_code' => $verificationCode
|
'verification_code' => $verificationCode
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -358,7 +358,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_PASSWORD_AUTHENTICATION->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_PASSWORD_AUTHENTICATION, Utilities::randomCrc32(), [
|
||||||
'password' => $password
|
'password' => $password
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -374,7 +374,7 @@
|
||||||
public function verificationOtpAuthentication(string $code): bool
|
public function verificationOtpAuthentication(string $code): bool
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::VERIFICATION_OTP_AUTHENTICATION->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::VERIFICATION_OTP_AUTHENTICATION, Utilities::randomCrc32(), [
|
||||||
'code' => $code
|
'code' => $code
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -401,7 +401,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_SET_PASSWORD->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_SET_PASSWORD, Utilities::randomCrc32(), [
|
||||||
'password' => $password
|
'password' => $password
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -417,7 +417,7 @@
|
||||||
public function settingsDeletePassword(string $password): true
|
public function settingsDeletePassword(string $password): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_DELETE_PASSWORD->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_DELETE_PASSWORD, Utilities::randomCrc32(), [
|
||||||
'password' => $password
|
'password' => $password
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -434,7 +434,7 @@
|
||||||
public function settingsUpdatePassword(string $password, string $existingPassword): bool
|
public function settingsUpdatePassword(string $password, string $existingPassword): bool
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_UPDATE_PASSWORD->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_UPDATE_PASSWORD, Utilities::randomCrc32(), [
|
||||||
'password' => $password,
|
'password' => $password,
|
||||||
'existing_password' => $existingPassword
|
'existing_password' => $existingPassword
|
||||||
])
|
])
|
||||||
|
@ -450,7 +450,7 @@
|
||||||
public function settingsSetOtp(string $otp, bool $hash=true): true
|
public function settingsSetOtp(string $otp, bool $hash=true): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_SET_OTP->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_SET_OTP, Utilities::randomCrc32(), [
|
||||||
'otp' => $hash ? hash('sha512', $otp) : $otp
|
'otp' => $hash ? hash('sha512', $otp) : $otp
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -477,7 +477,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_DELETE_OTP->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_DELETE_OTP, Utilities::randomCrc32(), [
|
||||||
'password' => $password
|
'password' => $password
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -493,7 +493,7 @@
|
||||||
public function settingsSetDisplayName(string $displayName): true
|
public function settingsSetDisplayName(string $displayName): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_SET_DISPLAY_NAME->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_SET_DISPLAY_NAME, Utilities::randomCrc32(), [
|
||||||
'name' => $displayName
|
'name' => $displayName
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -505,7 +505,7 @@
|
||||||
public function settingsDeleteDisplayName(): true
|
public function settingsDeleteDisplayName(): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_DELETE_DISPLAY_NAME->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::SETTINGS_DELETE_DISPLAY_NAME, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -519,7 +519,7 @@
|
||||||
public function settingsSetDisplayPicture(string $fileId): true
|
public function settingsSetDisplayPicture(string $fileId): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_SET_DISPLAY_PICTURE->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_SET_DISPLAY_PICTURE, Utilities::randomCrc32(), [
|
||||||
'file_id' => $fileId
|
'file_id' => $fileId
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -535,7 +535,7 @@
|
||||||
public function settingsSetEmail(string $emailAddress): true
|
public function settingsSetEmail(string $emailAddress): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_SET_EMAIL->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_SET_EMAIL, Utilities::randomCrc32(), [
|
||||||
'email_address' => $emailAddress
|
'email_address' => $emailAddress
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -550,7 +550,7 @@
|
||||||
public function settingsDeleteEmail(): true
|
public function settingsDeleteEmail(): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_DELETE_EMAIL->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::SETTINGS_DELETE_EMAIL, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -564,7 +564,7 @@
|
||||||
public function settingsSetPhone(string $phoneNumber): true
|
public function settingsSetPhone(string $phoneNumber): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_SET_DISPLAY_NAME->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_SET_DISPLAY_NAME, Utilities::randomCrc32(), [
|
||||||
'phone_number' => $phoneNumber
|
'phone_number' => $phoneNumber
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
|
@ -576,7 +576,7 @@
|
||||||
public function settingsDeletePhone(): true
|
public function settingsDeletePhone(): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_DELETE_PHONE->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::SETTINGS_DELETE_PHONE, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -592,7 +592,7 @@
|
||||||
public function settingsSetBirthday(int $year, int $month, int $day): true
|
public function settingsSetBirthday(int $year, int $month, int $day): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_SET_BIRTHDAY->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::SETTINGS_SET_BIRTHDAY, Utilities::randomCrc32(), [
|
||||||
'year' => $year,
|
'year' => $year,
|
||||||
'month' => $month,
|
'month' => $month,
|
||||||
'day' => $day
|
'day' => $day
|
||||||
|
@ -609,7 +609,7 @@
|
||||||
public function deleteBirthday(): true
|
public function deleteBirthday(): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::SETTINGS_DELETE_BIRTHDAY->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::SETTINGS_DELETE_BIRTHDAY, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -624,7 +624,7 @@
|
||||||
public function authenticate(): true
|
public function authenticate(): true
|
||||||
{
|
{
|
||||||
return (bool)$this->sendRequest(
|
return (bool)$this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::AUTHENTICATE->value, Utilities::randomCrc32())
|
new RpcRequest(StandardMethods::AUTHENTICATE, Utilities::randomCrc32())
|
||||||
)->getResponse()->getResult();
|
)->getResponse()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -643,7 +643,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
return Peer::fromArray($this->sendRequest(
|
return Peer::fromArray($this->sendRequest(
|
||||||
new RpcRequest(StandardMethods::RESOLVE_PEER->value, Utilities::randomCrc32(), [
|
new RpcRequest(StandardMethods::RESOLVE_PEER, Utilities::randomCrc32(), [
|
||||||
'peer' => $peerAddress
|
'peer' => $peerAddress
|
||||||
])
|
])
|
||||||
)->getResponse()->getResult());
|
)->getResponse()->getResult());
|
||||||
|
|
Loading…
Add table
Reference in a new issue