mirror of
https://github.com/openvk/openvk
synced 2025-02-02 21:15:42 +03:00
Alexander Minkin
6ec54a379d
* feat(lint): add php-cs-fixer for linting Removing previous CODE_STYLE as it was not enforced anyway and using PER-CS 2.0. This is not the reformatting commit. * style: format code according to PER-CS 2.0 with php-cs-fixer * ci(actions): add lint action Resolves #1132.
63 lines
1.3 KiB
PHP
63 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Models\Entities;
|
|
|
|
use openvk\Web\Models\RowModel;
|
|
use openvk\Web\Models\Repositories\Users;
|
|
use Nette\InvalidStateException as ISE;
|
|
|
|
class APIToken extends RowModel
|
|
{
|
|
protected $tableName = "api_tokens";
|
|
|
|
public function getUser(): User
|
|
{
|
|
return (new Users())->get($this->getRecord()->user);
|
|
}
|
|
|
|
public function getSecret(): string
|
|
{
|
|
return $this->getRecord()->secret;
|
|
}
|
|
|
|
public function getFormattedToken(): string
|
|
{
|
|
return $this->getId() . "-" . chunk_split($this->getSecret(), 8, "-") . "jill";
|
|
}
|
|
|
|
public function getPlatform(): ?string
|
|
{
|
|
return $this->getRecord()->platform;
|
|
}
|
|
|
|
public function isRevoked(): bool
|
|
{
|
|
return $this->isDeleted();
|
|
}
|
|
|
|
public function setUser(User $user): void
|
|
{
|
|
$this->stateChanges("user", $user->getId());
|
|
}
|
|
|
|
public function setSecret(string $secret): void
|
|
{
|
|
throw new ISE("Setting secret manually is prohbited");
|
|
}
|
|
|
|
public function revoke(): void
|
|
{
|
|
$this->delete();
|
|
}
|
|
|
|
public function save(?bool $log = false): void
|
|
{
|
|
if (is_null($this->getRecord())) {
|
|
$this->stateChanges("secret", bin2hex(openssl_random_pseudo_bytes(36)));
|
|
}
|
|
|
|
parent::save();
|
|
}
|
|
}
|