mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
36 lines
803 B
PHP
36 lines
803 B
PHP
|
<?php declare(strict_types=1);
|
||
|
namespace openvk\VKAPI\Handlers;
|
||
|
use openvk\VKAPI\Exceptions\APIErrorException;
|
||
|
use openvk\Web\Models\Entities\User;
|
||
|
|
||
|
abstract class VKAPIRequestHandler
|
||
|
{
|
||
|
protected $user;
|
||
|
|
||
|
function __construct(?User $user = NULL)
|
||
|
{
|
||
|
$this->user = $user;
|
||
|
}
|
||
|
|
||
|
protected function fail(int $code, string $message): void
|
||
|
{
|
||
|
throw new APIErrorException($message, $code);
|
||
|
}
|
||
|
|
||
|
protected function getUser(): ?User
|
||
|
{
|
||
|
return $this->user;
|
||
|
}
|
||
|
|
||
|
protected function userAuthorized(): bool
|
||
|
{
|
||
|
return !is_null($this->getUser());
|
||
|
}
|
||
|
|
||
|
protected function requireUser(): void
|
||
|
{
|
||
|
if(!$this->userAuthorized())
|
||
|
$this->fail(5, "User authorization failed: no access_token passed.");
|
||
|
}
|
||
|
}
|