nextcloud/lib/private/DirectEditing/Token.php
Carl Schwan 7b6078875b
refactor: Run rector on lib/private
Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
2026-02-06 13:50:18 +01:00

53 lines
1.2 KiB
PHP

<?php
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\DirectEditing;
use OCP\DirectEditing\IToken;
use OCP\Files\File;
class Token implements IToken {
public function __construct(
private Manager $manager,
private $data,
) {
}
public function extend(): void {
$this->manager->refreshToken($this->data['token']);
}
public function invalidate(): void {
$this->manager->invalidateToken($this->data['token']);
}
public function getFile(): File {
if ($this->data['share_id'] !== null) {
return $this->manager->getShareForToken($this->data['share_id']);
}
return $this->manager->getFileForToken($this->data['user_id'], $this->data['file_id'], $this->data['file_path']);
}
public function getToken(): string {
return $this->data['token'];
}
public function useTokenScope(): void {
$this->manager->invokeTokenScope($this->data['user_id']);
}
public function hasBeenAccessed(): bool {
return (bool)$this->data['accessed'];
}
public function getEditor(): string {
return $this->data['editor_id'];
}
public function getUser(): string {
return $this->data['user_id'];
}
}