Blame view

sources/lib/private/files/view.php 35.4 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
  <?php
  /**
   * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  /**
   * Class to provide access to ownCloud filesystem via a "view", and methods for
   * working with files within that view (e.g. read, write, delete, etc.). Each
   * view is restricted to a set of directories via a virtual root. The default view
   * uses the currently logged in user's data directory as root (parts of
6d9380f96   Cédric Dupont   Update sources OC...
14
   * OC_Filesystem are merely a wrapper for OC\Files\View).
03e52840d   Kload   Init
15
16
17
18
19
20
21
22
23
24
25
26
   *
   * Apps that need to access files outside of the user data folders (to modify files
   * belonging to a user other than the one currently logged in, for example) should
   * use this class directly rather than using OC_Filesystem, or making use of PHP's
   * built-in file manipulation functions. This will ensure all hooks and proxies
   * are triggered correctly.
   *
   * Filesystem functions are not called directly; they are passed to the correct
   * \OC\Files\Storage\Storage object
   */
  
  namespace OC\Files;
6d9380f96   Cédric Dupont   Update sources OC...
27
28
  use OC\Files\Cache\Updater;
  use OC\Files\Mount\MoveableMount;
03e52840d   Kload   Init
29
30
  class View {
  	private $fakeRoot = '';
03e52840d   Kload   Init
31

31b7f2792   Kload   Upgrade to ownclo...
32
  	public function __construct($root = '') {
03e52840d   Kload   Init
33
34
35
36
  		$this->fakeRoot = $root;
  	}
  
  	public function getAbsolutePath($path = '/') {
6d9380f96   Cédric Dupont   Update sources OC...
37
38
  		$this->assertPathLength($path);
  		if ($path === '') {
03e52840d   Kload   Init
39
40
41
42
43
44
45
46
47
48
49
50
  			$path = '/';
  		}
  		if ($path[0] !== '/') {
  			$path = '/' . $path;
  		}
  		return $this->fakeRoot . $path;
  	}
  
  	/**
  	 * change the root to a fake root
  	 *
  	 * @param string $fakeRoot
6d9380f96   Cédric Dupont   Update sources OC...
51
  	 * @return boolean|null
03e52840d   Kload   Init
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  	 */
  	public function chroot($fakeRoot) {
  		if (!$fakeRoot == '') {
  			if ($fakeRoot[0] !== '/') {
  				$fakeRoot = '/' . $fakeRoot;
  			}
  		}
  		$this->fakeRoot = $fakeRoot;
  	}
  
  	/**
  	 * get the fake root
  	 *
  	 * @return string
  	 */
  	public function getRoot() {
  		return $this->fakeRoot;
  	}
  
  	/**
  	 * get path relative to the root of the view
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	public function getRelativePath($path) {
6d9380f96   Cédric Dupont   Update sources OC...
78
  		$this->assertPathLength($path);
03e52840d   Kload   Init
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
  		if ($this->fakeRoot == '') {
  			return $path;
  		}
  		if (strpos($path, $this->fakeRoot) !== 0) {
  			return null;
  		} else {
  			$path = substr($path, strlen($this->fakeRoot));
  			if (strlen($path) === 0) {
  				return '/';
  			} else {
  				return $path;
  			}
  		}
  	}
  
  	/**
  	 * get the mountpoint of the storage object for a path
  	 * ( note: because a storage is not always mounted inside the fakeroot, the
  	 * returned mountpoint is relative to the absolute root of the filesystem
  	 * and doesn't take the chroot into account )
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	public function getMountPoint($path) {
  		return Filesystem::getMountPoint($this->getAbsolutePath($path));
  	}
  
  	/**
  	 * resolve a path to a storage and internal path
  	 *
  	 * @param string $path
6d9380f96   Cédric Dupont   Update sources OC...
111
  	 * @return array an array consisting of the storage and the internal path
03e52840d   Kload   Init
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
  	 */
  	public function resolvePath($path) {
  		$a = $this->getAbsolutePath($path);
  		$p = Filesystem::normalizePath($a);
  		return Filesystem::resolvePath($p);
  	}
  
  	/**
  	 * return the path to a local version of the file
  	 * we need this because we can't know if a file is stored local or not from
  	 * outside the filestorage and for some purposes a local file is needed
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	public function getLocalFile($path) {
  		$parent = substr($path, 0, strrpos($path, '/'));
  		$path = $this->getAbsolutePath($path);
  		list($storage, $internalPath) = Filesystem::resolvePath($path);
  		if (Filesystem::isValidPath($parent) and $storage) {
  			return $storage->getLocalFile($internalPath);
  		} else {
  			return null;
  		}
  	}
  
  	/**
  	 * @param string $path
  	 * @return string
  	 */
  	public function getLocalFolder($path) {
  		$parent = substr($path, 0, strrpos($path, '/'));
  		$path = $this->getAbsolutePath($path);
  		list($storage, $internalPath) = Filesystem::resolvePath($path);
  		if (Filesystem::isValidPath($parent) and $storage) {
  			return $storage->getLocalFolder($internalPath);
  		} else {
  			return null;
  		}
  	}
  
  	/**
  	 * the following functions operate with arguments and return values identical
  	 * to those of their PHP built-in equivalents. Mostly they are merely wrappers
  	 * for \OC\Files\Storage\Storage via basicOperation().
  	 */
  	public function mkdir($path) {
  		return $this->basicOperation('mkdir', $path, array('create', 'write'));
  	}
6d9380f96   Cédric Dupont   Update sources OC...
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
  	/**
  	 * remove mount point
  	 *
  	 * @param \OC\Files\Mount\MoveableMount $mount
  	 * @param string $path relative to data/
  	 * @return boolean
  	 */
  	protected function removeMount($mount, $path){
  		if ($mount instanceof MoveableMount) {
  			// cut of /user/files to get the relative path to data/user/files
  			$pathParts= explode('/', $path, 4);
  			$relPath = '/' . $pathParts[3];
  			\OC_Hook::emit(
  				Filesystem::CLASSNAME, "umount",
  				array(Filesystem::signal_param_path => $relPath)
  			);
  			$result = $mount->removeMount();
  			if ($result) {
  				\OC_Hook::emit(
  					Filesystem::CLASSNAME, "post_umount",
  					array(Filesystem::signal_param_path => $relPath)
  				);
  			}
  			return $result;
  		} else {
  			// do not allow deleting the storage's root / the mount point
  			// because for some storages it might delete the whole contents
  			// but isn't supposed to work that way
  			return false;
  		}
  	}
03e52840d   Kload   Init
192
  	public function rmdir($path) {
6d9380f96   Cédric Dupont   Update sources OC...
193
194
195
196
197
  		$absolutePath= $this->getAbsolutePath($path);
  		$mount = Filesystem::getMountManager()->find($absolutePath);
  		if ($mount->getInternalPath($absolutePath) === '') {
  			return $this->removeMount($mount, $path);
  		}
31b7f2792   Kload   Upgrade to ownclo...
198
199
200
201
202
  		if ($this->is_dir($path)) {
  			return $this->basicOperation('rmdir', $path, array('delete'));
  		} else {
  			return false;
  		}
03e52840d   Kload   Init
203
  	}
6d9380f96   Cédric Dupont   Update sources OC...
204
205
206
207
  	/**
  	 * @param string $path
  	 * @return resource
  	 */
03e52840d   Kload   Init
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
  	public function opendir($path) {
  		return $this->basicOperation('opendir', $path, array('read'));
  	}
  
  	public function readdir($handle) {
  		$fsLocal = new Storage\Local(array('datadir' => '/'));
  		return $fsLocal->readdir($handle);
  	}
  
  	public function is_dir($path) {
  		if ($path == '/') {
  			return true;
  		}
  		return $this->basicOperation('is_dir', $path);
  	}
  
  	public function is_file($path) {
  		if ($path == '/') {
  			return false;
  		}
  		return $this->basicOperation('is_file', $path);
  	}
  
  	public function stat($path) {
  		return $this->basicOperation('stat', $path);
  	}
  
  	public function filetype($path) {
  		return $this->basicOperation('filetype', $path);
  	}
  
  	public function filesize($path) {
  		return $this->basicOperation('filesize', $path);
  	}
  
  	public function readfile($path) {
6d9380f96   Cédric Dupont   Update sources OC...
244
  		$this->assertPathLength($path);
03e52840d   Kload   Init
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
  		@ob_end_clean();
  		$handle = $this->fopen($path, 'rb');
  		if ($handle) {
  			$chunkSize = 8192; // 8 kB chunks
  			while (!feof($handle)) {
  				echo fread($handle, $chunkSize);
  				flush();
  			}
  			$size = $this->filesize($path);
  			return $size;
  		}
  		return false;
  	}
  
  	public function isCreatable($path) {
  		return $this->basicOperation('isCreatable', $path);
  	}
  
  	public function isReadable($path) {
  		return $this->basicOperation('isReadable', $path);
  	}
  
  	public function isUpdatable($path) {
  		return $this->basicOperation('isUpdatable', $path);
  	}
  
  	public function isDeletable($path) {
  		return $this->basicOperation('isDeletable', $path);
  	}
  
  	public function isSharable($path) {
  		return $this->basicOperation('isSharable', $path);
  	}
  
  	public function file_exists($path) {
  		if ($path == '/') {
  			return true;
  		}
  		return $this->basicOperation('file_exists', $path);
  	}
  
  	public function filemtime($path) {
  		return $this->basicOperation('filemtime', $path);
  	}
  
  	public function touch($path, $mtime = null) {
  		if (!is_null($mtime) and !is_numeric($mtime)) {
  			$mtime = strtotime($mtime);
  		}
  
  		$hooks = array('touch');
  
  		if (!$this->file_exists($path)) {
31b7f2792   Kload   Upgrade to ownclo...
298
  			$hooks[] = 'create';
03e52840d   Kload   Init
299
300
  			$hooks[] = 'write';
  		}
31b7f2792   Kload   Upgrade to ownclo...
301
302
303
304
305
  		$result = $this->basicOperation('touch', $path, $hooks, $mtime);
  		if (!$result) { //if native touch fails, we emulate it by changing the mtime in the cache
  			$this->putFileInfo($path, array('mtime' => $mtime));
  		}
  		return true;
03e52840d   Kload   Init
306
307
308
309
310
  	}
  
  	public function file_get_contents($path) {
  		return $this->basicOperation('file_get_contents', $path, array('read'));
  	}
6d9380f96   Cédric Dupont   Update sources OC...
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  	protected function emit_file_hooks_pre($exists, $path, &$run) {
  		if (!$exists) {
  			\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_create, array(
  				Filesystem::signal_param_path => $this->getHookPath($path),
  				Filesystem::signal_param_run => &$run,
  			));
  		} else {
  			\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_update, array(
  				Filesystem::signal_param_path => $this->getHookPath($path),
  				Filesystem::signal_param_run => &$run,
  			));
  		}
  		\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_write, array(
  			Filesystem::signal_param_path => $this->getHookPath($path),
  			Filesystem::signal_param_run => &$run,
  		));
  	}
  
  	protected function emit_file_hooks_post($exists, $path) {
  		if (!$exists) {
  			\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_create, array(
  				Filesystem::signal_param_path => $this->getHookPath($path),
  			));
  		} else {
  			\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_update, array(
  				Filesystem::signal_param_path => $this->getHookPath($path),
  			));
  		}
  		\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_write, array(
  			Filesystem::signal_param_path => $this->getHookPath($path),
  		));
  	}
