123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OC\Files;
- use OC\Files\Mount\HomeMountPoint;
- use OCA\Files_Sharing\External\Mount;
- use OCA\Files_Sharing\ISharedMountPoint;
- use OCP\Files\Cache\ICacheEntry;
- use OCP\Files\Mount\IMountPoint;
- use OCP\IUser;
- /**
- * @template-implements \ArrayAccess<string,mixed>
- */
- class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess {
- private array|ICacheEntry $data;
- /**
- * @var string
- */
- private $path;
- /**
- * @var \OC\Files\Storage\Storage $storage
- */
- private $storage;
- /**
- * @var string
- */
- private $internalPath;
- /**
- * @var \OCP\Files\Mount\IMountPoint
- */
- private $mount;
- private ?IUser $owner;
- /**
- * @var string[]
- */
- private array $childEtags = [];
- /**
- * @var IMountPoint[]
- */
- private array $subMounts = [];
- private bool $subMountsUsed = false;
- /**
- * The size of the file/folder without any sub mount
- */
- private int|float $rawSize = 0;
- /**
- * @param string|boolean $path
- * @param Storage\Storage $storage
- * @param string $internalPath
- * @param array|ICacheEntry $data
- * @param IMountPoint $mount
- * @param ?IUser $owner
- */
- public function __construct($path, $storage, $internalPath, $data, $mount, $owner = null) {
- $this->path = $path;
- $this->storage = $storage;
- $this->internalPath = $internalPath;
- $this->data = $data;
- $this->mount = $mount;
- $this->owner = $owner;
- if (isset($this->data['unencrypted_size']) && $this->data['unencrypted_size'] !== 0) {
- $this->rawSize = $this->data['unencrypted_size'];
- } else {
- $this->rawSize = $this->data['size'] ?? 0;
- }
- }
- public function offsetSet($offset, $value): void {
- if (is_null($offset)) {
- throw new \TypeError('Null offset not supported');
- }
- $this->data[$offset] = $value;
- }
- public function offsetExists($offset): bool {
- return isset($this->data[$offset]);
- }
- public function offsetUnset($offset): void {
- unset($this->data[$offset]);
- }
- /**
- * @return mixed
- */
- #[\ReturnTypeWillChange]
- public function offsetGet($offset) {
- return match ($offset) {
- 'type' => $this->getType(),
- 'etag' => $this->getEtag(),
- 'size' => $this->getSize(),
- 'mtime' => $this->getMTime(),
- 'permissions' => $this->getPermissions(),
- default => $this->data[$offset] ?? null,
- };
- }
- /**
- * @return string
- */
- public function getPath() {
- return $this->path;
- }
- public function getStorage() {
- return $this->storage;
- }
- /**
- * @return string
- */
- public function getInternalPath() {
- return $this->internalPath;
- }
- /**
- * Get FileInfo ID or null in case of part file
- *
- * @return int|null
- */
- public function getId() {
- return isset($this->data['fileid']) ? (int) $this->data['fileid'] : null;
- }
- /**
- * @return string
- */
- public function getMimetype() {
- return $this->data['mimetype'];
- }
- /**
- * @return string
- */
- public function getMimePart() {
- return $this->data['mimepart'];
- }
- /**
- * @return string
- */
- public function getName() {
- return empty($this->data['name'])
- ? basename($this->getPath())
- : $this->data['name'];
- }
- /**
- * @return string
- */
- public function getEtag() {
- $this->updateEntryfromSubMounts();
- if (count($this->childEtags) > 0) {
- $combinedEtag = $this->data['etag'] . '::' . implode('::', $this->childEtags);
- return md5($combinedEtag);
- } else {
- return $this->data['etag'];
- }
- }
- /**
- * @param bool $includeMounts
- * @return int|float
- */
- public function getSize($includeMounts = true) {
- if ($includeMounts) {
- $this->updateEntryfromSubMounts();
- if ($this->isEncrypted() && isset($this->data['unencrypted_size']) && $this->data['unencrypted_size'] > 0) {
- return $this->data['unencrypted_size'];
- } else {
- return isset($this->data['size']) ? 0 + $this->data['size'] : 0;
- }
- } else {
- return $this->rawSize;
- }
- }
- /**
- * @return int
- */
- public function getMTime() {
- $this->updateEntryfromSubMounts();
- return (int) $this->data['mtime'];
- }
- /**
- * @return bool
- */
- public function isEncrypted() {
- return $this->data['encrypted'] ?? false;
- }
- /**
- * Return the current version used for the HMAC in the encryption app
- */
- public function getEncryptedVersion(): int {
- return isset($this->data['encryptedVersion']) ? (int) $this->data['encryptedVersion'] : 1;
- }
- /**
- * @return int
- */
- public function getPermissions() {
- return (int) $this->data['permissions'];
- }
- /**
- * @return string \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER
- */
- public function getType() {
- if (!isset($this->data['type'])) {
- $this->data['type'] = ($this->getMimetype() === self::MIMETYPE_FOLDER) ? self::TYPE_FOLDER : self::TYPE_FILE;
- }
- return $this->data['type'];
- }
- public function getData() {
- return $this->data;
- }
- /**
- * @param int $permissions
- * @return bool
- */
- protected function checkPermissions($permissions) {
- return ($this->getPermissions() & $permissions) === $permissions;
- }
- /**
- * @return bool
- */
- public function isReadable() {
- return $this->checkPermissions(\OCP\Constants::PERMISSION_READ);
- }
- /**
- * @return bool
- */
- public function isUpdateable() {
- return $this->checkPermissions(\OCP\Constants::PERMISSION_UPDATE);
- }
- /**
- * Check whether new files or folders can be created inside this folder
- *
- * @return bool
- */
- public function isCreatable() {
- return $this->checkPermissions(\OCP\Constants::PERMISSION_CREATE);
- }
- /**
- * @return bool
- */
- public function isDeletable() {
- return $this->checkPermissions(\OCP\Constants::PERMISSION_DELETE);
- }
- /**
- * @return bool
- */
- public function isShareable() {
- return $this->checkPermissions(\OCP\Constants::PERMISSION_SHARE);
- }
- /**
- * Check if a file or folder is shared
- *
- * @return bool
- */
- public function isShared() {
- return $this->mount instanceof ISharedMountPoint;
- }
- public function isMounted() {
- $isHome = $this->mount instanceof HomeMountPoint;
- return !$isHome && !$this->isShared();
- }
- /**
- * Get the mountpoint the file belongs to
- *
- * @return \OCP\Files\Mount\IMountPoint
- */
- public function getMountPoint() {
- return $this->mount;
- }
- /**
- * Get the owner of the file
- *
- * @return ?IUser
- */
- public function getOwner() {
- return $this->owner;
- }
- /**
- * @param IMountPoint[] $mounts
- */
- public function setSubMounts(array $mounts) {
- $this->subMounts = $mounts;
- }
- private function updateEntryfromSubMounts(): void {
- if ($this->subMountsUsed) {
- return;
- }
- $this->subMountsUsed = true;
- foreach ($this->subMounts as $mount) {
- $subStorage = $mount->getStorage();
- if ($subStorage) {
- $subCache = $subStorage->getCache('');
- $rootEntry = $subCache->get('');
- $this->addSubEntry($rootEntry, $mount->getMountPoint());
- }
- }
- }
- /**
- * Add a cache entry which is the child of this folder
- *
- * Sets the size, etag and size to for cross-storage childs
- *
- * @param array|ICacheEntry $data cache entry for the child
- * @param string $entryPath full path of the child entry
- */
- public function addSubEntry($data, $entryPath) {
- if (!$data) {
- return;
- }
- $hasUnencryptedSize = isset($data['unencrypted_size']) && $data['unencrypted_size'] > 0;
- if ($hasUnencryptedSize) {
- $subSize = $data['unencrypted_size'];
- } else {
- $subSize = $data['size'] ?: 0;
- }
- $this->data['size'] += $subSize;
- if ($hasUnencryptedSize) {
- $this->data['unencrypted_size'] += $subSize;
- }
- if (isset($data['mtime'])) {
- $this->data['mtime'] = max($this->data['mtime'], $data['mtime']);
- }
- if (isset($data['etag'])) {
- // prefix the etag with the relative path of the subentry to propagate etag on mount moves
- $relativeEntryPath = substr($entryPath, strlen($this->getPath()));
- // attach the permissions to propagate etag on permission changes of submounts
- $permissions = isset($data['permissions']) ? $data['permissions'] : 0;
- $this->childEtags[] = $relativeEntryPath . '/' . $data['etag'] . $permissions;
- }
- }
- /**
- * @inheritdoc
- */
- public function getChecksum() {
- return $this->data['checksum'];
- }
- public function getExtension(): string {
- return pathinfo($this->getName(), PATHINFO_EXTENSION);
- }
- public function getCreationTime(): int {
- return (int) $this->data['creation_time'];
- }
- public function getUploadTime(): int {
- return (int) $this->data['upload_time'];
- }
- public function getParentId(): int {
- return $this->data['parent'] ?? -1;
- }
- /**
- * @inheritDoc
- * @return array<string, int|string|bool|float|string[]|int[]>
- */
- public function getMetadata(): array {
- return $this->data['metadata'] ?? [];
- }
- }
|