share === null) { throw new \Exception('Share has not been set yet'); } return $this->share; } protected function getPasswordHash(): ?string { return $this->getShare()->getPassword(); } public function isValidToken(): bool { try { $this->share = $this->shareManager->getShareByToken($this->getToken()); return true; } catch (ShareNotFound $e) { return false; } } protected function isPasswordProtected(): bool { /** @psalm-suppress RedundantConditionGivenDocblockType */ return $this->getShare()->getPassword() !== null; } #[NoAdminRequired] #[PublicPage] public function create(string $token, ?string $file = null, ?string $baseVersionEtag = null, ?string $guestName = null): DataResponse { return $this->apiService->create(null, $file, $baseVersionEtag, $token, $guestName); } #[NoAdminRequired] #[PublicPage] public function close(int $documentId, int $sessionId, string $sessionToken): DataResponse { return $this->apiService->close($documentId, $sessionId, $sessionToken); } #[NoAdminRequired] #[PublicPage] #[RequireDocumentBaseVersionEtag] #[RequireDocumentSession] public function push(int $documentId, int $sessionId, string $sessionToken, int $version, array $steps, string $awareness, string $token, ?int $recoveryAttempt = null): DataResponse { return $this->apiService->push($this->getSession(), $this->getDocument(), $version, $steps, $awareness, $recoveryAttempt, $token); } #[NoAdminRequired] #[PublicPage] #[RequireDocumentBaseVersionEtag] #[RequireDocumentSession] public function sync(string $token, int $version = 0): DataResponse { return $this->apiService->sync($this->getSession(), $this->getDocument(), $version, $token); } #[NoAdminRequired] #[PublicPage] #[RequireDocumentBaseVersionEtag] #[RequireDocumentSession] public function save(string $token, int $version = 0, ?string $autosaveContent = null, ?string $documentState = null, bool $force = false, bool $manualSave = false): DataResponse { return $this->apiService->save($this->getSession(), $this->getDocument(), $version, $autosaveContent, $documentState, $force, $manualSave, $token); } #[NoAdminRequired] #[PublicPage] #[RequireDocumentSession] public function updateSession(string $guestName): DataResponse { return $this->apiService->updateSession($this->getSession(), $guestName); } }