03e52840d   Kload   Init
343
344
345
346
347
348
349
350
351
352
353
  	public function file_put_contents($path, $data) {
  		if (is_resource($data)) { //not having to deal with streams in file_put_contents makes life easier
  			$absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
  			if (\OC_FileProxy::runPreProxies('file_put_contents', $absolutePath, $data)
  				and Filesystem::isValidPath($path)
  				and !Filesystem::isFileBlacklisted($path)
  			) {
  				$path = $this->getRelativePath($absolutePath);
  				$exists = $this->file_exists($path);
  				$run = true;
  				if ($this->shouldEmitHooks($path)) {
6d9380f96   Cédric Dupont   Update sources OC...
354
  					$this->emit_file_hooks_pre($exists, $path, $run);
03e52840d   Kload   Init
355
356
357
358
359
360
361
362
363
364
  				}
  				if (!$run) {
  					return false;
  				}
  				$target = $this->fopen($path, 'w');
  				if ($target) {
  					list ($count, $result) = \OC_Helper::streamCopy($data, $target);
  					fclose($target);
  					fclose($data);
  					if ($this->shouldEmitHooks($path) && $result !== false) {
6d9380f96   Cédric Dupont   Update sources OC...
365
366
367
368
  						Updater::writeHook(array(
  							'path' => $this->getHookPath($path)
  						));
  						$this->emit_file_hooks_post($exists, $path);
03e52840d   Kload   Init
369
370
371
372
373
374
375
376
377
378
  					}
  					\OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count);
  					return $result;
  				} else {
  					return false;
  				}
  			} else {
  				return false;
  			}
  		} else {
6d9380f96   Cédric Dupont   Update sources OC...
379
  			$hooks = ($this->file_exists($path)) ? array('update', 'write') : array('create', 'write');
31b7f2792   Kload   Upgrade to ownclo...
380
  			return $this->basicOperation('file_put_contents', $path, $hooks, $data);
03e52840d   Kload   Init
381
382
383
384
  		}
  	}
  
  	public function unlink($path) {
a293d369c   Kload   Update sources to...
385
386
387
388
389
390
  		if ($path === '' || $path === '/') {
  			// do not allow deleting the root
  			return false;
  		}
  		$postFix = (substr($path, -1, 1) === '/') ? '/' : '';
  		$absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
6d9380f96   Cédric Dupont   Update sources OC...
391
392
393
  		$mount = Filesystem::getMountManager()->find($absolutePath . $postFix);
  		if ($mount->getInternalPath($absolutePath) === '') {
  			return $this->removeMount($mount, $absolutePath);
a293d369c   Kload   Update sources to...
394
  		}
03e52840d   Kload   Init
395
396
  		return $this->basicOperation('unlink', $path, array('delete'));
  	}
