Blame view

sources/lib/private/files/storage/common.php 9.97 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
  <?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.
   */
  
  namespace OC\Files\Storage;
6d9380f96   Cédric Dupont   Update sources OC...
10
11
  use OC\Files\Filesystem;
  use OC\Files\Cache\Watcher;
03e52840d   Kload   Init
12
13
14
15
16
17
18
19
20
21
22
  /**
   * 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() .
   */
03e52840d   Kload   Init
23
  abstract class Common implements \OC\Files\Storage\Storage {
31b7f2792   Kload   Upgrade to ownclo...
24
25
26
27
28
  	protected $cache;
  	protected $scanner;
  	protected $permissioncache;
  	protected $watcher;
  	protected $storageCache;
03e52840d   Kload   Init
29

6d9380f96   Cédric Dupont   Update sources OC...
30
31
32
33
  	/**
  	 * @var string[]
  	 */
  	protected $cachedFiles = array();
03e52840d   Kload   Init
34
35
  	public function __construct($parameters) {
  	}
6d9380f96   Cédric Dupont   Update sources OC...
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  	/**
  	 * Remove a file of folder
  	 *
  	 * @param string $path
  	 * @return bool
  	 */
  	protected function remove($path) {
  		if ($this->is_dir($path)) {
  			return $this->rmdir($path);
  		} else if ($this->is_file($path)) {
  			return $this->unlink($path);
  		} else {
  			return false;
  		}
  	}
03e52840d   Kload   Init
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  	public function is_dir($path) {
  		return $this->filetype($path) == 'dir';
  	}
  
  	public function is_file($path) {
  		return $this->filetype($path) == 'file';
  	}
  
  	public function filesize($path) {
  		if ($this->is_dir($path)) {
  			return 0; //by definition
  		} else {
  			$stat = $this->stat($path);
  			if (isset($stat['size'])) {
  				return $stat['size'];
  			} else {
  				return 0;
  			}
  		}
  	}
31b7f2792   Kload   Upgrade to ownclo...
71
72
73
74
75
76
77
78
79
80
81
82
  	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);
  	}
03e52840d   Kload   Init
83
84
85
86
87
88
89
90
91
92
93
94
  	public function isCreatable($path) {
  		if ($this->is_dir($path) && $this->isUpdatable($path)) {
  			return true;
  		}
  		return false;
  	}
  
  	public function isDeletable($path) {
  		return $this->isUpdatable($path);
  	}
  
  	public function isSharable($path) {
6d9380f96   Cédric Dupont   Update sources OC...
95
96
97
  		if (\OC_Util::isSharingDisabledForUser()) {
  			return false;
  		}
03e52840d   Kload   Init
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
  		return $this->isReadable($path);
  	}
  
  	public function getPermissions($path) {
  		$permissions = 0;
  		if ($this->isCreatable($path)) {
  			$permissions |= \OCP\PERMISSION_CREATE;
  		}
  		if ($this->isReadable($path)) {
  			$permissions |= \OCP\PERMISSION_READ;
  		}
  		if ($this->isUpdatable($path)) {
  			$permissions |= \OCP\PERMISSION_UPDATE;
  		}
  		if ($this->isDeletable($path)) {
  			$permissions |= \OCP\PERMISSION_DELETE;
  		}
  		if ($this->isSharable($path)) {
  			$permissions |= \OCP\PERMISSION_SHARE;
  		}
  		return $permissions;
  	}
  
  	public function filemtime($path) {
  		$stat = $this->stat($path);
  		if (isset($stat['mtime'])) {
  			return $stat['mtime'];
  		} else {
  			return 0;
  		}
  	}
  
  	public function file_get_contents($path) {
  		$handle = $this->fopen($path, "r");
  		if (!$handle) {
  			return false;
  		}
6d9380f96   Cédric Dupont   Update sources OC...
135
136
137
  		$data = stream_get_contents($handle);
  		fclose($handle);
  		return $data;
03e52840d   Kload   Init
138
139
140
141
  	}
  
  	public function file_put_contents($path, $data) {
  		$handle = $this->fopen($path, "w");
6d9380f96   Cédric Dupont   Update sources OC...
142
143
144
145
  		$this->removeCachedFile($path);
  		$count = fwrite($handle, $data);
  		fclose($handle);
  		return $count;
03e52840d   Kload   Init
146
147
148
  	}
  
  	public function rename($path1, $path2) {
6d9380f96   Cédric Dupont   Update sources OC...
149
  		$this->remove($path2);
03e52840d   Kload   Init
150

6d9380f96   Cédric Dupont   Update sources OC...
151
152
  		$this->removeCachedFile($path1);
  		return $this->copy($path1, $path2) and $this->remove($path1);
03e52840d   Kload   Init
153
  	}
