2018-09-10 15:40:35 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2018 Robin Appelman <robin@icewind.nl>
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
|
|
*
|
2018-09-10 15:40:35 +03:00
|
|
|
* @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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-09-10 15:40:35 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_Trashbin\Trash;
|
|
|
|
|
|
|
|
use OCP\Files\FileInfo;
|
|
|
|
use OCP\IUser;
|
|
|
|
|
|
|
|
class TrashItem implements ITrashItem {
|
|
|
|
/** @var ITrashBackend */
|
|
|
|
private $backend;
|
|
|
|
/** @var string */
|
|
|
|
private $orignalLocation;
|
|
|
|
/** @var int */
|
|
|
|
private $deletedTime;
|
|
|
|
/** @var string */
|
|
|
|
private $trashPath;
|
|
|
|
/** @var FileInfo */
|
|
|
|
private $fileInfo;
|
2018-10-17 16:21:09 +03:00
|
|
|
/** @var IUser */
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
ITrashBackend $backend,
|
|
|
|
string $originalLocation,
|
|
|
|
int $deletedTime,
|
|
|
|
string $trashPath,
|
|
|
|
FileInfo $fileInfo,
|
|
|
|
IUser $user
|
|
|
|
) {
|
2018-09-10 15:40:35 +03:00
|
|
|
$this->backend = $backend;
|
|
|
|
$this->orignalLocation = $originalLocation;
|
|
|
|
$this->deletedTime = $deletedTime;
|
|
|
|
$this->trashPath = $trashPath;
|
|
|
|
$this->fileInfo = $fileInfo;
|
2018-10-17 16:21:09 +03:00
|
|
|
$this->user = $user;
|
2018-09-10 15:40:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getTrashBackend(): ITrashBackend {
|
|
|
|
return $this->backend;
|
|
|
|
}
|
|
|
|
|
2018-10-17 15:58:02 +03:00
|
|
|
public function getOriginalLocation(): string {
|
2018-09-10 15:40:35 +03:00
|
|
|
return $this->orignalLocation;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDeletedTime(): int {
|
|
|
|
return $this->deletedTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTrashPath(): string {
|
|
|
|
return $this->trashPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isRootItem(): bool {
|
|
|
|
return substr_count($this->getTrashPath(), '/') === 1;
|
|
|
|
}
|
|
|
|
|
2018-10-17 16:21:09 +03:00
|
|
|
public function getUser(): IUser {
|
|
|
|
return $this->user;
|
|
|
|
}
|
|
|
|
|
2018-09-10 15:40:35 +03:00
|
|
|
public function getEtag() {
|
|
|
|
return $this->fileInfo->getEtag();
|
|
|
|
}
|
|
|
|
|
2019-02-27 17:35:44 +03:00
|
|
|
public function getSize($includeMounts = true) {
|
|
|
|
return $this->fileInfo->getSize($includeMounts);
|
2018-09-10 15:40:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
2019-02-27 17:35:44 +03:00
|
|
|
|
2018-09-10 15:40:35 +03:00
|
|
|
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();
|
|
|
|
}
|
2018-10-29 17:23:33 +03:00
|
|
|
|
|
|
|
public function getExtension(): string {
|
|
|
|
return $this->fileInfo->getExtension();
|
|
|
|
}
|
2019-10-02 17:36:53 +03:00
|
|
|
|
|
|
|
public function getTitle(): string {
|
|
|
|
return $this->getOriginalLocation();
|
|
|
|
}
|
2019-10-29 15:49:41 +03:00
|
|
|
|
|
|
|
public function getCreationTime(): int {
|
|
|
|
return $this->fileInfo->getCreationTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUploadTime(): int {
|
|
|
|
return $this->fileInfo->getUploadTime();
|
|
|
|
}
|
2018-09-10 15:40:35 +03:00
|
|
|
}
|