6d9380f96   Cédric Dupont   Update sources OC...
397
398
399
  	/**
  	 * @param string $directory
  	 */
03e52840d   Kload   Init
400
  	public function deleteAll($directory, $empty = false) {
31b7f2792   Kload   Upgrade to ownclo...
401
  		return $this->rmdir($directory);
03e52840d   Kload   Init
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
  	}
  
  	public function rename($path1, $path2) {
  		$postFix1 = (substr($path1, -1, 1) === '/') ? '/' : '';
  		$postFix2 = (substr($path2, -1, 1) === '/') ? '/' : '';
  		$absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($path1));
  		$absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($path2));
  		if (
  			\OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2)
  			and Filesystem::isValidPath($path2)
  			and Filesystem::isValidPath($path1)
  			and !Filesystem::isFileBlacklisted($path2)
  		) {
  			$path1 = $this->getRelativePath($absolutePath1);
  			$path2 = $this->getRelativePath($absolutePath2);
6d9380f96   Cédric Dupont   Update sources OC...
417
  			$exists = $this->file_exists($path2);
03e52840d   Kload   Init
418
419
420
421
422
423
424
  
  			if ($path1 == null or $path2 == null) {
  				return false;
  			}
  			$run = true;
  			if ($this->shouldEmitHooks() && (Cache\Scanner::isPartialFile($path1) && !Cache\Scanner::isPartialFile($path2))) {
  				// if it was a rename from a part file to a regular file it was a write and not a rename operation
6d9380f96   Cédric Dupont   Update sources OC...
425
  				$this->emit_file_hooks_pre($exists, $path2, $run);
03e52840d   Kload   Init
426
427
428
429
430
431
432
433
434
435
436
437
438
  			} elseif ($this->shouldEmitHooks()) {
  				\OC_Hook::emit(
  					Filesystem::CLASSNAME, Filesystem::signal_rename,
  					array(
  						Filesystem::signal_param_oldpath => $this->getHookPath($path1),
  						Filesystem::signal_param_newpath => $this->getHookPath($path2),
  						Filesystem::signal_param_run => &$run
  					)
  				);
  			}
  			if ($run) {
  				$mp1 = $this->getMountPoint($path1 . $postFix1);
  				$mp2 = $this->getMountPoint($path2 . $postFix2);
6d9380f96   Cédric Dupont   Update sources OC...
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
  				$manager = Filesystem::getMountManager();
  				$mount = $manager->find($absolutePath1 . $postFix1);
  				$storage1 = $mount->getStorage();
  				$internalPath1 = $mount->getInternalPath($absolutePath1 . $postFix1);
  				list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2);
  				if ($internalPath1 === '' and $mount instanceof MoveableMount) {
  					if ($this->isTargetAllowed($absolutePath2)) {
  						/**
  						 * @var \OC\Files\Mount\Mount | \OC\Files\Mount\MoveableMount $mount
  						 */
  						$sourceMountPoint = $mount->getMountPoint();
  						$result = $mount->moveMount($absolutePath2);
  						$manager->moveMount($sourceMountPoint, $mount->getMountPoint());
  						\OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2);
  					} else {
  						$result = false;
  					}
  				} elseif ($mp1 == $mp2) {
  					if ($storage1) {
  						$result = $storage1->rename($internalPath1, $internalPath2);
31b7f2792   Kload   Upgrade to ownclo...
459
  						\OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2);
03e52840d   Kload   Init
460
461
462
463
464
465
466
  					} else {
  						$result = false;
  					}
  				} else {
  					if ($this->is_dir($path1)) {
  						$result = $this->copy($path1, $path2);
  						if ($result === true) {
6d9380f96   Cédric Dupont   Update sources OC...
467
  							$result = $storage1->rmdir($internalPath1);
03e52840d   Kload   Init
468
469
470
471
472
  						}
  					} else {
  						$source = $this->fopen($path1 . $postFix1, 'r');
  						$target = $this->fopen($path2 . $postFix2, 'w');
  						list($count, $result) = \OC_Helper::streamCopy($source, $target);
31b7f2792   Kload   Upgrade to ownclo...
473
474
475
476
477
  
  						// close open handle - especially $source is necessary because unlink below will
  						// throw an exception on windows because the file is locked
  						fclose($source);
  						fclose($target);
03e52840d   Kload   Init
478
  						if ($result !== false) {
03e52840d   Kload   Init
479
480
481
482
483
484
  							$storage1->unlink($internalPath1);
  						}
  					}
  				}
  				if ($this->shouldEmitHooks() && (Cache\Scanner::isPartialFile($path1) && !Cache\Scanner::isPartialFile($path2)) && $result !== false) {
  					// if it was a rename from a part file to a regular file it was a write and not a rename operation
6d9380f96   Cédric Dupont   Update sources OC...
485
486
  					Updater::writeHook(array('path' => $this->getHookPath($path2)));
  					$this->emit_file_hooks_post($exists, $path2);
03e52840d   Kload   Init
487
  				} elseif ($this->shouldEmitHooks() && $result !== false) {
6d9380f96   Cédric Dupont   Update sources OC...
488
489
490
491
  					Updater::renameHook(array(
  						'oldpath' => $this->getHookPath($path1),
  						'newpath' => $this->getHookPath($path2)
  					));
03e52840d   Kload   Init
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
  					\OC_Hook::emit(
  						Filesystem::CLASSNAME,
  						Filesystem::signal_post_rename,
  						array(
  							Filesystem::signal_param_oldpath => $this->getHookPath($path1),
  							Filesystem::signal_param_newpath => $this->getHookPath($path2)
  						)
  					);
  				}
  				return $result;
  			} else {
  				return false;
  			}
  		} else {
  			return false;
  		}
  	}
  
  	public function copy($path1, $path2) {
  		$postFix1 = (substr($path1, -1, 1) === '/') ? '/' : '';
  		$postFix2 = (substr($path2, -1, 1) === '/') ? '/' : '';
  		$absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($path1));
  		$absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($path2));
  		if (
  			\OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2)
  			and Filesystem::isValidPath($path2)
  			and Filesystem::isValidPath($path1)
  			and !Filesystem::isFileBlacklisted($path2)
  		) {
  			$path1 = $this->getRelativePath($absolutePath1);
  			$path2 = $this->getRelativePath($absolutePath2);
  
  			if ($path1 == null or $path2 == null) {
  				return false;
  			}
  			$run = true;
  			$exists = $this->file_exists($path2);
  			if ($this->shouldEmitHooks()) {
  				\OC_Hook::emit(
  					Filesystem::CLASSNAME,
  					Filesystem::signal_copy,
  					array(
  						Filesystem::signal_param_oldpath => $this->getHookPath($path1),
  						Filesystem::signal_param_newpath => $this->getHookPath($path2),
  						Filesystem::signal_param_run => &$run
  					)
  				);
6d9380f96   Cédric Dupont   Update sources OC...
539
  				$this->emit_file_hooks_pre($exists, $path2, $run);
03e52840d   Kload   Init
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
  			}
  			if ($run) {
  				$mp1 = $this->getMountPoint($path1 . $postFix1);
  				$mp2 = $this->getMountPoint($path2 . $postFix2);
  				if ($mp1 == $mp2) {
  					list($storage, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1);
  					list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2);
  					if ($storage) {
  						$result = $storage->copy($internalPath1, $internalPath2);
  					} else {
  						$result = false;
  					}
  				} else {
  					if ($this->is_dir($path1) && ($dh = $this->opendir($path1))) {
  						$result = $this->mkdir($path2);
31b7f2792   Kload   Upgrade to ownclo...
555
  						if (is_resource($dh)) {
03e52840d   Kload   Init
556
557
558
559
560
561
562
563
564
565
  							while (($file = readdir($dh)) !== false) {
  								if (!Filesystem::isIgnoredDir($file)) {
  									$result = $this->copy($path1 . '/' . $file, $path2 . '/' . $file);
  								}
  							}
  						}
  					} else {
  						$source = $this->fopen($path1 . $postFix1, 'r');
  						$target = $this->fopen($path2 . $postFix2, 'w');
  						list($count, $result) = \OC_Helper::streamCopy($source, $target);
a293d369c   Kload   Update sources to...
566
567
  						fclose($source);
  						fclose($target);
03e52840d   Kload   Init
568
569
570
571
572
573
574
575
576
577
578
  					}
  				}
  				if ($this->shouldEmitHooks() && $result !== false) {
  					\OC_Hook::emit(
  						Filesystem::CLASSNAME,
  						Filesystem::signal_post_copy,
  						array(
  							Filesystem::signal_param_oldpath => $this->getHookPath($path1),
  							Filesystem::signal_param_newpath => $this->getHookPath($path2)
  						)
  					);
6d9380f96   Cédric Dupont   Update sources OC...
579
  					$this->emit_file_hooks_post($exists, $path2);
03e52840d   Kload   Init
580
581
582
583
584
585
586
587
588
  				}
  				return $result;
  			} else {
  				return false;
  			}
  		} else {
  			return false;
  		}
  	}
