You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextcloud/lib/private/DirectEditing/Token.php

56 lines
1.3 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 {
/** @var Manager */
private $manager;
private $data;
public function __construct(Manager $manager, $data) {
$this->manager = $manager;
$this->data = $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'];
}
}