mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
33 lines
972 B
PHP
33 lines
972 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Repositories;
|
|
use Chandler\Database\DatabaseConnection;
|
|
use openvk\Web\Models\Entities\PasswordReset;
|
|
use openvk\Web\Models\Entities\User;
|
|
use Nette\Database\Table\ActiveRow;
|
|
|
|
class Restores
|
|
{
|
|
private $context;
|
|
private $restores;
|
|
|
|
function __construct()
|
|
{
|
|
$this->context = DatabaseConnection::i()->getContext();
|
|
$this->restores = $this->context->table("password_resets");
|
|
}
|
|
|
|
function toPasswordReset(?ActiveRow $ar): ?PasswordReset
|
|
{
|
|
return is_null($ar) ? NULL : new PasswordReset($ar);
|
|
}
|
|
|
|
function getByToken(string $token): ?PasswordReset
|
|
{
|
|
return $this->toPasswordReset($this->restores->where("key", $token)->fetch());
|
|
}
|
|
|
|
function getLatestByUser(User $user): ?PasswordReset
|
|
{
|
|
return $this->toPasswordReset($this->restores->where("profile", $user->getId())->order("timestamp DESC")->fetch());
|
|
}
|
|
}
|