6d9380f96   Cédric Dupont   Update sources OC...
589
590
591
592
593
  	/**
  	 * @param string $path
  	 * @param string $mode
  	 * @return resource
  	 */
03e52840d   Kload   Init
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
  	public function fopen($path, $mode) {
  		$hooks = array();
  		switch ($mode) {
  			case 'r':
  			case 'rb':
  				$hooks[] = 'read';
  				break;
  			case 'r+':
  			case 'rb+':
  			case 'w+':
  			case 'wb+':
  			case 'x+':
  			case 'xb+':
  			case 'a+':
  			case 'ab+':
  				$hooks[] = 'read';
  				$hooks[] = 'write';
  				break;
  			case 'w':
  			case 'wb':
  			case 'x':
  			case 'xb':
  			case 'a':
  			case 'ab':
  				$hooks[] = 'write';
  				break;
  			default:
  				\OC_Log::write('core', 'invalid mode (' . $mode . ') for ' . $path, \OC_Log::ERROR);
  		}
  
  		return $this->basicOperation('fopen', $path, $hooks, $mode);
  	}
  
  	public function toTmpFile($path) {
6d9380f96   Cédric Dupont   Update sources OC...
628
  		$this->assertPathLength($path);
03e52840d   Kload   Init
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
  		if (Filesystem::isValidPath($path)) {
  			$source = $this->fopen($path, 'r');
  			if ($source) {
  				$extension = pathinfo($path, PATHINFO_EXTENSION);
  				$tmpFile = \OC_Helper::tmpFile($extension);
  				file_put_contents($tmpFile, $source);
  				return $tmpFile;
  			} else {
  				return false;
  			}
  		} else {
  			return false;
  		}
  	}
  
  	public function fromTmpFile($tmpFile, $path) {
6d9380f96   Cédric Dupont   Update sources OC...
645
  		$this->assertPathLength($path);
03e52840d   Kload   Init
646
  		if (Filesystem::isValidPath($path)) {
6d9380f96   Cédric Dupont   Update sources OC...
647
648
649
650
651
652
653
654
  
  			// Get directory that the file is going into
  			$filePath = dirname($path);
  
  			// Create the directories if any
  			if (!$this->file_exists($filePath)) {
  				$this->mkdir($filePath);
  			}
03e52840d   Kload   Init
655
656
657
  			if (!$tmpFile) {
  				debug_print_backtrace();
  			}
6d9380f96   Cédric Dupont   Update sources OC...
658

03e52840d   Kload   Init
659
660
661
662
663
664
665
666
667
668
669
670
671
672
  			$source = fopen($tmpFile, 'r');
  			if ($source) {
  				$this->file_put_contents($path, $source);
  				unlink($tmpFile);
  				return true;
  			} else {
  				return false;
  			}
  		} else {
  			return false;
  		}
  	}
  
  	public function getMimeType($path) {
6d9380f96   Cédric Dupont   Update sources OC...
673
  		$this->assertPathLength($path);
03e52840d   Kload   Init
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
  		return $this->basicOperation('getMimeType', $path);
  	}
  
  	public function hash($type, $path, $raw = false) {
  		$postFix = (substr($path, -1, 1) === '/') ? '/' : '';
  		$absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
  		if (\OC_FileProxy::runPreProxies('hash', $absolutePath) && Filesystem::isValidPath($path)) {
  			$path = $this->getRelativePath($absolutePath);
  			if ($path == null) {
  				return false;
  			}
  			if ($this->shouldEmitHooks($path)) {
  				\OC_Hook::emit(
  					Filesystem::CLASSNAME,
  					Filesystem::signal_read,
  					array(Filesystem::signal_param_path => $this->getHookPath($path))
  				);
  			}
  			list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix);
  			if ($storage) {
  				$result = $storage->hash($type, $internalPath, $raw);
  				$result = \OC_FileProxy::runPostProxies('hash', $absolutePath, $result);
  				return $result;
  			}
  		}
  		return null;
  	}
  
  	public function free_space($path = '/') {
6d9380f96   Cédric Dupont   Update sources OC...
703
  		$this->assertPathLength($path);
03e52840d   Kload   Init
704
705
706
707
  		return $this->basicOperation('free_space', $path);
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
708
709
  	 * abstraction layer for basic filesystem functions: wrapper for \OC\Files\Storage\Storage
  	 *
03e52840d   Kload   Init
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
  	 * @param string $operation
  	 * @param string $path
  	 * @param array $hooks (optional)
  	 * @param mixed $extraParam (optional)
  	 * @return mixed
  	 *
  	 * This method takes requests for basic filesystem functions (e.g. reading & writing
  	 * files), processes hooks and proxies, sanitises paths, and finally passes them on to
  	 * \OC\Files\Storage\Storage for delegation to a storage backend for execution
  	 */
  	private function basicOperation($operation, $path, $hooks = array(), $extraParam = null) {
  		$postFix = (substr($path, -1, 1) === '/') ? '/' : '';
  		$absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
  		if (\OC_FileProxy::runPreProxies($operation, $absolutePath, $extraParam)
  			and Filesystem::isValidPath($path)
  			and !Filesystem::isFileBlacklisted($path)
  		) {
  			$path = $this->getRelativePath($absolutePath);
  			if ($path == null) {
  				return false;
  			}
  
  			$run = $this->runHooks($hooks, $path);
  			list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix);
  			if ($run and $storage) {
  				if (!is_null($extraParam)) {
  					$result = $storage->$operation($internalPath, $extraParam);
  				} else {
  					$result = $storage->$operation($internalPath);
  				}
  				$result = \OC_FileProxy::runPostProxies($operation, $this->getAbsolutePath($path), $result);
  				if ($this->shouldEmitHooks($path) && $result !== false) {
  					if ($operation != 'fopen') { //no post hooks for fopen, the file stream is still open
  						$this->runHooks($hooks, $path, true);
  					}
  				}
  				return $result;
  			}
  		}
  		return null;
  	}
  
  	/**
  	 * get the path relative to the default root for hook usage
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	private function getHookPath($path) {
  		if (!Filesystem::getView()) {
  			return $path;
  		}
  		return Filesystem::getView()->getRelativePath($this->getAbsolutePath($path));
  	}
  
  	private function shouldEmitHooks($path = '') {
  		if ($path && Cache\Scanner::isPartialFile($path)) {
  			return false;
  		}
  		if (!Filesystem::$loaded) {
  			return false;
  		}
  		$defaultRoot = Filesystem::getRoot();
31b7f2792   Kload   Upgrade to ownclo...
773
  		if ($this->fakeRoot === $defaultRoot) {
03e52840d   Kload   Init
774
775
776
777
  			return true;
  		}
  		return (strlen($this->fakeRoot) > strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot) + 1) === $defaultRoot . '/');
  	}
6d9380f96   Cédric Dupont   Update sources OC...
778
779
780
781
782
783
  	/**
  	 * @param string[] $hooks
  	 * @param string $path
  	 * @param bool $post
  	 * @return bool
  	 */
