123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <?php
- /**
- * @copyright Copyright (c) 2018 Robin Appelman <robin@icewind.nl>
- *
- * @author Maxence Lange <maxence@artificial-owl.com>
- * @author Robin Appelman <robin@icewind.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\Files_Trashbin\Trash;
- use OCP\Files\FileInfo;
- use OCP\IUser;
- class TrashItem implements ITrashItem {
- public function __construct(
- private ITrashBackend $backend,
- private string $originalLocation,
- private int $deletedTime,
- private string $trashPath,
- private FileInfo $fileInfo,
- private IUser $user,
- private ?IUser $deletedBy,
- ) {
- }
- public function getTrashBackend(): ITrashBackend {
- return $this->backend;
- }
- public function getOriginalLocation(): string {
- return $this->originalLocation;
- }
- public function getDeletedTime(): int {
- return $this->deletedTime;
- }
- public function getTrashPath(): string {
- return $this->trashPath;
- }
- public function isRootItem(): bool {
- return substr_count($this->getTrashPath(), '/') === 1;
- }
- public function getUser(): IUser {
- return $this->user;
- }
- public function getEtag() {
- return $this->fileInfo->getEtag();
- }
- public function getSize($includeMounts = true) {
- return $this->fileInfo->getSize($includeMounts);
- }
- public function getMtime() {
- return $this->fileInfo->getMtime();
- }
- public function getName() {
- return $this->fileInfo->getName();
- }
- public function getInternalPath() {
- return $this->fileInfo->getInternalPath();
- }
- public function getPath() {
- return $this->fileInfo->getPath();
- }
- public function getMimetype() {
- return $this->fileInfo->getMimetype();
- }
- public function getMimePart() {
- return $this->fileInfo->getMimePart();
- }
- public function getStorage() {
- return $this->fileInfo->getStorage();
- }
- public function getId() {
- return $this->fileInfo->getId();
- }
- public function isEncrypted() {
- return $this->fileInfo->isEncrypted();
- }
- public function getPermissions() {
- return $this->fileInfo->getPermissions();
- }
- public function getType() {
- return $this->fileInfo->getType();
- }
- public function isReadable() {
- return $this->fileInfo->isReadable();
- }
- public function isUpdateable() {
- return $this->fileInfo->isUpdateable();
- }
- public function isCreatable() {
- return $this->fileInfo->isCreatable();
- }
- public function isDeletable() {
- return $this->fileInfo->isDeletable();
- }
- public function isShareable() {
- return $this->fileInfo->isShareable();
- }
- public function isShared() {
- return $this->fileInfo->isShared();
- }
- public function isMounted() {
- return $this->fileInfo->isMounted();
- }
- public function getMountPoint() {
- return $this->fileInfo->getMountPoint();
- }
- public function getOwner() {
- return $this->fileInfo->getOwner();
- }
- public function getChecksum() {
- return $this->fileInfo->getChecksum();
- }
- public function getExtension(): string {
- return $this->fileInfo->getExtension();
- }
- public function getTitle(): string {
- return $this->getOriginalLocation();
- }
- public function getCreationTime(): int {
- return $this->fileInfo->getCreationTime();
- }
- public function getUploadTime(): int {
- return $this->fileInfo->getUploadTime();
- }
- public function getParentId(): int {
- return $this->fileInfo->getParentId();
- }
- public function getDeletedBy(): ?IUser {
- return $this->deletedBy;
- }
- /**
- * @inheritDoc
- * @return array<string, int|string|bool|float|string[]|int[]>
- */
- public function getMetadata(): array {
- return $this->fileInfo->getMetadata();
- }
- }
|