openvk/VKAPI/Handlers/VKAPIRequestHandler.php

36 lines
803 B
PHP
Raw Normal View History

2020-08-12 14:36:18 +03:00
<?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.");
}
}