03e52840d   Kload   Init
784
785
786
787
788
789
  	private function runHooks($hooks, $path, $post = false) {
  		$path = $this->getHookPath($path);
  		$prefix = ($post) ? 'post_' : '';
  		$run = true;
  		if ($this->shouldEmitHooks($path)) {
  			foreach ($hooks as $hook) {
6d9380f96   Cédric Dupont   Update sources OC...
790
791
792
793
794
795
796
797
798
799
  				// manually triger updater hooks to ensure they are called first
  				if ($post) {
  					if ($hook == 'write') {
  						Updater::writeHook(array('path' => $path));
  					} elseif ($hook == 'touch') {
  						Updater::touchHook(array('path' => $path));
  					} else if ($hook == 'delete') {
  						Updater::deleteHook(array('path' => $path));
  					}
  				}
03e52840d   Kload   Init
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
  				if ($hook != 'read') {
  					\OC_Hook::emit(
  						Filesystem::CLASSNAME,
  						$prefix . $hook,
  						array(
  							Filesystem::signal_param_run => &$run,
  							Filesystem::signal_param_path => $path
  						)
  					);
  				} elseif (!$post) {
  					\OC_Hook::emit(
  						Filesystem::CLASSNAME,
  						$prefix . $hook,
  						array(
  							Filesystem::signal_param_path => $path
  						)
  					);
  				}
  			}
  		}
  		return $run;
  	}
  
  	/**
  	 * check if a file or folder has been updated since $time
  	 *
  	 * @param string $path
  	 * @param int $time
  	 * @return bool
  	 */
  	public function hasUpdated($path, $time) {
  		return $this->basicOperation('hasUpdated', $path, array(), $time);
  	}
  
  	/**
  	 * get the filesystem info
  	 *
  	 * @param string $path
6d9380f96   Cédric Dupont   Update sources OC...
838
839
  	 * @param boolean|string $includeMountPoints true to add mountpoint sizes,
  	 * 'ext' to add only ext storage mount point sizes. Defaults to true.
31b7f2792   Kload   Upgrade to ownclo...
840
  	 * defaults to true
6d9380f96   Cédric Dupont   Update sources OC...
841
  	 * @return \OC\Files\FileInfo|false
03e52840d   Kload   Init
842
  	 */
