Blame view

sources/apps/files_sharing/lib/sharedstorage.php 12.8 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  <?php
  /**
   * ownCloud
   *
   * @author Michael Gapczynski
   * @copyright 2011 Michael Gapczynski mtgap@owncloud.com
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
   * License as published by the Free Software Foundation; either
   * version 3 of the License, or any later version.
   *
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
   *
   * You should have received a copy of the GNU Affero General Public
   * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
  
  namespace OC\Files\Storage;
  
  /**
   * Convert target path to source path and pass the function call to the correct storage provider
   */
  class Shared extends \OC\Files\Storage\Common {
  
  	private $sharedFolder;
  	private $files = array();
  
  	public function __construct($arguments) {
  		$this->sharedFolder = $arguments['sharedFolder'];
  	}
31b7f2792   Kload   Upgrade to ownclo...
36
  	public function getId() {
03e52840d   Kload   Init
37
38
39
40
  		return 'shared::' . $this->sharedFolder;
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
41
42
43
44
45
  	 * @brief Get the source file path, permissions, and owner for a shared file
  	 * @param string Shared target file path
  	 * @return Returns array with the keys path, permissions, and owner or false if not found
  	 */
  	public function getFile($target) {
03e52840d   Kload   Init
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  		if (!isset($this->files[$target])) {
  			// Check for partial files
  			if (pathinfo($target, PATHINFO_EXTENSION) === 'part') {
  				$source = \OC_Share_Backend_File::getSource(substr($target, 0, -5));
  				if ($source) {
  					$source['path'] .= '.part';
  					// All partial files have delete permission
  					$source['permissions'] |= \OCP\PERMISSION_DELETE;
  				}
  			} else {
  				$source = \OC_Share_Backend_File::getSource($target);
  			}
  			$this->files[$target] = $source;
  		}
  		return $this->files[$target];
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
64
65
66
67
68
  	 * @brief Get the source file path for a shared file
  	 * @param string Shared target file path
  	 * @return string source file path or false if not found
  	 */
  	public function getSourcePath($target) {
03e52840d   Kload   Init
69
70
71
72
  		$source = $this->getFile($target);
  		if ($source) {
  			if (!isset($source['fullPath'])) {
  				\OC\Files\Filesystem::initMountPoints($source['fileOwner']);
31b7f2792   Kload   Upgrade to ownclo...
73
74
75
  				$mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']);
  				if (is_array($mount)) {
  					$this->files[$target]['fullPath'] = $mount[key($mount)]->getMountPoint() . $source['path'];
03e52840d   Kload   Init
76
77
78
79
80
81
82
83
84
85
  				} else {
  					$this->files[$target]['fullPath'] = false;
  				}
  			}
  			return $this->files[$target]['fullPath'];
  		}
  		return false;
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
86
87
88
89
  	 * @brief Get the permissions granted for a shared file
  	 * @param string Shared target file path
  	 * @return int CRUDS permissions granted or false if not found
  	 */
03e52840d   Kload   Init
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
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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
  	public function getPermissions($target) {
  		$source = $this->getFile($target);
  		if ($source) {
  			return $source['permissions'];
  		}
  		return false;
  	}
  
  	public function mkdir($path) {
  		if ($path == '' || $path == '/' || !$this->isCreatable(dirname($path))) {
  			return false;
  		} else if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->mkdir($internalPath);
  		}
  		return false;
  	}
  
  	public function rmdir($path) {
  		if (($source = $this->getSourcePath($path)) && $this->isDeletable($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->rmdir($internalPath);
  		}
  		return false;
  	}
  
  	public function opendir($path) {
  		if ($path == '' || $path == '/') {
  			$files = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_Folder::FORMAT_OPENDIR);
  			\OC\Files\Stream\Dir::register('shared', $files);
  			return opendir('fakedir://shared');
  		} else if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->opendir($internalPath);
  		}
  		return false;
  	}
  
  	public function is_dir($path) {
  		if ($path == '' || $path == '/') {
  			return true;
  		} else if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->is_dir($internalPath);
  		}
  		return false;
  	}
  
  	public function is_file($path) {
  		if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->is_file($internalPath);
  		}
  		return false;
  	}
  
  	public function stat($path) {
  		if ($path == '' || $path == '/') {
  			$stat['size'] = $this->filesize($path);
  			$stat['mtime'] = $this->filemtime($path);
  			return $stat;
  		} else if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->stat($internalPath);
  		}
  		return false;
  	}
  
  	public function filetype($path) {
  		if ($path == '' || $path == '/') {
  			return 'dir';
  		} else if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->filetype($internalPath);
  		}
  		return false;
  	}
  
  	public function filesize($path) {
  		if ($path == '' || $path == '/' || $this->is_dir($path)) {
  			return 0;
  		} else if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->filesize($internalPath);
  		}
  		return false;
  	}
  
  	public function isCreatable($path) {
  		if ($path == '') {
  			return false;
  		}
  		return ($this->getPermissions($path) & \OCP\PERMISSION_CREATE);
  	}
  
  	public function isReadable($path) {
  		return $this->file_exists($path);
  	}
  
  	public function isUpdatable($path) {
  		if ($path == '') {
  			return false;
  		}
  		return ($this->getPermissions($path) & \OCP\PERMISSION_UPDATE);
  	}
  
  	public function isDeletable($path) {
  		if ($path == '') {
  			return true;
  		}
  		return ($this->getPermissions($path) & \OCP\PERMISSION_DELETE);
  	}
  
  	public function isSharable($path) {
  		if ($path == '') {
  			return false;
  		}
  		return ($this->getPermissions($path) & \OCP\PERMISSION_SHARE);
  	}
  
  	public function file_exists($path) {
  		if ($path == '' || $path == '/') {
  			return true;
  		} else if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->file_exists($internalPath);
  		}
  		return false;
  	}
  
  	public function filemtime($path) {
  		if ($path == '' || $path == '/') {
  			$mtime = 0;
31b7f2792   Kload   Upgrade to ownclo...
223
224
  			$dh = $this->opendir($path);
  			if (is_resource($dh)) {
03e52840d   Kload   Init
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
  				while (($filename = readdir($dh)) !== false) {
  					$tempmtime = $this->filemtime($filename);
  					if ($tempmtime > $mtime) {
  						$mtime = $tempmtime;
  					}
  				}
  			}
  			return $mtime;
  		} else {
  			$source = $this->getSourcePath($path);
  			if ($source) {
  				list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  				return $storage->filemtime($internalPath);
  			}
  		}
  	}
  
  	public function file_get_contents($path) {
  		$source = $this->getSourcePath($path);
  		if ($source) {
  			$info = array(
31b7f2792   Kload   Upgrade to ownclo...
246
  				'target' => $this->sharedFolder . $path,
03e52840d   Kload   Init
247
248
249
250
251
252
253
254
255
256
257
258
  				'source' => $source,
  			);
  			\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info);
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->file_get_contents($internalPath);
  		}
  	}
  
  	public function file_put_contents($path, $data) {
  		if ($source = $this->getSourcePath($path)) {
  			// Check if permission is granted
  			if (($this->file_exists($path) && !$this->isUpdatable($path))
31b7f2792   Kload   Upgrade to ownclo...
259
260
  				|| ($this->is_dir($path) && !$this->isCreatable($path))
  			) {
03e52840d   Kload   Init
261
262
263
  				return false;
  			}
  			$info = array(
31b7f2792   Kload   Upgrade to ownclo...
264
265
266
  				'target' => $this->sharedFolder . $path,
  				'source' => $source,
  			);
03e52840d   Kload   Init
267
268
269
270
271
272
273
274
275
276
277
278
279
280
  			\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info);
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			$result = $storage->file_put_contents($internalPath, $data);
  			return $result;
  		}
  		return false;
  	}
  
  	public function unlink($path) {
  		// Delete the file if DELETE permission is granted
  		if ($source = $this->getSourcePath($path)) {
  			if ($this->isDeletable($path)) {
  				list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  				return $storage->unlink($internalPath);
03e52840d   Kload   Init
281
282
283
284
285
286
  			}
  		}
  		return false;
  	}
  
  	public function rename($path1, $path2) {
a293d369c   Kload   Update sources to...
287
288
289
290
291
292
293
  		// Renaming/moving is only allowed within shared folders
  		$pos1 = strpos($path1, '/', 1);
  		$pos2 = strpos($path2, '/', 1);
  		if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) {
  			$newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2);
  			// Within the same folder, we only need UPDATE permissions
  			if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) {
03e52840d   Kload   Init
294
  				list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource);
