TimeBasedTwoFactorToken::class, "fido" => KeyBasedTwoFactorToken::class, ]; #[ExtendingEnum(self::TWO_FACTOR_TOKEN_TYPES)] private string $type; private bool $confirmed; private bool $authenticated; #[MaxLength(512)] private ?string $data; public function __construct(string $type, ?int $id = null, bool $confirmed = false) { parent::__construct($id); $this->id = $id; $this->type = $type; $this->confirmed = $confirmed; $this->authenticated = $_SESSION["2faAuthenticated"] ?? false; $this->data = null; } public abstract function getData(): string; protected abstract function readData(string $data); public function preInsert(array &$row) { $row["data"] = $this->getData(); } public function postFetch(SQL $sql, array $row) { parent::postFetch($sql, $row); $this->readData($row["data"]); } public function authenticate() { $this->authenticated = true; $_SESSION["2faAuthenticated"] = true; } public function getType(): string { return $this->type; } public function isConfirmed(): bool { return $this->confirmed; } public function isAuthenticated(): bool { return $this->authenticated; } public function confirm(SQL $sql): bool { $this->confirmed = true; return $this->save($sql) !== false; } }