31b7f2792   Kload   Upgrade to ownclo...
843
  	public function getFileInfo($path, $includeMountPoints = true) {
6d9380f96   Cédric Dupont   Update sources OC...
844
  		$this->assertPathLength($path);
03e52840d   Kload   Init
845
846
847
848
849
  		$data = array();
  		if (!Filesystem::isValidPath($path)) {
  			return $data;
  		}
  		$path = Filesystem::normalizePath($this->fakeRoot . '/' . $path);
6d9380f96   Cédric Dupont   Update sources OC...
850
851
852
853
854
  
  		$mount = Filesystem::getMountManager()->find($path);
  		$storage = $mount->getStorage();
  		$internalPath = $mount->getInternalPath($path);
  		$data = null;
03e52840d   Kload   Init
855
856
  		if ($storage) {
  			$cache = $storage->getCache($internalPath);
03e52840d   Kload   Init
857
858
  
  			if (!$cache->inCache($internalPath)) {
6d9380f96   Cédric Dupont   Update sources OC...
859
860
861
  				if (!$storage->file_exists($internalPath)) {
  					return false;
  				}
03e52840d   Kload   Init
862
863
864
865
  				$scanner = $storage->getScanner($internalPath);
  				$scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW);
  			} else {
  				$watcher = $storage->getWatcher($internalPath);
6d9380f96   Cédric Dupont   Update sources OC...
866
  				$data = $watcher->checkUpdate($internalPath);
03e52840d   Kload   Init
867
  			}
6d9380f96   Cédric Dupont   Update sources OC...
868
869
870
  			if (!is_array($data)) {
  				$data = $cache->get($internalPath);
  			}
03e52840d   Kload   Init
871

6d9380f96   Cédric Dupont   Update sources OC...
872
873
874
875
876
  			if ($data and isset($data['fileid'])) {
  				if ($data['permissions'] === 0) {
  					$data['permissions'] = $storage->getPermissions($data['path']);
  					$cache->update($data['fileid'], array('permissions' => $data['permissions']));
  				}
31b7f2792   Kload   Upgrade to ownclo...
877
  				if ($includeMountPoints and $data['mimetype'] === 'httpd/unix-directory') {
6d9380f96   Cédric Dupont   Update sources OC...
878
879
  					//add the sizes of other mount points to the folder
  					$extOnly = ($includeMountPoints === 'ext');
03e52840d   Kload   Init
880
881
882
883
  					$mountPoints = Filesystem::getMountPoints($path);
  					foreach ($mountPoints as $mountPoint) {
  						$subStorage = Filesystem::getStorage($mountPoint);
  						if ($subStorage) {
6d9380f96   Cédric Dupont   Update sources OC...
884
885
886
887
  							// exclude shared storage ?
  							if ($extOnly && $subStorage instanceof \OC\Files\Storage\Shared) {
  								continue;
  							}
03e52840d   Kload   Init
888
889
890
891
892
893
  							$subCache = $subStorage->getCache('');
  							$rootEntry = $subCache->get('');
  							$data['size'] += isset($rootEntry['size']) ? $rootEntry['size'] : 0;
  						}
  					}
  				}
03e52840d   Kload   Init
894
895
  			}
  		}
6d9380f96   Cédric Dupont   Update sources OC...
896
897
898
899
900
901
902
  		if (!$data) {
  			return false;
  		}
  
  		if ($mount instanceof MoveableMount && $internalPath === '') {
  			$data['permissions'] |= \OCP\PERMISSION_DELETE | \OCP\PERMISSION_UPDATE;
  		}
03e52840d   Kload   Init
903
904
  
  		$data = \OC_FileProxy::runPostProxies('getFileInfo', $path, $data);
6d9380f96   Cédric Dupont   Update sources OC...
905
  		return new FileInfo($path, $storage, $internalPath, $data);