a293d369c   Kload   Update sources to...
295
  				list(, $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource);
03e52840d   Kload   Init
296
  				return $storage->rename($oldInternalPath, $newInternalPath);
a293d369c   Kload   Update sources to...
297
298
299
300
  				// otherwise DELETE and CREATE permissions required
  			} elseif ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) {
  				$rootView = new \OC\Files\View('');
  				return $rootView->rename($oldSource, $newSource);
03e52840d   Kload   Init
301
302
303
304
305
306
307
308
  			}
  		}
  		return false;
  	}
  
  	public function copy($path1, $path2) {
  		// Copy the file if CREATE permission is granted
  		if ($this->isCreatable(dirname($path2))) {
31b7f2792   Kload   Upgrade to ownclo...
309
310
311
312
  			$oldSource = $this->getSourcePath($path1);
  			$newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2);
  			$rootView = new \OC\Files\View('');
  			return $rootView->copy($oldSource, $newSource);
03e52840d   Kload   Init
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
  		}
  		return false;
  	}
  
  	public function fopen($path, $mode) {
  		if ($source = $this->getSourcePath($path)) {
  			switch ($mode) {
  				case 'r+':
  				case 'rb+':
  				case 'w+':
  				case 'wb+':
  				case 'x+':
  				case 'xb+':
  				case 'a+':
  				case 'ab+':
  				case 'w':
  				case 'wb':
  				case 'x':
  				case 'xb':
  				case 'a':
  				case 'ab':
  					$exists = $this->file_exists($path);
  					if ($exists && !$this->isUpdatable($path)) {
  						return false;
  					}
  					if (!$exists && !$this->isCreatable(dirname($path))) {
  						return false;
  					}
  			}
  			$info = array(
31b7f2792   Kload   Upgrade to ownclo...
343
  				'target' => $this->sharedFolder . $path,
03e52840d   Kload   Init
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
  				'source' => $source,
  				'mode' => $mode,
  			);
  			\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'fopen', $info);
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->fopen($internalPath, $mode);
  		}
  		return false;
  	}
  
  	public function getMimeType($path) {
  		if ($path == '' || $path == '/') {
  			return 'httpd/unix-directory';
  		}
  		if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->getMimeType($internalPath);
  		}
  		return false;
  	}
  
  	public function free_space($path) {
  		if ($path == '') {
31b7f2792   Kload   Upgrade to ownclo...
367
  			return \OC\Files\SPACE_UNKNOWN;
03e52840d   Kload   Init
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
  		}
  		$source = $this->getSourcePath($path);
  		if ($source) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->free_space($internalPath);
  		}
  	}
  
  	public function getLocalFile($path) {
  		if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->getLocalFile($internalPath);
  		}
  		return false;
  	}
