mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
78 lines
2.1 KiB
PHP
78 lines
2.1 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
namespace openvk\VKAPI\Handlers;
|
||
|
|
||
|
final class Account extends VKAPIRequestHandler
|
||
|
{
|
||
|
function getProfileInfo(): object
|
||
|
{
|
||
|
$this->requireUser();
|
||
|
|
||
|
return (object) [
|
||
|
"first_name" => $this->getUser()->getFirstName(),
|
||
|
"id" => $this->getUser()->getId(),
|
||
|
"last_name" => $this->getUser()->getLastName(),
|
||
|
"home_town" => $this->getUser()->getHometown(),
|
||
|
"status" => $this->getUser()->getStatus(),
|
||
|
"bdate" => "1.1.1970", // TODO
|
||
|
"bdate_visibility" => 0, // TODO
|
||
|
"phone" => "+420 ** *** 228", // TODO
|
||
|
"relation" => $this->getUser()->getMaritalStatus(),
|
||
|
"sex" => $this->getUser()->isFemale() ? 1 : 2
|
||
|
];
|
||
|
}
|
||
|
|
||
|
function getInfo(): object
|
||
|
{
|
||
|
$this->requireUser();
|
||
|
|
||
|
// Цiй метод є заглушка
|
||
|
|
||
|
return (object) [
|
||
|
"2fa_required" => 0,
|
||
|
"country" => "CZ", // TODO
|
||
|
"eu_user" => false, // TODO
|
||
|
"https_required" => 1,
|
||
|
"intro" => 0,
|
||
|
"community_comments" => false,
|
||
|
"is_live_streaming_enabled" => false,
|
||
|
"is_new_live_streaming_enabled" => false,
|
||
|
"lang" => 1,
|
||
|
"no_wall_replies" => 0,
|
||
|
"own_posts_default" => 0
|
||
|
];
|
||
|
}
|
||
|
|
||
|
function setOnline(): object
|
||
|
{
|
||
|
$this->requireUser();
|
||
|
|
||
|
$this->getUser()->setOnline(time());
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
function setOffline(): object
|
||
|
{
|
||
|
$this->requireUser();
|
||
|
|
||
|
// Цiй метод є заглушка
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
function getAppPermissions(): object
|
||
|
{
|
||
|
return 9355263;
|
||
|
}
|
||
|
|
||
|
function getCounters(string $filter = ""): object
|
||
|
{
|
||
|
return (object) [
|
||
|
"friends" => $this->getUser()->getFollowersCount(),
|
||
|
"notifications" => $this->getUser()->getNotificationsCount()
|
||
|
];
|
||
|
|
||
|
// TODO: Filter
|
||
|
}
|
||
|
}
|