Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DirectoryFilter.php « src « streams « icewind « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80b27e8bab85897f8a8d99e71462a4c34fb147c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
 * Copyright (c) 2015 Robin Appelman <icewind@owncloud.com>
 * This file is licensed under the Licensed under the MIT license:
 * http://opensource.org/licenses/MIT
 */

namespace Icewind\Streams;

/**
 * Wrapper allows filtering of directories
 *
 * The filter callback will be called for each entry in the folder
 * when the callback return false the entry will be filtered out
 */
class DirectoryFilter extends DirectoryWrapper {
	/**
	 * @var callable
	 */
	private $filter;

	/**
	 * @param string $path
	 * @param array $options
	 * @return bool
	 */
	public function dir_opendir($path, $options) {
		$context = $this->loadContext();
		$this->filter = $context['filter'];
		return true;
	}

	/**
	 * @return string
	 */
	public function dir_readdir() {
		$file = readdir($this->source);
		$filter = $this->filter;
		// keep reading until we have an accepted entry or we're at the end of the folder
		while ($file !== false && $filter($file) === false) {
			$file = readdir($this->source);
		}
		return $file;
	}

	/**
	 * @param resource $source
	 * @param callable $filter
	 * @return resource|bool
	 */
	public static function wrap($source, callable $filter) {
		return self::wrapSource($source, [
			'source' => $source,
			'filter' => $filter
		]);
	}
}