Passed
Push — enable-detection-on-fronted ( 9038bb...4a2683 )
by Matias
04:02
created

FileService::isSharedFile()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 2
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * @copyright Copyright (c) 2019 Matias De lellis <[email protected]>
6
 *
7
 * @author Matias De lellis <[email protected]>
8
 *
9
 * @license GNU AGPL version 3 or any later version
10
 *
11
 * This program is free software: you can redistribute it and/or modify
12
 * it under the terms of the GNU Affero General Public License as
13
 * published by the Free Software Foundation, either version 3 of the
14
 * License, or (at your option) any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 * GNU Affero General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU Affero General Public License
22
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23
 *
24
 */
25
26
namespace OCA\FaceRecognition\Service;
27
28
use OCA\FaceRecognition\Helper\Requirements;
29
30
use OCP\IConfig;
31
use OCP\Files\IRootFolder;
32
use OCP\Files\File;
33
use OCP\Files\Folder;
34
use OCP\Files\Node;
35
use OCP\ITempManager;
36
37
use OCP\Files\IHomeStorage;
38
use OCP\Files\NotFoundException;
39
40
use OCA\Files_Sharing\External\Storage as SharingExternalStorage;
0 ignored issues
show
Bug introduced by
The type OCA\Files_Sharing\External\Storage was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
41
42
class FileService {
43
44
	const NOMEDIA_FILE = ".nomedia";
45
46
	const FACERECOGNITION_SETTINGS_FILE = ".facerecognition.json";
47
48
	/**  @var string|null */
49
	private $userId;
50
51
	/** @var IConfig Config */
52
	private $config;
53
54
	/** @var IRootFolder */
55
	private $rootFolder;
56
57
	/** @var ITempManager */
58
	private $tempManager;
59
60 1
	public function __construct($userId,
61
	                            IConfig      $config,
62
	                            IRootFolder  $rootFolder,
63
	                            ITempManager $tempManager)
64
	{
65 1
		$this->userId      = $userId;
66 1
		$this->config      = $config;
67 1
		$this->rootFolder  = $rootFolder;
68 1
		$this->tempManager = $tempManager;
69 1
	}
70
71
	/**
72
	 * TODO: Describe exactly when necessary.
73
	 */
74 11
	public function setupFS(string $userId) {
75 11
		\OC_Util::tearDownFS();
0 ignored issues
show
Bug introduced by
The type OC_Util was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
76 11
		\OC_Util::setupFS($userId);
77
78 11
		$this->userId = $userId;
79 11
	}
80
81
	/**
82
	 * Get a Node from userFolder
83
	 * @param int $id the id of the Node
84
	 * @param string $userId
85
	 * @return Node | null
86
	 */
87 2
	public function getFileById($fileId, $userId = null): ?Node {
88 2
		$files = $this->rootFolder->getUserFolder($this->userId ?? $userId)->getById($fileId);
89 2
		if (count($files) === 0) {
90 1
			return null;
91
		}
92
93 1
		return $files[0];
94
	}
95
96
	/**
97
	 * Get a Node from userFolder
98
	 * @param string $fullpath the fullpath of the Node
99
	 * @param string $userId
100
	 * @return Node | null
101
	 */
102
	public function getFileByPath($fullpath, $userId = null): ?Node {
103
		$file = $this->rootFolder->getUserFolder($this->userId ?? $userId)->get($fullpath);
104
		return $file;
105
	}
106
107
	/**
108
	 * Checks if this file is located somewhere under .nomedia file and should be therefore ignored.
109
	 * Or with an .facerecognition.json setting file that disable tha analysis
110
	 *
111
	 * @param File $file File to search for
112
	 * @return bool True if file is located under .nomedia or .facerecognition.json that disabled
113
	 * analysis, false otherwise
114
	 */
115 1
	public function isUnderNoDetection(Node $node): bool {
116
		// If we detect .nomedia file anywhere on the path to root folder (id===null), bail out
117 1
		$parentNode = $node->getParent();
118 1
		while (($parentNode instanceof Folder) && ($parentNode->getId() !== null)) {
119 1
			$allowDetection = $this->getDescendantDetection($parentNode);
120 1
			if (!$allowDetection)
121 1
				return true;
122 1
			$parentNode = $parentNode->getParent();
123
		}
124 1
		return false;
125
	}
126
127
	/**
128
	 * Checks if this folder has .nomedia file an .facerecognition.json setting file that
129
	 * disable that analysis.
130
	 *
131
	 * @param Folder $folder Folder to search for
132
	 * @return bool true if folder dont have an .nomedia file or .facerecognition.json that disabled
133
	 * analysis, false otherwise
134
	 */
135 3
	public function getDescendantDetection(Folder $folder): bool {
136 3
		if ($folder->nodeExists(FileService::NOMEDIA_FILE)) {
137 2
			return false;
138
		}
139 3
		if ($folder->nodeExists(FileService::FACERECOGNITION_SETTINGS_FILE)) {
140
			$file = $folder->get(FileService::FACERECOGNITION_SETTINGS_FILE);
141
			$settings = json_decode($file->getContent(), true);
0 ignored issues
show
Bug introduced by
The method getContent() does not exist on OCP\Files\Node. It seems like you code against a sub-type of OCP\Files\Node such as OCP\Files\File. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

141
			$settings = json_decode($file->/** @scrutinizer ignore-call */ getContent(), true);
Loading history...
142
			if ($settings === null || !array_key_exists('detection', $settings))
143
				return true;
144
145
			if ($settings['detection'] === 'off')
146
				return false;
147
		}
148
149 3
		return true;
150
	}
151
152
	/**
153
	 * Set this folder to enable or disable the analysis using the .facerecognition.json file.
154
	 *
155
	 * @param Folder $folder Folder to enable/disable for
156
	 * @return bool true if the change is done. False if failed.
157
	 */
158
	public function setDescendantDetection(Folder $folder, bool $detection): bool {
159
		if ($folder->nodeExists(FileService::FACERECOGNITION_SETTINGS_FILE)) {
160
			$file = $folder->get(FileService::FACERECOGNITION_SETTINGS_FILE);
161
			$settings = json_decode($file->getContent(), true);
162
			if ($settings === null) {
163
				// Invalid json.
164
				return false;
165
			}
166
		}
167
		else {
168
			$file = $folder->newFile(FileService::FACERECOGNITION_SETTINGS_FILE);
169
			$settings = array();
170
		}
171
172
		$settings['detection'] = $detection ? "on" : "off";
173
		$file->putContent(json_encode($settings));
0 ignored issues
show
Bug introduced by
The method putContent() does not exist on OCP\Files\Node. It seems like you code against a sub-type of OCP\Files\Node such as OCP\Files\File. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

173
		$file->/** @scrutinizer ignore-call */ 
174
         putContent(json_encode($settings));
Loading history...
174
175
		return true;
176
	}
177
178
	/**
179
	 * Returns if the file is inside a shared storage.
180
	 */
181 28
	public function isSharedFile(Node $node): bool {
182 28
		return $node->getStorage()->instanceOfStorage(SharingExternalStorage::class);
183
	}
184
185
	/**
186
	 * Returns if the file is inside HomeStorage.
187
	 */
188 28
	public function isUserFile(Node $node): bool {
189 28
		return $node->getStorage()->instanceOfStorage(IHomeStorage::class);
190
	}
191
192
	/**
193
	 * Returns if the Node is allowed based on preferences.
194
	 */
195 28
	public function isAllowedNode(Node $node): bool {
196 28
		if ($this->isUserFile($node)) {
197 28
			return true;
198 28
		} else if ($this->isSharedFile($node)) {
199
			$handleSharedFiles = $this->config->getAppValue('facerecognition', 'handle-shared-files', 'false');
200
			return ($handleSharedFiles === 'true');
201
		}
202 28
		return false;
203
	}
204
205
	/**
206
	 * Get a path to either the local file or temporary file
207
	 *
208
	 * @param File $file
209
	 * @param int $maxSize maximum size for temporary files
210
	 * @return string
211
	 */
212
	public function getLocalFile(File $file, int $maxSize = null): string {
213
		$useTempFile = $file->isEncrypted() || !$file->getStorage()->isLocal();
214
		if ($useTempFile) {
215
			$absPath = $this->tempManager->getTemporaryFile();
216
217
			$content = $file->fopen('r');
218
			if ($maxSize !== null) {
219
				$content = stream_get_contents($content, $maxSize);
220
			}
221
			file_put_contents($absPath, $content);
222
223
			return $absPath;
224
		} else {
225
			return $file->getStorage()->getLocalFile($file->getInternalPath());
0 ignored issues
show
Bug Best Practice introduced by
The expression return $file->getStorage...ile->getInternalPath()) could return the type false which is incompatible with the type-hinted return string. Consider adding an additional type-check to rule them out.
Loading history...
226
		}
227
	}