6d9380f96   Cédric Dupont   Update sources OC...
154
155
156
157
158
159
160
161
162
  	public function copy($path1, $path2) {
  		if ($this->is_dir($path1)) {
  			$this->remove($path2);
  			$dir = $this->opendir($path1);
  			$this->mkdir($path2);
  			while ($file = readdir($dir)) {
  				if (!Filesystem::isIgnoredDir($file)) {
  					if (!$this->copy($path1 . '/' . $file, $path2 . '/' . $file)) {
  						return false;
03e52840d   Kload   Init
163
164
165
  					}
  				}
  			}
6d9380f96   Cédric Dupont   Update sources OC...
166
  			closedir($dir);
03e52840d   Kload   Init
167
  			return true;
6d9380f96   Cédric Dupont   Update sources OC...
168
169
170
171
172
173
  		} else {
  			$source = $this->fopen($path1, 'r');
  			$target = $this->fopen($path2, 'w');
  			list(, $result) = \OC_Helper::streamCopy($source, $target);
  			$this->removeCachedFile($path2);
  			return $result;
03e52840d   Kload   Init
174
  		}
03e52840d   Kload   Init
175
176
177
  	}
  
  	public function getMimeType($path) {
03e52840d   Kload   Init
178
179
  		if ($this->is_dir($path)) {
  			return 'httpd/unix-directory';
31b7f2792   Kload   Upgrade to ownclo...
180
181
  		} elseif ($this->file_exists($path)) {
  			return \OC_Helper::getFileNameMimeType($path);
03e52840d   Kload   Init
182
  		} else {
31b7f2792   Kload   Upgrade to ownclo...
183
  			return false;
03e52840d   Kload   Init
184
  		}
03e52840d   Kload   Init
185
186
187
  	}
  
  	public function hash($type, $path, $raw = false) {
6d9380f96   Cédric Dupont   Update sources OC...
188
189
190
191
192
  		$fh = $this->fopen($path, 'rb');
  		$ctx = hash_init($type);
  		hash_update_stream($ctx, $fh);
  		fclose($fh);
  		return hash_final($ctx, $raw);
03e52840d   Kload   Init
193
194
195
196
197
198
199
  	}
  
  	public function search($query) {
  		return $this->searchInDir($query);
  	}
  
  	public function getLocalFile($path) {
6d9380f96   Cédric Dupont   Update sources OC...
200
  		return $this->getCachedFile($path);
03e52840d   Kload   Init
201
  	}
6d9380f96   Cédric Dupont   Update sources OC...
202
203
204
205
206
  	/**
  	 * @param string $path
  	 * @return string
  	 */
  	protected function toTmpFile($path) { //no longer in the storage api, still useful here
03e52840d   Kload   Init
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
  		$source = $this->fopen($path, 'r');
  		if (!$source) {
  			return false;
  		}
  		if ($pos = strrpos($path, '.')) {
  			$extension = substr($path, $pos);
  		} else {
  			$extension = '';
  		}
  		$tmpFile = \OC_Helper::tmpFile($extension);
  		$target = fopen($tmpFile, 'w');
  		\OC_Helper::streamCopy($source, $target);
  		return $tmpFile;
  	}
  
  	public function getLocalFolder($path) {
  		$baseDir = \OC_Helper::tmpFolder();
  		$this->addLocalFolder($path, $baseDir);
  		return $baseDir;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
227
228
229
230
  	/**
  	 * @param string $path
  	 * @param string $target
  	 */
03e52840d   Kload   Init
231
  	private function addLocalFolder($path, $target) {
31b7f2792   Kload   Upgrade to ownclo...
232
233
  		$dh = $this->opendir($path);
  		if (is_resource($dh)) {
03e52840d   Kload   Init
234
235
236
237
238
239
240
241
242
243
244
245
246
  			while (($file = readdir($dh)) !== false) {
  				if ($file !== '.' and $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);
  					}
  				}
  			}
  		}
  	}
6d9380f96   Cédric Dupont   Update sources OC...
247
248
249
  	/**
  	 * @param string $query
  	 */