03e52840d   Kload   Init
906
907
908
909
910
911
  	}
  
  	/**
  	 * get the content of a directory
  	 *
  	 * @param string $directory path under datadirectory
31b7f2792   Kload   Upgrade to ownclo...
912
  	 * @param string $mimetype_filter limit returned content to this mimetype or mimepart
6d9380f96   Cédric Dupont   Update sources OC...
913
  	 * @return FileInfo[]
03e52840d   Kload   Init
914
915
  	 */
  	public function getDirectoryContent($directory, $mimetype_filter = '') {
6d9380f96   Cédric Dupont   Update sources OC...
916
  		$this->assertPathLength($directory);
03e52840d   Kload   Init
917
918
919
920
921
  		$result = array();
  		if (!Filesystem::isValidPath($directory)) {
  			return $result;
  		}
  		$path = Filesystem::normalizePath($this->fakeRoot . '/' . $directory);
03e52840d   Kload   Init
922
923
924
  		list($storage, $internalPath) = Filesystem::resolvePath($path);
  		if ($storage) {
  			$cache = $storage->getCache($internalPath);
03e52840d   Kload   Init
925
926
927
928
929
930
931
932
933
  			$user = \OC_User::getUser();
  
  			if ($cache->getStatus($internalPath) < Cache\Cache::COMPLETE) {
  				$scanner = $storage->getScanner($internalPath);
  				$scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW);
  			} else {
  				$watcher = $storage->getWatcher($internalPath);
  				$watcher->checkUpdate($internalPath);
  			}
6d9380f96   Cédric Dupont   Update sources OC...
934
935
936
937
938
939
940
941
942
943
  			$folderId = $cache->getId($internalPath);
  			/**
  			 * @var \OC\Files\FileInfo[] $files
  			 */
  			$files = array();
  			$contents = $cache->getFolderContents($internalPath, $folderId); //TODO: mimetype_filter
  			foreach ($contents as $content) {
  				if ($content['permissions'] === 0) {
  					$content['permissions'] = $storage->getPermissions($content['path']);
  					$cache->update($content['fileid'], array('permissions' => $content['permissions']));
03e52840d   Kload   Init
944
  				}
6d9380f96   Cédric Dupont   Update sources OC...
945
  				$files[] = new FileInfo($path . '/' . $content['name'], $storage, $content['path'], $content);
03e52840d   Kload   Init
946
947
948
  			}
  
  			//add a folder for any mountpoint in this directory and add the sizes of other mountpoints to the folders
6d9380f96   Cédric Dupont   Update sources OC...
949
  			$mounts = Filesystem::getMountManager()->findIn($path);
03e52840d   Kload   Init
950
  			$dirLength = strlen($path);
6d9380f96   Cédric Dupont   Update sources OC...
951
952
  			foreach ($mounts as $mount) {
  				$mountPoint = $mount->getMountPoint();
03e52840d   Kload   Init
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
  				$subStorage = Filesystem::getStorage($mountPoint);
  				if ($subStorage) {
  					$subCache = $subStorage->getCache('');
  
  					if ($subCache->getStatus('') === Cache\Cache::NOT_FOUND) {
  						$subScanner = $subStorage->getScanner('');
  						$subScanner->scanFile('');
  					}
  
  					$rootEntry = $subCache->get('');
  					if ($rootEntry) {
  						$relativePath = trim(substr($mountPoint, $dirLength), '/');
  						if ($pos = strpos($relativePath, '/')) {
  							//mountpoint inside subfolder add size to the correct folder
  							$entryName = substr($relativePath, 0, $pos);
  							foreach ($files as &$entry) {
  								if ($entry['name'] === $entryName) {
  									$entry['size'] += $rootEntry['size'];
  								}
  							}
  						} else { //mountpoint in this folder, add an entry for it
  							$rootEntry['name'] = $relativePath;
  							$rootEntry['type'] = $rootEntry['mimetype'] === 'httpd/unix-directory' ? 'dir' : 'file';
6d9380f96   Cédric Dupont   Update sources OC...
976
977
978
979
980
981
982
  							$permissions = $rootEntry['permissions'];
  							// do not allow renaming/deleting the mount point if they are not shared files/folders
  							// for shared files/folders we use the permissions given by the owner
  							if ($mount instanceof MoveableMount) {
  								$rootEntry['permissions'] = $permissions | \OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE;
  							} else {
  								$rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE));
03e52840d   Kload   Init
983
  							}
03e52840d   Kload   Init
984
985
986
987
988
989
990
991
  
  							//remove any existing entry with the same name
  							foreach ($files as $i => $file) {
  								if ($file['name'] === $rootEntry['name']) {
  									unset($files[$i]);
  									break;
  								}
  							}
6d9380f96   Cédric Dupont   Update sources OC...
992
993
  							$rootEntry['path'] = substr($path . '/' . $rootEntry['name'], strlen($user) + 2); // full path without /$user/
  							$files[] = new FileInfo($path . '/' . $rootEntry['name'], $subStorage, '', $rootEntry);
03e52840d   Kload   Init
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
  						}
  					}
  				}
  			}
  
  			if ($mimetype_filter) {
  				foreach ($files as $file) {
  					if (strpos($mimetype_filter, '/')) {
  						if ($file['mimetype'] === $mimetype_filter) {
  							$result[] = $file;
  						}
  					} else {
  						if ($file['mimepart'] === $mimetype_filter) {
  							$result[] = $file;
  						}
  					}
  				}
  			} else {
  				$result = $files;
  			}
  		}
6d9380f96   Cédric Dupont   Update sources OC...
1015