228
229
	/**
230
	 * Return all images from a given folder.
231
	 *
232
	 * TODO: It is inefficient since it copies the array recursively.
233
	 *
234
	 * @param Folder $folder Folder to get images from
235
	 * @return array List of all images and folders to continue recursive crawling
236
	 */
237 10
	public function getPicturesFromFolder(Folder $folder, $results = array()) {
238 10
		$nodes = $folder->getDirectoryListing();
239 10
		foreach ($nodes as $node) {
240 8
			if (!$this->isAllowedNode($node)) {
241
				continue;
242
			}
243 8
			if ($node instanceof Folder && $this->getDescendantDetection($node)) {
244 3
				$results = $this->getPicturesFromFolder($node, $results);
245
			}
246 8
			else if ($node instanceof File) {
247 8
				if (Requirements::isImageTypeSupported($node->getMimeType())) {
248 8
					$results[] = $node;
249
				}
250
			}
251
		}
252 10
		return $results;
253
	}
254
255
	/**
256
	 * Create a temporary file and return the path
257
	 */
258
	public function getTemporaryFile(string $postFix = ''): string {
259
		return $this->tempManager->getTemporaryFile($postFix);
260
	}
261
262
	/**
263
	 * Remove any temporary file from the service.
264
	 */
265
	public function clean() {
266
		$this->tempManager->clean();
267
	}
268
269
}
270