03e52840d   Kload   Init
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
  	protected function searchInDir($query, $dir = '') {
  		$files = array();
  		$dh = $this->opendir($dir);
  		if (is_resource($dh)) {
  			while (($item = readdir($dh)) !== false) {
  				if ($item == '.' || $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));
  				}
  			}
  		}
  		return $files;
  	}
  
  	/**
  	 * check if a file or folder has been updated since $time
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
270
271
272
273
274
  	 * 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
  	 * ownClouds filesystem.
  	 *
03e52840d   Kload   Init
275
276
277
278
279
280
281
  	 * @param string $path
  	 * @param int $time
  	 * @return bool
  	 */
  	public function hasUpdated($path, $time) {
  		return $this->filemtime($path) > $time;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
282
283
284
285
  	public function getCache($path = '', $storage = null) {
  		if (!$storage) {
  			$storage = $this;
  		}
03e52840d   Kload   Init
286
  		if (!isset($this->cache)) {
6d9380f96   Cédric Dupont   Update sources OC...
287
  			$this->cache = new \OC\Files\Cache\Cache($storage);
03e52840d   Kload   Init
288
289
290
  		}
  		return $this->cache;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
291
292
293
294
  	public function getScanner($path = '', $storage = null) {
  		if (!$storage) {
  			$storage = $this;
  		}
03e52840d   Kload   Init
295
  		if (!isset($this->scanner)) {
6d9380f96   Cédric Dupont   Update sources OC...
296
  			$this->scanner = new \OC\Files\Cache\Scanner($storage);
03e52840d   Kload   Init
297
298
299
  		}
  		return $this->scanner;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
300
301
302
  	public function getWatcher($path = '', $storage = null) {
  		if (!$storage) {
  			$storage = $this;
03e52840d   Kload   Init
303
  		}
03e52840d   Kload   Init
304
  		if (!isset($this->watcher)) {
6d9380f96   Cédric Dupont   Update sources OC...
305
306
  			$this->watcher = new \OC\Files\Cache\Watcher($storage);
  			$this->watcher->setPolicy(\OC::$server->getConfig()->getSystemValue('filesystem_check_changes', Watcher::CHECK_ONCE));
03e52840d   Kload   Init
307
308
309
  		}
  		return $this->watcher;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
310
311
312
313
  	public function getStorageCache($storage = null) {
  		if (!$storage) {
  			$storage = $this;
  		}
31b7f2792   Kload   Upgrade to ownclo...
314
  		if (!isset($this->storageCache)) {
6d9380f96   Cédric Dupont   Update sources OC...
315
  			$this->storageCache = new \OC\Files\Cache\Storage($storage);
31b7f2792   Kload   Upgrade to ownclo...
316
317
318
  		}
  		return $this->storageCache;
  	}
03e52840d   Kload   Init
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
  	/**
  	 * get the owner of a path
  	 *
  	 * @param string $path The path to get the owner
  	 * @return string uid or false
  	 */
  	public function getOwner($path) {
  		return \OC_User::getUser();
  	}
  
  	/**
  	 * get the ETag for a file or folder
  	 *
  	 * @param string $path
  	 * @return string
  	 */
  	public function getETag($path) {
  		$ETagFunction = \OC_Connector_Sabre_Node::$ETagFunction;
  		if ($ETagFunction) {
  			$hash = call_user_func($ETagFunction, $path);
  			return $hash;
  		} else {
  			return uniqid();
  		}
  	}
  
  	/**
  	 * clean a path, i.e. remove all redundant '.' and '..'
  	 * making sure that it can't point to higher than '/'
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
349
  	 * @param string $path The path to clean
03e52840d   Kload   Init
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
  	 * @return string cleaned path
  	 */
  	public function cleanPath($path) {
  		if (strlen($path) == 0 or $path[0] != '/') {
  			$path = '/' . $path;
  		}
  
  		$output = array();
  		foreach (explode('/', $path) as $chunk) {
  			if ($chunk == '..') {
  				array_pop($output);
  			} else if ($chunk == '.') {
  			} else {
  				$output[] = $chunk;
  			}
  		}
  		return implode('/', $output);
  	}
  
  	public function test() {
  		if ($this->stat('')) {
  			return true;
  		}
  		return false;
  	}
  
  	/**
  	 * get the free space in the storage
  	 *
6d9380f96   Cédric Dupont   Update sources OC...
379
  	 * @param string $path
31b7f2792   Kload   Upgrade to ownclo...
380
  	 * @return int
03e52840d   Kload   Init
381
382
  	 */
  	public function free_space($path) {
31b7f2792   Kload   Upgrade to ownclo...
383
  		return \OC\Files\SPACE_UNKNOWN;
03e52840d   Kload   Init
384
  	}
6d9380f96   Cédric Dupont   Update sources OC...
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
  
  	/**
  	 * {@inheritdoc}
  	 */
  	public function isLocal() {
  		// the common implementation returns a temporary file by
  		// default, which is not local
  		return false;
  	}
  
  	/**
  	 * @param string $path
  	 */
  	protected function getCachedFile($path) {
  		if (!isset($this->cachedFiles[$path])) {
  			$this->cachedFiles[$path] = $this->toTmpFile($path);
  		}
  		return $this->cachedFiles[$path];
  	}
  
  	protected function removeCachedFile($path) {
  		unset($this->cachedFiles[$path]);
  	}
  
  	/**
  	 * 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) {
  		return is_a($this, $class);
  	}
03e52840d   Kload   Init
418
  }