03e52840d   Kload   Init
1016
1017
1018
1019
1020
1021
1022
  		return $result;
  	}
  
  	/**
  	 * change file metadata
  	 *
  	 * @param string $path
6d9380f96   Cédric Dupont   Update sources OC...
1023
  	 * @param array|\OCP\Files\FileInfo $data
03e52840d   Kload   Init
1024
1025
1026
1027
1028
  	 * @return int
  	 *
  	 * returns the fileid of the updated file
  	 */
  	public function putFileInfo($path, $data) {
6d9380f96   Cédric Dupont   Update sources OC...
1029
1030
1031
1032
  		$this->assertPathLength($path);
  		if ($data instanceof FileInfo) {
  			$data = $data->getData();
  		}
03e52840d   Kload   Init
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
  		$path = Filesystem::normalizePath($this->fakeRoot . '/' . $path);
  		/**
  		 * @var \OC\Files\Storage\Storage $storage
  		 * @var string $internalPath
  		 */
  		list($storage, $internalPath) = Filesystem::resolvePath($path);
  		if ($storage) {
  			$cache = $storage->getCache($path);
  
  			if (!$cache->inCache($internalPath)) {
  				$scanner = $storage->getScanner($internalPath);
  				$scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW);
  			}
  
  			return $cache->put($internalPath, $data);
  		} else {
  			return -1;
  		}
  	}
  
  	/**
  	 * search for files with the name matching $query
  	 *
  	 * @param string $query
6d9380f96   Cédric Dupont   Update sources OC...
1057
  	 * @return FileInfo[]
03e52840d   Kload   Init
1058
1059
1060
1061
1062
1063
1064
1065
  	 */
  	public function search($query) {
  		return $this->searchCommon('%' . $query . '%', 'search');
  	}
  
  	/**
  	 * search for files by mimetype
  	 *
31b7f2792   Kload   Upgrade to ownclo...
1066
  	 * @param string $mimetype
6d9380f96   Cédric Dupont   Update sources OC...
1067
  	 * @return FileInfo[]
03e52840d   Kload   Init
1068
1069
1070
1071
1072
1073
1074
1075
  	 */
  	public function searchByMime($mimetype) {
  		return $this->searchCommon($mimetype, 'searchByMime');
  	}
  
  	/**
  	 * @param string $query
  	 * @param string $method
6d9380f96   Cédric Dupont   Update sources OC...
1076
  	 * @return FileInfo[]
03e52840d   Kload   Init
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
  	 */
  	private function searchCommon($query, $method) {
  		$files = array();
  		$rootLength = strlen($this->fakeRoot);
  
  		$mountPoint = Filesystem::getMountPoint($this->fakeRoot);
  		$storage = Filesystem::getStorage($mountPoint);
  		if ($storage) {
  			$cache = $storage->getCache('');
  
  			$results = $cache->$method($query);
  			foreach ($results as $result) {
31b7f2792   Kload   Upgrade to ownclo...
1089
  				if (substr($mountPoint . $result['path'], 0, $rootLength + 1) === $this->fakeRoot . '/') {
6d9380f96   Cédric Dupont   Update sources OC...
1090
1091
  					$internalPath = $result['path'];
  					$path = $mountPoint . $result['path'];
03e52840d   Kload   Init
1092
  					$result['path'] = substr($mountPoint . $result['path'], $rootLength);
6d9380f96   Cédric Dupont   Update sources OC...
1093
  					$files[] = new FileInfo($path, $storage, $internalPath, $result);
03e52840d   Kload   Init
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
  				}
  			}
  
  			$mountPoints = Filesystem::getMountPoints($this->fakeRoot);
  			foreach ($mountPoints as $mountPoint) {
  				$storage = Filesystem::getStorage($mountPoint);
  				if ($storage) {
  					$cache = $storage->getCache('');
  
  					$relativeMountPoint = substr($mountPoint, $rootLength);
  					$results = $cache->$method($query);
31b7f2792   Kload   Upgrade to ownclo...
1105
1106
  					if ($results) {
  						foreach ($results as $result) {
6d9380f96   Cédric Dupont   Update sources OC...
1107
1108
1109
1110
  							$internalPath = $result['path'];
  							$result['path'] = rtrim($relativeMountPoint . $result['path'], '/');
  							$path = rtrim($mountPoint . $internalPath, '/');
  							$files[] = new FileInfo($path, $storage, $internalPath, $result);
31b7f2792   Kload   Upgrade to ownclo...
1111
  						}
03e52840d   Kload   Init
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
  					}
  				}
  			}
  		}
  		return $files;
  	}
  
  	/**
  	 * Get the owner for a file or folder
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	public function getOwner($path) {
  		return $this->basicOperation('getOwner', $path);
  	}
  
  	/**
  	 * get the ETag for a file or folder
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	public function getETag($path) {
  		/**
  		 * @var Storage\Storage $storage
  		 * @var string $internalPath
  		 */
  		list($storage, $internalPath) = $this->resolvePath($path);
  		if ($storage) {
  			return $storage->getETag($internalPath);
  		} else {
  			return null;
  		}
  	}
  
  	/**
  	 * Get the path of a file by id, relative to the view
  	 *
  	 * Note that the resulting path is not guarantied to be unique for the id, multiple paths can point to the same file
  	 *
  	 * @param int $id
6d9380f96   Cédric Dupont   Update sources OC...
1154
  	 * @return string|null
03e52840d   Kload   Init
1155
1156
  	 */
  	public function getPath($id) {
837968727   Kload   [enh] Upgrade to ...
1157
1158
1159
1160
1161
1162
  		$manager = Filesystem::getMountManager();
  		$mounts = $manager->findIn($this->fakeRoot);
  		$mounts[] = $manager->find($this->fakeRoot);
  		// reverse the array so we start with the storage this view is in
  		// which is the most likely to contain the file we're looking for
  		$mounts = array_reverse($mounts);
03e52840d   Kload   Init
1163
1164
  		foreach ($mounts as $mount) {
  			/**
837968727   Kload   [enh] Upgrade to ...
1165
  			 * @var \OC\Files\Mount\Mount $mount
03e52840d   Kload   Init
1166
  			 */
6d9380f96   Cédric Dupont   Update sources OC...
1167
1168
1169
1170
1171
1172
1173
1174
  			if ($mount->getStorage()) {
  				$cache = $mount->getStorage()->getCache();
  				$internalPath = $cache->getPathById($id);
  				if (is_string($internalPath)) {
  					$fullPath = $mount->getMountPoint() . $internalPath;
  					if (!is_null($path = $this->getRelativePath($fullPath))) {
  						return $path;
  					}
837968727   Kload   [enh] Upgrade to ...
1175
  				}
03e52840d   Kload   Init
1176
1177
1178
1179
  			}
  		}
  		return null;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
  
  	private function assertPathLength($path) {
  		$maxLen = min(PHP_MAXPATHLEN, 4000);
  		$pathLen = strlen($path);
  		if ($pathLen > $maxLen) {
  			throw new \OCP\Files\InvalidPathException("Path length($pathLen) exceeds max path length($maxLen): $path");
  		}
  	}
  
  	/**
  	 * check if it is allowed to move a mount point to a given target.
  	 * It is not allowed to move a mount point into a different mount point
  	 *
  	 * @param string $target path
  	 * @return boolean
  	 */
  	private function isTargetAllowed($target) {
  
  		$result = false;
  
  		list($targetStorage,) = \OC\Files\Filesystem::resolvePath($target);
  		if ($targetStorage->instanceOfStorage('\OCP\Files\IHomeStorage')) {
  			$result = true;
  		} else {
  			\OCP\Util::writeLog('files',
  				'It is not allowed to move one mount point into another one',
  				\OCP\Util::DEBUG);
  		}
  
  		return $result;
  	}
03e52840d   Kload   Init
1211
  }