123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <?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\Storage\Wrapper;
- use OC\Files\Filesystem;
- use OCP\Cache\CappedMemoryCache;
- use OCP\Files\Cache\IScanner;
- use OCP\Files\Storage\IStorage;
- use OCP\ICache;
- /**
- * Encoding wrapper that deals with file names that use unsupported encodings like NFD.
- *
- * When applied and a UTF-8 path name was given, the wrapper will first attempt to access
- * the actual given name and then try its NFD form.
- */
- class Encoding extends Wrapper {
- /**
- * @var ICache
- */
- private $namesCache;
- /**
- * @param array $parameters
- */
- public function __construct(array $parameters) {
- $this->storage = $parameters['storage'];
- $this->namesCache = new CappedMemoryCache();
- }
- /**
- * Returns whether the given string is only made of ASCII characters
- */
- private function isAscii(string $str): bool {
- return !preg_match('/[\\x80-\\xff]+/', $str);
- }
- /**
- * Checks whether the given path exists in NFC or NFD form after checking
- * each form for each path section and returns the correct form.
- * If no existing path found, returns the path as it was given.
- *
- * @return string original or converted path
- */
- private function findPathToUse(string $fullPath): string {
- $cachedPath = $this->namesCache[$fullPath];
- if ($cachedPath !== null) {
- return $cachedPath;
- }
- $sections = explode('/', $fullPath);
- $path = '';
- foreach ($sections as $section) {
- $convertedPath = $this->findPathToUseLastSection($path, $section);
- if ($convertedPath === null) {
- // no point in continuing if the section was not found, use original path
- return $fullPath;
- }
- $path = $convertedPath . '/';
- }
- $path = rtrim($path, '/');
- return $path;
- }
- /**
- * Checks whether the last path section of the given path exists in NFC or NFD form
- * and returns the correct form. If no existing path found, returns null.
- *
- * @param string $lastSection last section of the path to check for NFD/NFC variations
- *
- * @return string|null original or converted path, or null if none of the forms was found
- */
- private function findPathToUseLastSection(string $basePath, string $lastSection): ?string {
- $fullPath = $basePath . $lastSection;
- if ($lastSection === '' || $this->isAscii($lastSection) || $this->storage->file_exists($fullPath)) {
- $this->namesCache[$fullPath] = $fullPath;
- return $fullPath;
- }
- // swap encoding
- if (\Normalizer::isNormalized($lastSection, \Normalizer::FORM_C)) {
- $otherFormPath = \Normalizer::normalize($lastSection, \Normalizer::FORM_D);
- } else {
- $otherFormPath = \Normalizer::normalize($lastSection, \Normalizer::FORM_C);
- }
- $otherFullPath = $basePath . $otherFormPath;
- if ($this->storage->file_exists($otherFullPath)) {
- $this->namesCache[$fullPath] = $otherFullPath;
- return $otherFullPath;
- }
- // return original path, file did not exist at all
- $this->namesCache[$fullPath] = $fullPath;
- return null;
- }
- public function mkdir(string $path): bool {
- // note: no conversion here, method should not be called with non-NFC names!
- $result = $this->storage->mkdir($path);
- if ($result) {
- $this->namesCache[$path] = $path;
- }
- return $result;
- }
- public function rmdir(string $path): bool {
- $result = $this->storage->rmdir($this->findPathToUse($path));
- if ($result) {
- unset($this->namesCache[$path]);
- }
- return $result;
- }
- public function opendir(string $path) {
- $handle = $this->storage->opendir($this->findPathToUse($path));
- return EncodingDirectoryWrapper::wrap($handle);
- }
- public function is_dir(string $path): bool {
- return $this->storage->is_dir($this->findPathToUse($path));
- }
- public function is_file(string $path): bool {
- return $this->storage->is_file($this->findPathToUse($path));
- }
- public function stat(string $path): array|false {
- return $this->storage->stat($this->findPathToUse($path));
- }
- public function filetype(string $path): string|false {
- return $this->storage->filetype($this->findPathToUse($path));
- }
- public function filesize(string $path): int|float|false {
- return $this->storage->filesize($this->findPathToUse($path));
- }
- public function isCreatable(string $path): bool {
- return $this->storage->isCreatable($this->findPathToUse($path));
- }
- public function isReadable(string $path): bool {
- return $this->storage->isReadable($this->findPathToUse($path));
- }
- public function isUpdatable(string $path): bool {
- return $this->storage->isUpdatable($this->findPathToUse($path));
- }
- public function isDeletable(string $path): bool {
- return $this->storage->isDeletable($this->findPathToUse($path));
- }
- public function isSharable(string $path): bool {
- return $this->storage->isSharable($this->findPathToUse($path));
- }
- public function getPermissions(string $path): int {
- return $this->storage->getPermissions($this->findPathToUse($path));
- }
- public function file_exists(string $path): bool {
- return $this->storage->file_exists($this->findPathToUse($path));
- }
- public function filemtime(string $path): int|false {
- return $this->storage->filemtime($this->findPathToUse($path));
- }
- public function file_get_contents(string $path): string|false {
- return $this->storage->file_get_contents($this->findPathToUse($path));
- }
- public function file_put_contents(string $path, mixed $data): int|float|false {
- return $this->storage->file_put_contents($this->findPathToUse($path), $data);
- }
- public function unlink(string $path): bool {
- $result = $this->storage->unlink($this->findPathToUse($path));
- if ($result) {
- unset($this->namesCache[$path]);
- }
- return $result;
- }
- public function rename(string $source, string $target): bool {
- // second name always NFC
- return $this->storage->rename($this->findPathToUse($source), $this->findPathToUse($target));
- }
- public function copy(string $source, string $target): bool {
- return $this->storage->copy($this->findPathToUse($source), $this->findPathToUse($target));
- }
- public function fopen(string $path, string $mode) {
- $result = $this->storage->fopen($this->findPathToUse($path), $mode);
- if ($result && $mode !== 'r' && $mode !== 'rb') {
- unset($this->namesCache[$path]);
- }
- return $result;
- }
- public function getMimeType(string $path): string|false {
- return $this->storage->getMimeType($this->findPathToUse($path));
- }
- public function hash(string $type, string $path, bool $raw = false): string|false {
- return $this->storage->hash($type, $this->findPathToUse($path), $raw);
- }
- public function free_space(string $path): int|float|false {
- return $this->storage->free_space($this->findPathToUse($path));
- }
- public function touch(string $path, ?int $mtime = null): bool {
- return $this->storage->touch($this->findPathToUse($path), $mtime);
- }
- public function getLocalFile(string $path): string|false {
- return $this->storage->getLocalFile($this->findPathToUse($path));
- }
- public function hasUpdated(string $path, int $time): bool {
- return $this->storage->hasUpdated($this->findPathToUse($path), $time);
- }
- public function getCache(string $path = '', ?IStorage $storage = null): \OCP\Files\Cache\ICache {
- if (!$storage) {
- $storage = $this;
- }
- return $this->storage->getCache($this->findPathToUse($path), $storage);
- }
- public function getScanner(string $path = '', ?IStorage $storage = null): IScanner {
- if (!$storage) {
- $storage = $this;
- }
- return $this->storage->getScanner($this->findPathToUse($path), $storage);
- }
- public function getETag(string $path): string|false {
- return $this->storage->getETag($this->findPathToUse($path));
- }
- public function copyFromStorage(IStorage $sourceStorage, string $sourceInternalPath, string $targetInternalPath): bool {
- if ($sourceStorage === $this) {
- return $this->copy($sourceInternalPath, $this->findPathToUse($targetInternalPath));
- }
- $result = $this->storage->copyFromStorage($sourceStorage, $sourceInternalPath, $this->findPathToUse($targetInternalPath));
- if ($result) {
- unset($this->namesCache[$targetInternalPath]);
- }
- return $result;
- }
- public function moveFromStorage(IStorage $sourceStorage, string $sourceInternalPath, string $targetInternalPath): bool {
- if ($sourceStorage === $this) {
- $result = $this->rename($sourceInternalPath, $this->findPathToUse($targetInternalPath));
- if ($result) {
- unset($this->namesCache[$sourceInternalPath]);
- unset($this->namesCache[$targetInternalPath]);
- }
- return $result;
- }
- $result = $this->storage->moveFromStorage($sourceStorage, $sourceInternalPath, $this->findPathToUse($targetInternalPath));
- if ($result) {
- unset($this->namesCache[$sourceInternalPath]);
- unset($this->namesCache[$targetInternalPath]);
- }
- return $result;
- }
- public function getMetaData(string $path): ?array {
- $entry = $this->storage->getMetaData($this->findPathToUse($path));
- $entry['name'] = trim(Filesystem::normalizePath($entry['name']), '/');
- return $entry;
- }
- public function getDirectoryContent(string $directory): \Traversable {
- $entries = $this->storage->getDirectoryContent($this->findPathToUse($directory));
- foreach ($entries as $entry) {
- $entry['name'] = trim(Filesystem::normalizePath($entry['name']), '/');
- yield $entry;
- }
- }
- }
|