31b7f2792   Kload   Upgrade to ownclo...
383

03e52840d   Kload   Init
384
385
386
387
388
389
390
391
392
393
  	public function touch($path, $mtime = null) {
  		if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->touch($internalPath, $mtime);
  		}
  		return false;
  	}
  
  	public static function setup($options) {
  		if (!\OCP\User::isLoggedIn() || \OCP\User::getUser() != $options['user']
31b7f2792   Kload   Upgrade to ownclo...
394
395
  			|| \OCP\Share::getItemsSharedWith('file')
  		) {
03e52840d   Kload   Init
396
397
398
  			$user_dir = $options['user_dir'];
  			\OC\Files\Filesystem::mount('\OC\Files\Storage\Shared',
  				array('sharedFolder' => '/Shared'),
31b7f2792   Kload   Upgrade to ownclo...
399
  				$user_dir . '/Shared/');
03e52840d   Kload   Init
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
  		}
  	}
  
  	public function hasUpdated($path, $time) {
  		if ($path == '') {
  			return false;
  		}
  		return $this->filemtime($path) > $time;
  	}
  
  	public function getCache($path = '') {
  		return new \OC\Files\Cache\Shared_Cache($this);
  	}
  
  	public function getScanner($path = '') {
  		return new \OC\Files\Cache\Scanner($this);
  	}
  
  	public function getPermissionsCache($path = '') {
  		return new \OC\Files\Cache\Shared_Permissions($this);
  	}
  
  	public function getWatcher($path = '') {
  		return new \OC\Files\Cache\Shared_Watcher($this);
  	}
  
  	public function getOwner($path) {
  		if ($path == '') {
  			return false;
  		}
  		$source = $this->getFile($path);
  		if ($source) {
  			return $source['fileOwner'];
  		}
  		return false;
  	}
  
  	public function getETag($path) {
  		if ($path == '') {
  			return parent::getETag($path);
  		}
  		if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->getETag($internalPath);
  		}
  		return null;
  	}
  
  }