123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848 |
- <?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;
- use OC\Files\Cache\Cache;
- use OC\Files\Cache\CacheDependencies;
- use OC\Files\Cache\Propagator;
- use OC\Files\Cache\Scanner;
- use OC\Files\Cache\Updater;
- use OC\Files\Cache\Watcher;
- use OC\Files\Filesystem;
- use OC\Files\Storage\Wrapper\Jail;
- use OC\Files\Storage\Wrapper\Wrapper;
- use OCP\Files\ForbiddenException;
- use OCP\Files\GenericFileException;
- use OCP\Files\IFilenameValidator;
- use OCP\Files\InvalidPathException;
- use OCP\Files\Storage\ILockingStorage;
- use OCP\Files\Storage\IStorage;
- use OCP\Files\Storage\IWriteStreamStorage;
- use OCP\Files\StorageNotAvailableException;
- use OCP\Lock\ILockingProvider;
- use OCP\Lock\LockedException;
- use OCP\Server;
- use Psr\Log\LoggerInterface;
- /**
- * Storage backend class for providing common filesystem operation methods
- * which are not storage-backend specific.
- *
- * \OC\Files\Storage\Common is never used directly; it is extended by all other
- * storage backends, where its methods may be overridden, and additional
- * (backend-specific) methods are defined.
- *
- * Some \OC\Files\Storage\Common methods call functions which are first defined
- * in classes which extend it, e.g. $this->stat() .
- */
- abstract class Common implements Storage, ILockingStorage, IWriteStreamStorage {
- use LocalTempFileTrait;
- protected $cache;
- protected $scanner;
- protected $watcher;
- protected $propagator;
- protected $storageCache;
- protected $updater;
- protected $mountOptions = [];
- protected $owner = null;
- private ?bool $shouldLogLocks = null;
- private ?LoggerInterface $logger = null;
- private ?IFilenameValidator $filenameValidator = null;
- public function __construct($parameters) {
- }
- /**
- * Remove a file or folder
- *
- * @param string $path
- * @return bool
- */
- protected function remove($path) {
- if ($this->is_dir($path)) {
- return $this->rmdir($path);
- } elseif ($this->is_file($path)) {
- return $this->unlink($path);
- } else {
- return false;
- }
- }
- public function is_dir($path) {
- return $this->filetype($path) === 'dir';
- }
- public function is_file($path) {
- return $this->filetype($path) === 'file';
- }
- public function filesize($path): false|int|float {
- if ($this->is_dir($path)) {
- return 0; //by definition
- } else {
- $stat = $this->stat($path);
- if (isset($stat['size'])) {
- return $stat['size'];
- } else {
- return 0;
- }
- }
- }
- public function isReadable($path) {
- // at least check whether it exists
- // subclasses might want to implement this more thoroughly
- return $this->file_exists($path);
- }
- public function isUpdatable($path) {
- // at least check whether it exists
- // subclasses might want to implement this more thoroughly
- // a non-existing file/folder isn't updatable
- return $this->file_exists($path);
- }
- public function isCreatable($path) {
- if ($this->is_dir($path) && $this->isUpdatable($path)) {
- return true;
- }
- return false;
- }
- public function isDeletable($path) {
- if ($path === '' || $path === '/') {
- return $this->isUpdatable($path);
- }
- $parent = dirname($path);
- return $this->isUpdatable($parent) && $this->isUpdatable($path);
- }
- public function isSharable($path) {
- return $this->isReadable($path);
- }
- public function getPermissions($path) {
- $permissions = 0;
- if ($this->isCreatable($path)) {
- $permissions |= \OCP\Constants::PERMISSION_CREATE;
- }
- if ($this->isReadable($path)) {
- $permissions |= \OCP\Constants::PERMISSION_READ;
- }
- if ($this->isUpdatable($path)) {
- $permissions |= \OCP\Constants::PERMISSION_UPDATE;
- }
- if ($this->isDeletable($path)) {
- $permissions |= \OCP\Constants::PERMISSION_DELETE;
- }
- if ($this->isSharable($path)) {
- $permissions |= \OCP\Constants::PERMISSION_SHARE;
- }
- return $permissions;
- }
- public function filemtime($path) {
- $stat = $this->stat($path);
- if (isset($stat['mtime']) && $stat['mtime'] > 0) {
- return $stat['mtime'];
- } else {
- return 0;
- }
- }
- public function file_get_contents($path) {
- $handle = $this->fopen($path, "r");
- if (!$handle) {
- return false;
- }
- $data = stream_get_contents($handle);
- fclose($handle);
- return $data;
- }
- public function file_put_contents($path, $data) {
- $handle = $this->fopen($path, "w");
- if (!$handle) {
- return false;
- }
- $this->removeCachedFile($path);
- $count = fwrite($handle, $data);
- fclose($handle);
- return $count;
- }
- public function rename($source, $target) {
- $this->remove($target);
- $this->removeCachedFile($source);
- return $this->copy($source, $target) and $this->remove($source);
- }
- public function copy($source, $target) {
- if ($this->is_dir($source)) {
- $this->remove($target);
- $dir = $this->opendir($source);
- $this->mkdir($target);
- while ($file = readdir($dir)) {
- if (!Filesystem::isIgnoredDir($file)) {
- if (!$this->copy($source . '/' . $file, $target . '/' . $file)) {
- closedir($dir);
- return false;
- }
- }
- }
- closedir($dir);
- return true;
- } else {
- $sourceStream = $this->fopen($source, 'r');
- $targetStream = $this->fopen($target, 'w');
- [, $result] = \OC_Helper::streamCopy($sourceStream, $targetStream);
- if (!$result) {
- \OCP\Server::get(LoggerInterface::class)->warning("Failed to write data while copying $source to $target");
- }
- $this->removeCachedFile($target);
- return $result;
- }
- }
- public function getMimeType($path) {
- if ($this->is_dir($path)) {
- return 'httpd/unix-directory';
- } elseif ($this->file_exists($path)) {
- return \OC::$server->getMimeTypeDetector()->detectPath($path);
- } else {
- return false;
- }
- }
- public function hash($type, $path, $raw = false) {
- $fh = $this->fopen($path, 'rb');
- $ctx = hash_init($type);
- hash_update_stream($ctx, $fh);
- fclose($fh);
- return hash_final($ctx, $raw);
- }
- public function search($query) {
- return $this->searchInDir($query);
- }
- public function getLocalFile($path) {
- return $this->getCachedFile($path);
- }
- /**
- * @param string $path
- * @param string $target
- */
- private function addLocalFolder($path, $target) {
- $dh = $this->opendir($path);
- if (is_resource($dh)) {
- while (($file = readdir($dh)) !== false) {
- if (!\OC\Files\Filesystem::isIgnoredDir($file)) {
- if ($this->is_dir($path . '/' . $file)) {
- mkdir($target . '/' . $file);
- $this->addLocalFolder($path . '/' . $file, $target . '/' . $file);
- } else {
- $tmp = $this->toTmpFile($path . '/' . $file);
- rename($tmp, $target . '/' . $file);
- }
- }
- }
- }
- }
- /**
- * @param string $query
- * @param string $dir
- * @return array
- */
- protected function searchInDir($query, $dir = '') {
- $files = [];
- $dh = $this->opendir($dir);
- if (is_resource($dh)) {
- while (($item = readdir($dh)) !== false) {
- if (\OC\Files\Filesystem::isIgnoredDir($item)) {
- continue;
- }
- if (strstr(strtolower($item), strtolower($query)) !== false) {
- $files[] = $dir . '/' . $item;
- }
- if ($this->is_dir($dir . '/' . $item)) {
- $files = array_merge($files, $this->searchInDir($query, $dir . '/' . $item));
- }
- }
- }
- closedir($dh);
- return $files;
- }
- /**
- * Check if a file or folder has been updated since $time
- *
- * The method is only used to check if the cache needs to be updated. Storage backends that don't support checking
- * the mtime should always return false here. As a result storage implementations that always return false expect
- * exclusive access to the backend and will not pick up files that have been added in a way that circumvents
- * Nextcloud filesystem.
- *
- * @param string $path
- * @param int $time
- * @return bool
- */
- public function hasUpdated($path, $time) {
- return $this->filemtime($path) > $time;
- }
- protected function getCacheDependencies(): CacheDependencies {
- static $dependencies = null;
- if (!$dependencies) {
- $dependencies = Server::get(CacheDependencies::class);
- }
- return $dependencies;
- }
- public function getCache($path = '', $storage = null) {
- if (!$storage) {
- $storage = $this;
- }
- if (!isset($storage->cache)) {
- $storage->cache = new Cache($storage, $this->getCacheDependencies());
- }
- return $storage->cache;
- }
- public function getScanner($path = '', $storage = null) {
- if (!$storage) {
- $storage = $this;
- }
- if (!isset($storage->scanner)) {
- $storage->scanner = new Scanner($storage);
- }
- return $storage->scanner;
- }
- public function getWatcher($path = '', $storage = null) {
- if (!$storage) {
- $storage = $this;
- }
- if (!isset($this->watcher)) {
- $this->watcher = new Watcher($storage);
- $globalPolicy = \OC::$server->getConfig()->getSystemValue('filesystem_check_changes', Watcher::CHECK_NEVER);
- $this->watcher->setPolicy((int)$this->getMountOption('filesystem_check_changes', $globalPolicy));
- }
- return $this->watcher;
- }
- /**
- * get a propagator instance for the cache
- *
- * @param \OC\Files\Storage\Storage (optional) the storage to pass to the watcher
- * @return \OC\Files\Cache\Propagator
- */
- public function getPropagator($storage = null) {
- if (!$storage) {
- $storage = $this;
- }
- if (!isset($storage->propagator)) {
- $config = \OC::$server->getSystemConfig();
- $storage->propagator = new Propagator($storage, \OC::$server->getDatabaseConnection(), ['appdata_' . $config->getValue('instanceid')]);
- }
- return $storage->propagator;
- }
- public function getUpdater($storage = null) {
- if (!$storage) {
- $storage = $this;
- }
- if (!isset($storage->updater)) {
- $storage->updater = new Updater($storage);
- }
- return $storage->updater;
- }
- public function getStorageCache($storage = null) {
- return $this->getCache($storage)->getStorageCache();
- }
- /**
- * get the owner of a path
- *
- * @param string $path The path to get the owner
- * @return string|false uid or false
- */
- public function getOwner($path) {
- if ($this->owner === null) {
- $this->owner = \OC_User::getUser();
- }
- return $this->owner;
- }
- /**
- * get the ETag for a file or folder
- *
- * @param string $path
- * @return string
- */
- public function getETag($path) {
- return uniqid();
- }
- /**
- * clean a path, i.e. remove all redundant '.' and '..'
- * making sure that it can't point to higher than '/'
- *
- * @param string $path The path to clean
- * @return string cleaned path
- */
- public function cleanPath($path) {
- if (strlen($path) == 0 or $path[0] != '/') {
- $path = '/' . $path;
- }
- $output = [];
- foreach (explode('/', $path) as $chunk) {
- if ($chunk == '..') {
- array_pop($output);
- } elseif ($chunk == '.') {
- } else {
- $output[] = $chunk;
- }
- }
- return implode('/', $output);
- }
- /**
- * Test a storage for availability
- *
- * @return bool
- */
- public function test() {
- try {
- if ($this->stat('')) {
- return true;
- }
- \OC::$server->get(LoggerInterface::class)->info("External storage not available: stat() failed");
- return false;
- } catch (\Exception $e) {
- \OC::$server->get(LoggerInterface::class)->warning(
- "External storage not available: " . $e->getMessage(),
- ['exception' => $e]
- );
- return false;
- }
- }
- /**
- * get the free space in the storage
- *
- * @param string $path
- * @return int|float|false
- */
- public function free_space($path) {
- return \OCP\Files\FileInfo::SPACE_UNKNOWN;
- }
- /**
- * {@inheritdoc}
- */
- public function isLocal() {
- // the common implementation returns a temporary file by
- // default, which is not local
- return false;
- }
- /**
- * Check if the storage is an instance of $class or is a wrapper for a storage that is an instance of $class
- *
- * @param string $class
- * @return bool
- */
- public function instanceOfStorage($class) {
- if (ltrim($class, '\\') === 'OC\Files\Storage\Shared') {
- // FIXME Temporary fix to keep existing checks working
- $class = '\OCA\Files_Sharing\SharedStorage';
- }
- return is_a($this, $class);
- }
- /**
- * A custom storage implementation can return an url for direct download of a give file.
- *
- * For now the returned array can hold the parameter url - in future more attributes might follow.
- *
- * @param string $path
- * @return array|false
- */
- public function getDirectDownload($path) {
- return [];
- }
- /**
- * @inheritdoc
- * @throws InvalidPathException
- */
- public function verifyPath($path, $fileName) {
- $this->getFilenameValidator()
- ->validateFilename($fileName);
- // NOTE: $path will remain unverified for now
- }
- /**
- * Get the filename validator
- * (cached for performance)
- */
- protected function getFilenameValidator(): IFilenameValidator {
- if ($this->filenameValidator === null) {
- $this->filenameValidator = \OCP\Server::get(IFilenameValidator::class);
- }
- return $this->filenameValidator;
- }
- /**
- * @param array $options
- */
- public function setMountOptions(array $options) {
- $this->mountOptions = $options;
- }
- /**
- * @param string $name
- * @param mixed $default
- * @return mixed
- */
- public function getMountOption($name, $default = null) {
- return $this->mountOptions[$name] ?? $default;
- }
- /**
- * @param IStorage $sourceStorage
- * @param string $sourceInternalPath
- * @param string $targetInternalPath
- * @param bool $preserveMtime
- * @return bool
- */
- public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
- if ($sourceStorage === $this) {
- return $this->copy($sourceInternalPath, $targetInternalPath);
- }
- if ($sourceStorage->is_dir($sourceInternalPath)) {
- $dh = $sourceStorage->opendir($sourceInternalPath);
- $result = $this->mkdir($targetInternalPath);
- if (is_resource($dh)) {
- $result = true;
- while ($result and ($file = readdir($dh)) !== false) {
- if (!Filesystem::isIgnoredDir($file)) {
- $result &= $this->copyFromStorage($sourceStorage, $sourceInternalPath . '/' . $file, $targetInternalPath . '/' . $file);
- }
- }
- }
- } else {
- $source = $sourceStorage->fopen($sourceInternalPath, 'r');
- $result = false;
- if ($source) {
- try {
- $this->writeStream($targetInternalPath, $source);
- $result = true;
- } catch (\Exception $e) {
- \OC::$server->get(LoggerInterface::class)->warning('Failed to copy stream to storage', ['exception' => $e]);
- }
- }
- if ($result && $preserveMtime) {
- $mtime = $sourceStorage->filemtime($sourceInternalPath);
- $this->touch($targetInternalPath, is_int($mtime) ? $mtime : null);
- }
- if (!$result) {
- // delete partially written target file
- $this->unlink($targetInternalPath);
- // delete cache entry that was created by fopen
- $this->getCache()->remove($targetInternalPath);
- }
- }
- return (bool)$result;
- }
- /**
- * Check if a storage is the same as the current one, including wrapped storages
- *
- * @param IStorage $storage
- * @return bool
- */
- private function isSameStorage(IStorage $storage): bool {
- while ($storage->instanceOfStorage(Wrapper::class)) {
- /**
- * @var Wrapper $storage
- */
- $storage = $storage->getWrapperStorage();
- }
- return $storage === $this;
- }
- /**
- * @param IStorage $sourceStorage
- * @param string $sourceInternalPath
- * @param string $targetInternalPath
- * @return bool
- */
- public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
- if ($this->isSameStorage($sourceStorage)) {
- // resolve any jailed paths
- while ($sourceStorage->instanceOfStorage(Jail::class)) {
- /**
- * @var Jail $sourceStorage
- */
- $sourceInternalPath = $sourceStorage->getUnjailedPath($sourceInternalPath);
- $sourceStorage = $sourceStorage->getUnjailedStorage();
- }
- return $this->rename($sourceInternalPath, $targetInternalPath);
- }
- if (!$sourceStorage->isDeletable($sourceInternalPath)) {
- return false;
- }
- $result = $this->copyFromStorage($sourceStorage, $sourceInternalPath, $targetInternalPath, true);
- if ($result) {
- if ($sourceStorage->is_dir($sourceInternalPath)) {
- $result = $sourceStorage->rmdir($sourceInternalPath);
- } else {
- $result = $sourceStorage->unlink($sourceInternalPath);
- }
- }
- return $result;
- }
- /**
- * @inheritdoc
- */
- public function getMetaData($path) {
- if (Filesystem::isFileBlacklisted($path)) {
- throw new ForbiddenException('Invalid path: ' . $path, false);
- }
- $permissions = $this->getPermissions($path);
- if (!$permissions & \OCP\Constants::PERMISSION_READ) {
- //can't read, nothing we can do
- return null;
- }
- $data = [];
- $data['mimetype'] = $this->getMimeType($path);
- $data['mtime'] = $this->filemtime($path);
- if ($data['mtime'] === false) {
- $data['mtime'] = time();
- }
- if ($data['mimetype'] == 'httpd/unix-directory') {
- $data['size'] = -1; //unknown
- } else {
- $data['size'] = $this->filesize($path);
- }
- $data['etag'] = $this->getETag($path);
- $data['storage_mtime'] = $data['mtime'];
- $data['permissions'] = $permissions;
- $data['name'] = basename($path);
- return $data;
- }
- /**
- * @param string $path
- * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
- * @param \OCP\Lock\ILockingProvider $provider
- * @throws \OCP\Lock\LockedException
- */
- public function acquireLock($path, $type, ILockingProvider $provider) {
- $logger = $this->getLockLogger();
- if ($logger) {
- $typeString = ($type === ILockingProvider::LOCK_SHARED) ? 'shared' : 'exclusive';
- $logger->info(
- sprintf(
- 'acquire %s lock on "%s" on storage "%s"',
- $typeString,
- $path,
- $this->getId()
- ),
- [
- 'app' => 'locking',
- ]
- );
- }
- try {
- $provider->acquireLock('files/' . md5($this->getId() . '::' . trim($path, '/')), $type, $this->getId() . '::' . $path);
- } catch (LockedException $e) {
- $e = new LockedException($e->getPath(), $e, $e->getExistingLock(), $path);
- if ($logger) {
- $logger->info($e->getMessage(), ['exception' => $e]);
- }
- throw $e;
- }
- }
- /**
- * @param string $path
- * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
- * @param \OCP\Lock\ILockingProvider $provider
- * @throws \OCP\Lock\LockedException
- */
- public function releaseLock($path, $type, ILockingProvider $provider) {
- $logger = $this->getLockLogger();
- if ($logger) {
- $typeString = ($type === ILockingProvider::LOCK_SHARED) ? 'shared' : 'exclusive';
- $logger->info(
- sprintf(
- 'release %s lock on "%s" on storage "%s"',
- $typeString,
- $path,
- $this->getId()
- ),
- [
- 'app' => 'locking',
- ]
- );
- }
- try {
- $provider->releaseLock('files/' . md5($this->getId() . '::' . trim($path, '/')), $type);
- } catch (LockedException $e) {
- $e = new LockedException($e->getPath(), $e, $e->getExistingLock(), $path);
- if ($logger) {
- $logger->info($e->getMessage(), ['exception' => $e]);
- }
- throw $e;
- }
- }
- /**
- * @param string $path
- * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
- * @param \OCP\Lock\ILockingProvider $provider
- * @throws \OCP\Lock\LockedException
- */
- public function changeLock($path, $type, ILockingProvider $provider) {
- $logger = $this->getLockLogger();
- if ($logger) {
- $typeString = ($type === ILockingProvider::LOCK_SHARED) ? 'shared' : 'exclusive';
- $logger->info(
- sprintf(
- 'change lock on "%s" to %s on storage "%s"',
- $path,
- $typeString,
- $this->getId()
- ),
- [
- 'app' => 'locking',
- ]
- );
- }
- try {
- $provider->changeLock('files/' . md5($this->getId() . '::' . trim($path, '/')), $type);
- } catch (LockedException $e) {
- $e = new LockedException($e->getPath(), $e, $e->getExistingLock(), $path);
- if ($logger) {
- $logger->info($e->getMessage(), ['exception' => $e]);
- }
- throw $e;
- }
- }
- private function getLockLogger(): ?LoggerInterface {
- if (is_null($this->shouldLogLocks)) {
- $this->shouldLogLocks = \OC::$server->getConfig()->getSystemValueBool('filelocking.debug', false);
- $this->logger = $this->shouldLogLocks ? \OC::$server->get(LoggerInterface::class) : null;
- }
- return $this->logger;
- }
- /**
- * @return array [ available, last_checked ]
- */
- public function getAvailability() {
- return $this->getStorageCache()->getAvailability();
- }
- /**
- * @param bool $isAvailable
- */
- public function setAvailability($isAvailable) {
- $this->getStorageCache()->setAvailability($isAvailable);
- }
- /**
- * Allow setting the storage owner
- *
- * This can be used for storages that do not have a dedicated owner, where we want to
- * pass the user that we setup the mountpoint for along to the storage layer
- *
- * @param string|null $user
- * @return void
- */
- public function setOwner(?string $user): void {
- $this->owner = $user;
- }
- /**
- * @return bool
- */
- public function needsPartFile() {
- return true;
- }
- /**
- * fallback implementation
- *
- * @param string $path
- * @param resource $stream
- * @param int $size
- * @return int
- */
- public function writeStream(string $path, $stream, ?int $size = null): int {
- $target = $this->fopen($path, 'w');
- if (!$target) {
- throw new GenericFileException("Failed to open $path for writing");
- }
- try {
- [$count, $result] = \OC_Helper::streamCopy($stream, $target);
- if (!$result) {
- throw new GenericFileException("Failed to copy stream");
- }
- } finally {
- fclose($target);
- fclose($stream);
- }
- return $count;
- }
- public function getDirectoryContent($directory): \Traversable {
- $dh = $this->opendir($directory);
- if ($dh === false) {
- throw new StorageNotAvailableException('Directory listing failed');
- }
- if (is_resource($dh)) {
- $basePath = rtrim($directory, '/');
- while (($file = readdir($dh)) !== false) {
- if (!Filesystem::isIgnoredDir($file)) {
- $childPath = $basePath . '/' . trim($file, '/');
- $metadata = $this->getMetaData($childPath);
- if ($metadata !== null) {
- yield $metadata;
- }
- }
- }
- }
- }
- }
|