Blame view

sources/lib/private/files/filesystem.php 18.8 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
  <?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 for abstraction of filesystem functions
31b7f2792   Kload   Upgrade to ownclo...
11
   * This class won't call any filesystem functions for itself but will pass them to the correct OC_Filestorage object
03e52840d   Kload   Init
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
   * this class should also handle all the file permission related stuff
   *
   * Hooks provided:
   *   read(path)
   *   write(path, &run)
   *   post_write(path)
   *   create(path, &run) (when a file is created, both create and write will be emitted in that order)
   *   post_create(path)
   *   delete(path, &run)
   *   post_delete(path)
   *   rename(oldpath,newpath, &run)
   *   post_rename(oldpath,newpath)
   *   copy(oldpath,newpath, &run) (if the newpath doesn't exists yes, copy, create and write will be emitted in that order)
   *   post_rename(oldpath,newpath)
   *   post_initMountPoints(user, user_dir)
   *
   *   the &run parameter can be set to false to prevent the operation from occurring
   */
  
  namespace OC\Files;
31b7f2792   Kload   Upgrade to ownclo...
32
33
34
35
  use OC\Files\Storage\Loader;
  const SPACE_NOT_COMPUTED = -1;
  const SPACE_UNKNOWN = -2;
  const SPACE_UNLIMITED = -3;
03e52840d   Kload   Init
36
37
  
  class Filesystem {
31b7f2792   Kload   Upgrade to ownclo...
38
39
40
41
  	/**
  	 * @var Mount\Manager $mounts
  	 */
  	private static $mounts;
03e52840d   Kload   Init
42
43
44
45
46
47
48
49
50
51
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
78
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
111
112
113
114
115
116
117
118
119
  	public static $loaded = false;
  	/**
  	 * @var \OC\Files\View $defaultInstance
  	 */
  	static private $defaultInstance;
  
  
  	/**
  	 * classname which used for hooks handling
  	 * used as signalclass in OC_Hooks::emit()
  	 */
  	const CLASSNAME = 'OC_Filesystem';
  
  	/**
  	 * signalname emitted before file renaming
  	 *
  	 * @param string $oldpath
  	 * @param string $newpath
  	 */
  	const signal_rename = 'rename';
  
  	/**
  	 * signal emitted after file renaming
  	 *
  	 * @param string $oldpath
  	 * @param string $newpath
  	 */
  	const signal_post_rename = 'post_rename';
  
  	/**
  	 * signal emitted before file/dir creation
  	 *
  	 * @param string $path
  	 * @param bool $run changing this flag to false in hook handler will cancel event
  	 */
  	const signal_create = 'create';
  
  	/**
  	 * signal emitted after file/dir creation
  	 *
  	 * @param string $path
  	 * @param bool $run changing this flag to false in hook handler will cancel event
  	 */
  	const signal_post_create = 'post_create';
  
  	/**
  	 * signal emits before file/dir copy
  	 *
  	 * @param string $oldpath
  	 * @param string $newpath
  	 * @param bool $run changing this flag to false in hook handler will cancel event
  	 */
  	const signal_copy = 'copy';
  
  	/**
  	 * signal emits after file/dir copy
  	 *
  	 * @param string $oldpath
  	 * @param string $newpath
  	 */
  	const signal_post_copy = 'post_copy';
  
  	/**
  	 * signal emits before file/dir save
  	 *
  	 * @param string $path
  	 * @param bool $run changing this flag to false in hook handler will cancel event
  	 */
  	const signal_write = 'write';
  
  	/**
  	 * signal emits after file/dir save
  	 *
  	 * @param string $path
  	 */
  	const signal_post_write = 'post_write';
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
  	 * signal emitted before file/dir update
  	 *
  	 * @param string $path
  	 * @param bool $run changing this flag to false in hook handler will cancel event
  	 */
  	const signal_update = 'update';
  
  	/**
  	 * signal emitted after file/dir update
  	 *
  	 * @param string $path
  	 * @param bool $run changing this flag to false in hook handler will cancel event
  	 */
  	const signal_post_update = 'post_update';
  
  	/**
03e52840d   Kload   Init
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
161
  	 * signal emits when reading file/dir
  	 *
  	 * @param string $path
  	 */
  	const signal_read = 'read';
  
  	/**
  	 * signal emits when removing file/dir
  	 *
  	 * @param string $path
  	 */
  	const signal_delete = 'delete';
  
  	/**
  	 * parameters definitions for signals
  	 */
  	const signal_param_path = 'path';
  	const signal_param_oldpath = 'oldpath';
  	const signal_param_newpath = 'newpath';
  
  	/**
  	 * run - changing this flag to false in hook handler will cancel event
  	 */
  	const signal_param_run = 'run';
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
162
163
164
165
166
167
168
  	 * @var \OC\Files\Storage\Loader $loader
  	 */
  	private static $loader;
  
  	/**
  	 * @param callable $wrapper
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
169
170
  	public static function addStorageWrapper($wrapperName, $wrapper) {
  		self::getLoader()->addStorageWrapper($wrapperName, $wrapper);
31b7f2792   Kload   Upgrade to ownclo...
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
  
  		$mounts = self::getMountManager()->getAll();
  		foreach ($mounts as $mount) {
  			$mount->wrapStorage($wrapper);
  		}
  	}
  
  	public static function getLoader() {
  		if (!self::$loader) {
  			self::$loader = new Loader();
  		}
  		return self::$loader;
  	}
  
  	public static function getMountManager() {
  		if (!self::$mounts) {
  			\OC_Util::setupFS();
  		}
  		return self::$mounts;
  	}
  
  	/**
03e52840d   Kload   Init
193
194
195
196
197
198
199
200
201
  	 * 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
  	 */
  	static public function getMountPoint($path) {
31b7f2792   Kload   Upgrade to ownclo...
202
203
204
205
  		if (!self::$mounts) {
  			\OC_Util::setupFS();
  		}
  		$mount = self::$mounts->find($path);
03e52840d   Kload   Init
206
207
208
209
210
211
212
213
214
215
216
217
218
219
  		if ($mount) {
  			return $mount->getMountPoint();
  		} else {
  			return '';
  		}
  	}
  
  	/**
  	 * get a list of all mount points in a directory
  	 *
  	 * @param string $path
  	 * @return string[]
  	 */
  	static public function getMountPoints($path) {
31b7f2792   Kload   Upgrade to ownclo...
220
221
222
  		if (!self::$mounts) {
  			\OC_Util::setupFS();
  		}
03e52840d   Kload   Init
223
  		$result = array();
31b7f2792   Kload   Upgrade to ownclo...
224
  		$mounts = self::$mounts->findIn($path);
03e52840d   Kload   Init
225
226
227
228
229
230
231
232
233
234
235
236
237
  		foreach ($mounts as $mount) {
  			$result[] = $mount->getMountPoint();
  		}
  		return $result;
  	}
  
  	/**
  	 * get the storage mounted at $mountPoint
  	 *
  	 * @param string $mountPoint
  	 * @return \OC\Files\Storage\Storage
  	 */
  	public static function getStorage($mountPoint) {
31b7f2792   Kload   Upgrade to ownclo...
238
239
240
241
  		if (!self::$mounts) {
  			\OC_Util::setupFS();
  		}
  		$mount = self::$mounts->find($mountPoint);
03e52840d   Kload   Init
242
243
244
245
  		return $mount->getStorage();
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
246
  	 * @param string $id
31b7f2792   Kload   Upgrade to ownclo...
247
248
249
250
251
252
253
254
255
256
  	 * @return Mount\Mount[]
  	 */
  	public static function getMountByStorageId($id) {
  		if (!self::$mounts) {
  			\OC_Util::setupFS();
  		}
  		return self::$mounts->findByStorageId($id);
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
257
  	 * @param int $id
31b7f2792   Kload   Upgrade to ownclo...
258
259
260
261
262
263
264
265
266
267
  	 * @return Mount\Mount[]
  	 */
  	public static function getMountByNumericId($id) {
  		if (!self::$mounts) {
  			\OC_Util::setupFS();
  		}
  		return self::$mounts->findByNumericId($id);
  	}
  
  	/**
03e52840d   Kload   Init
268
269
270
  	 * resolve a path to a storage and internal path
  	 *
  	 * @param string $path
6d9380f96   Cédric Dupont   Update sources OC...
271
  	 * @return array an array consisting of the storage and the internal path
03e52840d   Kload   Init
272
273
  	 */
  	static public function resolvePath($path) {
31b7f2792   Kload   Upgrade to ownclo...
274
275
276
277
  		if (!self::$mounts) {
  			\OC_Util::setupFS();
  		}
  		$mount = self::$mounts->find($path);
03e52840d   Kload   Init
278
279
280
281
282
283
284
285
286
287
288
  		if ($mount) {
  			return array($mount->getStorage(), $mount->getInternalPath($path));
  		} else {
  			return array(null, null);
  		}
  	}
  
  	static public function init($user, $root) {
  		if (self::$defaultInstance) {
  			return false;
  		}
31b7f2792   Kload   Upgrade to ownclo...
289
  		self::getLoader();
03e52840d   Kload   Init
290
  		self::$defaultInstance = new View($root);
31b7f2792   Kload   Upgrade to ownclo...
291
292
293
  		if (!self::$mounts) {
  			self::$mounts = new Mount\Manager();
  		}
03e52840d   Kload   Init
294
295
296
297
298
299
300
  		//load custom mount config
  		self::initMountPoints($user);
  
  		self::$loaded = true;
  
  		return true;
  	}
31b7f2792   Kload   Upgrade to ownclo...
301
302
303
304
305
  	static public function initMounts() {
  		if (!self::$mounts) {
  			self::$mounts = new Mount\Manager();
  		}
  	}
03e52840d   Kload   Init
306
307
308
309
310
311
312
313
314
315
316
317
  	/**
  	 * Initialize system and personal mount points for a user
  	 *
  	 * @param string $user
  	 */
  	public static function initMountPoints($user = '') {
  		if ($user == '') {
  			$user = \OC_User::getUser();
  		}
  		$parser = new \OC\ArrayParser();
  
  		$root = \OC_User::getHome($user);
31b7f2792   Kload   Upgrade to ownclo...
318
319
320
321
  
  		$userObject = \OC_User::getManager()->get($user);
  
  		if (!is_null($userObject)) {
6d9380f96   Cédric Dupont   Update sources OC...
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  			$homeStorage = \OC_Config::getValue( 'objectstore' );
  			if (!empty($homeStorage)) {
  				// sanity checks
  				if (empty($homeStorage['class'])) {
  					\OCP\Util::writeLog('files', 'No class given for objectstore', \OCP\Util::ERROR);
  				}
  				if (!isset($homeStorage['arguments'])) {
  					$homeStorage['arguments'] = array();
  				}
  				// instantiate object store implementation
  				$homeStorage['arguments']['objectstore'] = new $homeStorage['class']($homeStorage['arguments']);
  				// mount with home object store implementation
  				$homeStorage['class'] = '\OC\Files\ObjectStore\HomeObjectStoreStorage';
  			} else {
  				$homeStorage = array(
  					//default home storage configuration:
  					'class' => '\OC\Files\Storage\Home',
  					'arguments' => array()
  				);
  			}
  			$homeStorage['arguments']['user'] = $userObject;
31b7f2792   Kload   Upgrade to ownclo...
343
344
  			// check for legacy home id (<= 5.0.12)
  			if (\OC\Files\Cache\Storage::exists('local::' . $root . '/')) {
6d9380f96   Cédric Dupont   Update sources OC...
345
  				$homeStorage['arguments']['legacy'] = true;
31b7f2792   Kload   Upgrade to ownclo...
346
  			}
6d9380f96   Cédric Dupont   Update sources OC...
347
348
349
350
  
  			self::mount($homeStorage['class'], $homeStorage['arguments'], $user);
  
  			$home = \OC\Files\Filesystem::getStorage($user);
31b7f2792   Kload   Upgrade to ownclo...
351
352
  		}
  		else {
03e52840d   Kload   Init
353
  			self::mount('\OC\Files\Storage\Local', array('datadir' => $root), $user);
03e52840d   Kload   Init
354
  		}
03e52840d   Kload   Init
355

6d9380f96   Cédric Dupont   Update sources OC...
356
  		self::mountCacheDir($user);
03e52840d   Kload   Init
357
358
359
360
361
362
  
  		// Chance to mount for other storages
  		\OC_Hook::emit('OC_Filesystem', 'post_initMountPoints', array('user' => $user, 'user_dir' => $root));
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
363
364
  	 * Mounts the cache directory
  	 * @param string $user user name
03e52840d   Kload   Init
365
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
  	private static function mountCacheDir($user) {
  		$cacheBaseDir = \OC_Config::getValue('cache_path', '');
  		if ($cacheBaseDir === '') {
  			// use local cache dir relative to the user's home
  			$subdir = 'cache';
  			$view = new \OC\Files\View('/' . $user);
  			if(!$view->file_exists($subdir)) {
  				$view->mkdir($subdir);
  			}
  		} else {
  			$cacheDir = rtrim($cacheBaseDir, '/') . '/' . $user;
  			if (!file_exists($cacheDir)) {
  				mkdir($cacheDir, 0770, true);
  			}
  			// mount external cache dir to "/$user/cache" mount point
  			self::mount('\OC\Files\Storage\Local', array('datadir' => $cacheDir), '/' . $user . '/cache');
  		}
03e52840d   Kload   Init
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
  	}
  
  	/**
  	 * get the default filesystem view
  	 *
  	 * @return View
  	 */
  	static public function getView() {
  		return self::$defaultInstance;
  	}
  
  	/**
  	 * tear down the filesystem, removing all storage providers
  	 */
  	static public function tearDown() {
  		self::clearMounts();
  		self::$defaultInstance = null;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
403
  	 * get the relative path of the root data directory for the current user
03e52840d   Kload   Init
404
405
406
407
408
  	 * @return string
  	 *
  	 * Returns path like /admin/files
  	 */
  	static public function getRoot() {
6d9380f96   Cédric Dupont   Update sources OC...
409
410
411
  		if (!self::$defaultInstance) {
  			return null;
  		}
03e52840d   Kload   Init
412
413
414
415
416
417
418
  		return self::$defaultInstance->getRoot();
  	}
  
  	/**
  	 * clear all mounts and storage backends
  	 */
  	public static function clearMounts() {
31b7f2792   Kload   Upgrade to ownclo...
419
420
421
  		if (self::$mounts) {
  			self::$mounts->clear();
  		}
03e52840d   Kload   Init
422
423
424
425
426
427
428
429
430
431
  	}
  
  	/**
  	 * mount an \OC\Files\Storage\Storage in our virtual filesystem
  	 *
  	 * @param \OC\Files\Storage\Storage|string $class
  	 * @param array $arguments
  	 * @param string $mountpoint
  	 */
  	static public function mount($class, $arguments, $mountpoint) {
31b7f2792   Kload   Upgrade to ownclo...
432
433
434
435
436
  		if (!self::$mounts) {
  			\OC_Util::setupFS();
  		}
  		$mount = new Mount\Mount($class, $mountpoint, $arguments, self::getLoader());
  		self::$mounts->addMount($mount);
03e52840d   Kload   Init
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
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
  	}
  
  	/**
  	 * 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
  	 */
  	static public function getLocalFile($path) {
  		return self::$defaultInstance->getLocalFile($path);
  	}
  
  	/**
  	 * @param string $path
  	 * @return string
  	 */
  	static public function getLocalFolder($path) {
  		return self::$defaultInstance->getLocalFolder($path);
  	}
  
  	/**
  	 * return path to file which reflects one visible in browser
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	static public function getLocalPath($path) {
  		$datadir = \OC_User::getHome(\OC_User::getUser()) . '/files';
  		$newpath = $path;
  		if (strncmp($newpath, $datadir, strlen($datadir)) == 0) {
  			$newpath = substr($path, strlen($datadir));
  		}
  		return $newpath;
  	}
  
  	/**
  	 * check if the requested path is valid
  	 *
  	 * @param string $path
  	 * @return bool
  	 */
  	static public function isValidPath($path) {
  		$path = self::normalizePath($path);
  		if (!$path || $path[0] !== '/') {
  			$path = '/' . $path;
  		}
  		if (strstr($path, '/../') || strrchr($path, '/') === '/..') {
  			return false;
  		}
  		return true;
  	}
  
  	/**
  	 * checks if a file is blacklisted for storage in the filesystem
  	 * Listens to write and rename hooks
  	 *
  	 * @param array $data from hook
  	 */
  	static public function isBlacklisted($data) {
  		if (isset($data['path'])) {
  			$path = $data['path'];
  		} else if (isset($data['newpath'])) {
  			$path = $data['newpath'];
  		}
  		if (isset($path)) {
  			if (self::isFileBlacklisted($path)) {
  				$data['run'] = false;
  			}
  		}
  	}
  
  	/**
  	 * @param string $filename
  	 * @return bool
  	 */
  	static public function isFileBlacklisted($filename) {
  		$blacklist = \OC_Config::getValue('blacklisted_files', array('.htaccess'));
  		$filename = strtolower(basename($filename));
  		return (in_array($filename, $blacklist));
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
521
  	 * check if the directory should be ignored when scanning
03e52840d   Kload   Init
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
  	 * NOTE: the special directories . and .. would cause never ending recursion
  	 * @param String $dir
  	 * @return boolean
  	 */
  	static public function isIgnoredDir($dir) {
  		if ($dir === '.' || $dir === '..') {
  			return true;
  		}
  		return false;
  	}
  
  	/**
  	 * following functions are equivalent to their php builtin equivalents for arguments/return values.
  	 */
  	static public function mkdir($path) {
  		return self::$defaultInstance->mkdir($path);
  	}
  
  	static public function rmdir($path) {
  		return self::$defaultInstance->rmdir($path);
  	}
  
  	static public function opendir($path) {
  		return self::$defaultInstance->opendir($path);
  	}
  
  	static public function readdir($path) {
  		return self::$defaultInstance->readdir($path);
  	}
  
  	static public function is_dir($path) {
  		return self::$defaultInstance->is_dir($path);
  	}
  
  	static public function is_file($path) {
  		return self::$defaultInstance->is_file($path);
  	}
  
  	static public function stat($path) {
  		return self::$defaultInstance->stat($path);
  	}
  
  	static public function filetype($path) {
  		return self::$defaultInstance->filetype($path);
  	}
  
  	static public function filesize($path) {
  		return self::$defaultInstance->filesize($path);
  	}
  
  	static public function readfile($path) {
  		return self::$defaultInstance->readfile($path);
  	}
  
  	static public function isCreatable($path) {
  		return self::$defaultInstance->isCreatable($path);
  	}
  
  	static public function isReadable($path) {
  		return self::$defaultInstance->isReadable($path);
  	}
  
  	static public function isUpdatable($path) {
  		return self::$defaultInstance->isUpdatable($path);
  	}
  
  	static public function isDeletable($path) {
  		return self::$defaultInstance->isDeletable($path);
  	}
  
  	static public function isSharable($path) {
  		return self::$defaultInstance->isSharable($path);
  	}
  
  	static public function file_exists($path) {
  		return self::$defaultInstance->file_exists($path);
  	}
  
  	static public function filemtime($path) {
  		return self::$defaultInstance->filemtime($path);
  	}
  
  	static public function touch($path, $mtime = null) {
  		return self::$defaultInstance->touch($path, $mtime);
  	}
6d9380f96   Cédric Dupont   Update sources OC...
607
608
609
  	/**
  	 * @return string
  	 */
03e52840d   Kload   Init
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
  	static public function file_get_contents($path) {
  		return self::$defaultInstance->file_get_contents($path);
  	}
  
  	static public function file_put_contents($path, $data) {
  		return self::$defaultInstance->file_put_contents($path, $data);
  	}
  
  	static public function unlink($path) {
  		return self::$defaultInstance->unlink($path);
  	}
  
  	static public function rename($path1, $path2) {
  		return self::$defaultInstance->rename($path1, $path2);
  	}
  
  	static public function copy($path1, $path2) {
  		return self::$defaultInstance->copy($path1, $path2);
  	}
  
  	static public function fopen($path, $mode) {
  		return self::$defaultInstance->fopen($path, $mode);
  	}
6d9380f96   Cédric Dupont   Update sources OC...
633
634
635
  	/**
  	 * @return string
  	 */
03e52840d   Kload   Init
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
  	static public function toTmpFile($path) {
  		return self::$defaultInstance->toTmpFile($path);
  	}
  
  	static public function fromTmpFile($tmpFile, $path) {
  		return self::$defaultInstance->fromTmpFile($tmpFile, $path);
  	}
  
  	static public function getMimeType($path) {
  		return self::$defaultInstance->getMimeType($path);
  	}
  
  	static public function hash($type, $path, $raw = false) {
  		return self::$defaultInstance->hash($type, $path, $raw);
  	}
  
  	static public function free_space($path = '/') {
  		return self::$defaultInstance->free_space($path);
  	}
  
  	static public function search($query) {
  		return self::$defaultInstance->search($query);
  	}
6d9380f96   Cédric Dupont   Update sources OC...
659
660
661
  	/**
  	 * @param string $query
  	 */
03e52840d   Kload   Init
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
  	static public function searchByMime($query) {
  		return self::$defaultInstance->searchByMime($query);
  	}
  
  	/**
  	 * check if a file or folder has been updated since $time
  	 *
  	 * @param string $path
  	 * @param int $time
  	 * @return bool
  	 */
  	static public function hasUpdated($path, $time) {
  		return self::$defaultInstance->hasUpdated($path, $time);
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
678
  	 * Fix common problems with a file path
03e52840d   Kload   Init
679
680
681
682
683
684
685
686
687
688
  	 * @param string $path
  	 * @param bool $stripTrailingSlash
  	 * @return string
  	 */
  	public static function normalizePath($path, $stripTrailingSlash = true) {
  		if ($path == '') {
  			return '/';
  		}
  		//no windows style slashes
  		$path = str_replace('\\', '/', $path);
31b7f2792   Kload   Upgrade to ownclo...
689

03e52840d   Kload   Init
690
691
692
693
  		//add leading slash
  		if ($path[0] !== '/') {
  			$path = '/' . $path;
  		}
31b7f2792   Kload   Upgrade to ownclo...
694
695
696
697
698
699
700
  
  		// remove '/./'
  		// ugly, but str_replace() can't replace them all in one go
  		// as the replacement itself is part of the search string
  		// which will only be found during the next iteration
  		while (strpos($path, '/./') !== false) {
  			$path = str_replace('/./', '/', $path);
03e52840d   Kload   Init
701
  		}
31b7f2792   Kload   Upgrade to ownclo...
702
703
  		// remove sequences of slashes
  		$path = preg_replace('#/{2,}#', '/', $path);
03e52840d   Kload   Init
704
705
706
707
  		//remove trailing slash
  		if ($stripTrailingSlash and strlen($path) > 1 and substr($path, -1, 1) === '/') {
  			$path = substr($path, 0, -1);
  		}
31b7f2792   Kload   Upgrade to ownclo...
708
709
710
711
712
  
  		// remove trailing '/.'
  		if (substr($path, -2) == '/.') {
  			$path = substr($path, 0, -2);
  		}
03e52840d   Kload   Init
713
714
  		//normalize unicode if possible
  		$path = \OC_Util::normalizeUnicode($path);
31b7f2792   Kload   Upgrade to ownclo...
715

03e52840d   Kload   Init
716
717
718
719
720
721
722
  		return $path;
  	}
  
  	/**
  	 * get the filesystem info
  	 *
  	 * @param string $path
31b7f2792   Kload   Upgrade to ownclo...
723
724
  	 * @param boolean $includeMountPoints whether to add mountpoint sizes,
  	 * defaults to true
6d9380f96   Cédric Dupont   Update sources OC...
725
  	 * @return \OC\Files\FileInfo
03e52840d   Kload   Init
726
  	 */
31b7f2792   Kload   Upgrade to ownclo...
727
728
  	public static function getFileInfo($path, $includeMountPoints = true) {
  		return self::$defaultInstance->getFileInfo($path, $includeMountPoints);
03e52840d   Kload   Init
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
  	}
  
  	/**
  	 * change file metadata
  	 *
  	 * @param string $path
  	 * @param array $data
  	 * @return int
  	 *
  	 * returns the fileid of the updated file
  	 */
  	public static function putFileInfo($path, $data) {
  		return self::$defaultInstance->putFileInfo($path, $data);
  	}
  
  	/**
  	 * get the content of a directory
  	 *
  	 * @param string $directory path under datadirectory
31b7f2792   Kload   Upgrade to ownclo...
748
  	 * @param string $mimetype_filter limit returned content to this mimetype or mimepart
6d9380f96   Cédric Dupont   Update sources OC...
749
  	 * @return \OC\Files\FileInfo[]
03e52840d   Kload   Init
750
  	 */
31b7f2792   Kload   Upgrade to ownclo...
751
752
  	public static function getDirectoryContent($directory, $mimetype_filter = '') {
  		return self::$defaultInstance->getDirectoryContent($directory, $mimetype_filter);
03e52840d   Kload   Init
753
754
755
756
757
  	}
  
  	/**
  	 * Get the path of a file by id
  	 *
31b7f2792   Kload   Upgrade to ownclo...
758
  	 * Note that the resulting path is not guaranteed to be unique for the id, multiple paths can point to the same file
03e52840d   Kload   Init
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
  	 *
  	 * @param int $id
  	 * @return string
  	 */
  	public static function getPath($id) {
  		return self::$defaultInstance->getPath($id);
  	}
  
  	/**
  	 * Get the owner for a file or folder
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	public static function getOwner($path) {
  		return self::$defaultInstance->getOwner($path);
  	}
  
  	/**
  	 * get the ETag for a file or folder
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	static public function getETag($path) {
  		return self::$defaultInstance->getETag($path);
  	}
  }
  
  \OC_Util::setupFS();