Blame view

sources/apps/files_sharing/lib/sharedstorage.php 14.7 KB
03e52840d   Kload   Init
1
2
3
4
  <?php
  /**
   * ownCloud
   *
6d9380f96   Cédric Dupont   Update sources OC...
5
6
7
   * @author Bjoern Schiessle, Michael Gapczynski
   * @copyright 2011 Michael Gapczynski <mtgap@owncloud.com>
   *            2014 Bjoern Schiessle <schiessle@owncloud.com>
03e52840d   Kload   Init
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
   *
   * 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;
6d9380f96   Cédric Dupont   Update sources OC...
25
26
27
  use OC\Files\Filesystem;
  use OCA\Files_Sharing\ISharedStorage;
  use OCA\Files_Sharing\SharedMount;
03e52840d   Kload   Init
28
29
30
31
  
  /**
   * Convert target path to source path and pass the function call to the correct storage provider
   */
6d9380f96   Cédric Dupont   Update sources OC...
32
  class Shared extends \OC\Files\Storage\Common implements ISharedStorage {
03e52840d   Kload   Init
33

6d9380f96   Cédric Dupont   Update sources OC...
34
  	private $share;   // the shared resource
03e52840d   Kload   Init
35
36
37
  	private $files = array();
  
  	public function __construct($arguments) {
6d9380f96   Cédric Dupont   Update sources OC...
38
  		$this->share = $arguments['share'];
03e52840d   Kload   Init
39
  	}
6d9380f96   Cédric Dupont   Update sources OC...
40
41
42
43
  	/**
  	 * get id of the mount point
  	 * @return string
  	 */
31b7f2792   Kload   Upgrade to ownclo...
44
  	public function getId() {
6d9380f96   Cédric Dupont   Update sources OC...
45
46
47
48
49
50
51
52
53
  		return 'shared::' . $this->getMountPoint();
  	}
  
  	/**
  	 * get file cache of the shared item source
  	 * @return string
  	 */
  	public function getSourceId() {
  		return $this->share['file_source'];
03e52840d   Kload   Init
54
55
56
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
57
58
  	 * Get the source file path, permissions, and owner for a shared file
  	 * @param string $target Shared target file path
31b7f2792   Kload   Upgrade to ownclo...
59
60
61
  	 * @return Returns array with the keys path, permissions, and owner or false if not found
  	 */
  	public function getFile($target) {
03e52840d   Kload   Init
62
63
64
  		if (!isset($this->files[$target])) {
  			// Check for partial files
  			if (pathinfo($target, PATHINFO_EXTENSION) === 'part') {
6d9380f96   Cédric Dupont   Update sources OC...
65
  				$source = \OC_Share_Backend_File::getSource(substr($target, 0, -5), $this->getMountPoint(), $this->getItemType());
03e52840d   Kload   Init
66
67
68
69
70
71
  				if ($source) {
  					$source['path'] .= '.part';
  					// All partial files have delete permission
  					$source['permissions'] |= \OCP\PERMISSION_DELETE;
  				}
  			} else {
6d9380f96   Cédric Dupont   Update sources OC...
72
  				$source = \OC_Share_Backend_File::getSource($target, $this->getMountPoint(), $this->getItemType());
03e52840d   Kload   Init
73
74
75
76
77
78
79
  			}
  			$this->files[$target] = $source;
  		}
  		return $this->files[$target];
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
80
81
  	 * Get the source file path for a shared file
  	 * @param string $target Shared target file path
31b7f2792   Kload   Upgrade to ownclo...
82
83
84
  	 * @return string source file path or false if not found
  	 */
  	public function getSourcePath($target) {
03e52840d   Kload   Init
85
86
87
88
  		$source = $this->getFile($target);
  		if ($source) {
  			if (!isset($source['fullPath'])) {
  				\OC\Files\Filesystem::initMountPoints($source['fileOwner']);
31b7f2792   Kload   Upgrade to ownclo...
89
  				$mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']);
6d9380f96   Cédric Dupont   Update sources OC...
90
  				if (is_array($mount) && !empty($mount)) {
31b7f2792   Kload   Upgrade to ownclo...
91
  					$this->files[$target]['fullPath'] = $mount[key($mount)]->getMountPoint() . $source['path'];
03e52840d   Kload   Init
92
93
  				} else {
  					$this->files[$target]['fullPath'] = false;
6d9380f96   Cédric Dupont   Update sources OC...
94
  					\OCP\Util::writeLog('files_sharing', "Unable to get mount for shared storage '" . $source['storage'] . "' user '" . $source['fileOwner'] . "'", \OCP\Util::ERROR);
03e52840d   Kload   Init
95
96
97
98
99
100
101
102
  				}
  			}
  			return $this->files[$target]['fullPath'];
  		}
  		return false;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
103
104
105
  	 * Get the permissions granted for a shared file
  	 * @param string $target Shared target file path
  	 * @return int CRUDS permissions granted
31b7f2792   Kload   Upgrade to ownclo...
106
  	 */
6d9380f96   Cédric Dupont   Update sources OC...
107
108
109
110
111
  	public function getPermissions($target = '') {
  		$permissions = $this->share['permissions'];
  		// part files and the mount point always have delete permissions
  		if ($target === '' || pathinfo($target, PATHINFO_EXTENSION) === 'part') {
  			$permissions |= \OCP\PERMISSION_DELETE;
03e52840d   Kload   Init
112
  		}
6d9380f96   Cédric Dupont   Update sources OC...
113
114
115
116
117
118
  
  		if (\OC_Util::isSharingDisabledForUser()) {
  			$permissions &= ~\OCP\PERMISSION_SHARE;
  		}
  
  		return $permissions;
03e52840d   Kload   Init
119
120
121
122
123
124
125
126
127
128
129
  	}
  
  	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;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
130
131
132
133
134
  	/**
  	 * Delete the directory if DELETE permission is granted
  	 * @param string $path
  	 * @return boolean
  	 */
03e52840d   Kload   Init
135
  	public function rmdir($path) {
6d9380f96   Cédric Dupont   Update sources OC...
136
137
138
139
140
  
  		// never delete a share mount point
  		if(empty($path)) {
  			return false;
  		}
03e52840d   Kload   Init
141
142
143
144
145
146
147
148
  		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) {
6d9380f96   Cédric Dupont   Update sources OC...
149
150
151
  		$source = $this->getSourcePath($path);
  		list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  		return $storage->opendir($internalPath);
03e52840d   Kload   Init
152
153
154
  	}
  
  	public function is_dir($path) {
6d9380f96   Cédric Dupont   Update sources OC...
155
156
157
  		$source = $this->getSourcePath($path);
  		list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  		return $storage->is_dir($internalPath);
03e52840d   Kload   Init
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
  	}
  
  	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) {
6d9380f96   Cédric Dupont   Update sources OC...
191
192
193
  		$source = $this->getSourcePath($path);
  		list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  		return $storage->filesize($internalPath);
03e52840d   Kload   Init
194
195
196
  	}
  
  	public function isCreatable($path) {
03e52840d   Kload   Init
197
198
199
200
201
202
203
204
  		return ($this->getPermissions($path) & \OCP\PERMISSION_CREATE);
  	}
  
  	public function isReadable($path) {
  		return $this->file_exists($path);
  	}
  
  	public function isUpdatable($path) {
03e52840d   Kload   Init
205
206
207
208
  		return ($this->getPermissions($path) & \OCP\PERMISSION_UPDATE);
  	}
  
  	public function isDeletable($path) {
03e52840d   Kload   Init
209
210
211
212
  		return ($this->getPermissions($path) & \OCP\PERMISSION_DELETE);
  	}
  
  	public function isSharable($path) {
6d9380f96   Cédric Dupont   Update sources OC...
213
  		if (\OCP\Util::isSharingDisabledForUser()) {
03e52840d   Kload   Init
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
  			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) {
6d9380f96   Cédric Dupont   Update sources OC...
230
231
232
  		$source = $this->getSourcePath($path);
  		list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  		return $storage->filemtime($internalPath);
03e52840d   Kload   Init
233
234
235
236
237
238
  	}
  
  	public function file_get_contents($path) {
  		$source = $this->getSourcePath($path);
  		if ($source) {
  			$info = array(
6d9380f96   Cédric Dupont   Update sources OC...
239
  				'target' => $this->getMountPoint() . $path,
03e52840d   Kload   Init
240
241
242
243
244
245
246
247
248
249
250
251
  				'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...
252
253
  				|| ($this->is_dir($path) && !$this->isCreatable($path))
  			) {
03e52840d   Kload   Init
254
255
256
  				return false;
  			}
  			$info = array(
6d9380f96   Cédric Dupont   Update sources OC...
257
  				'target' => $this->getMountPoint() . '/' . $path,
31b7f2792   Kload   Upgrade to ownclo...
258
259
  				'source' => $source,
  			);
03e52840d   Kload   Init
260
261
262
263
264
265
266
  			\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;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
267
268
269
270
271
  	/**
  	 * Delete the file if DELETE permission is granted
  	 * @param string $path
  	 * @return boolean
  	 */
03e52840d   Kload   Init
272
  	public function unlink($path) {
6d9380f96   Cédric Dupont   Update sources OC...
273
274
275
276
277
  
  		// never delete a share mount point
  		if (empty($path)) {
  			return false;
  		}
03e52840d   Kload   Init
278
279
280
281
  		if ($source = $this->getSourcePath($path)) {
  			if ($this->isDeletable($path)) {
  				list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  				return $storage->unlink($internalPath);
03e52840d   Kload   Init
282
283
284
285
286
287
  			}
  		}
  		return false;
  	}
  
  	public function rename($path1, $path2) {
6d9380f96   Cédric Dupont   Update sources OC...
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
  
  		// we need the paths relative to data/user/files
  		$relPath1 = $this->getMountPoint() . '/' . $path1;
  		$relPath2 = $this->getMountPoint() . '/' . $path2;
  
  		// check for update permissions on the share
  		if ($this->isUpdatable('')) {
  
  			$pathinfo = pathinfo($relPath1);
  			// for part files we need to ask for the owner and path from the parent directory because
  			// the file cache doesn't return any results for part files
  			if ($pathinfo['extension'] === 'part') {
  				list($user1, $path1) = \OCA\Files_Sharing\Helper::getUidAndFilename($pathinfo['dirname']);
  				$path1 = $path1 . '/' . $pathinfo['basename'];
  			} else {
  				list($user1, $path1) = \OCA\Files_Sharing\Helper::getUidAndFilename($relPath1);
03e52840d   Kload   Init
304
  			}
6d9380f96   Cédric Dupont   Update sources OC...
305
306
307
308
  			$targetFilename = basename($relPath2);
  			list($user2, $path2) = \OCA\Files_Sharing\Helper::getUidAndFilename(dirname($relPath2));
  			$rootView = new \OC\Files\View('');
  			return $rootView->rename('/' . $user1 . '/files/' . $path1, '/' . $user2 . '/files/' . $path2 . '/' . $targetFilename);
03e52840d   Kload   Init
309
  		}
6d9380f96   Cédric Dupont   Update sources OC...
310

03e52840d   Kload   Init
311
312
313
314
315
316
  		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...
317
318
319
320
  			$oldSource = $this->getSourcePath($path1);
  			$newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2);
  			$rootView = new \OC\Files\View('');
  			return $rootView->copy($oldSource, $newSource);
03e52840d   Kload   Init
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
349
350
  		}
  		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(
6d9380f96   Cédric Dupont   Update sources OC...
351
  				'target' => $this->getMountPoint() . $path,
03e52840d   Kload   Init
352
353
354
355
356
357
358
359
360
361
362
  				'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) {
03e52840d   Kload   Init
363
364
365
366
367
368
369
370
  		if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->getMimeType($internalPath);
  		}
  		return false;
  	}
  
  	public function free_space($path) {
03e52840d   Kload   Init
371
372
373
374
375
  		$source = $this->getSourcePath($path);
  		if ($source) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->free_space($internalPath);
  		}
6d9380f96   Cédric Dupont   Update sources OC...
376
  		return \OC\Files\SPACE_UNKNOWN;
03e52840d   Kload   Init
377
378
379
380
381
382
383
384
385
  	}
  
  	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...
386

03e52840d   Kload   Init
387
388
389
390
391
392
393
394
395
  	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) {
6d9380f96   Cédric Dupont   Update sources OC...
396
397
398
  		$shares = \OCP\Share::getItemsSharedWith('file');
  		$manager = Filesystem::getMountManager();
  		$loader = Filesystem::getLoader();
03e52840d   Kload   Init
399
  		if (!\OCP\User::isLoggedIn() || \OCP\User::getUser() != $options['user']
6d9380f96   Cédric Dupont   Update sources OC...
400
  			|| $shares
31b7f2792   Kload   Upgrade to ownclo...
401
  		) {
6d9380f96   Cédric Dupont   Update sources OC...
402
403
404
405
406
407
408
409
410
411
412
413
414
415
  			foreach ($shares as $share) {
  				// don't mount shares where we have no permissions
  				if ($share['permissions'] > 0) {
  					$mount = new SharedMount(
  							'\OC\Files\Storage\Shared',
  							$options['user_dir'] . '/' . $share['file_target'],
  							array(
  								'share' => $share,
  								),
  							$loader
  							);
  					$manager->addMount($mount);
  				}
  			}
03e52840d   Kload   Init
416
417
  		}
  	}
6d9380f96   Cédric Dupont   Update sources OC...
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
  	/**
  	 * return mount point of share, relative to data/user/files
  	 *
  	 * @return string
  	 */
  	public function getMountPoint() {
  		return $this->share['file_target'];
  	}
  
  	public function setMountPoint($path) {
  		$this->share['file_target'] = $path;
  	}
  
  	public function getShareType() {
  		return $this->share['share_type'];
  	}
  
  	/**
  	 * does the group share already has a user specific unique name
  	 * @return bool
  	 */
  	public function uniqueNameSet() {
  		return (isset($this->share['unique_name']) && $this->share['unique_name']);
  	}
  
  	/**
  	 * the share now uses a unique name of this user
  	 *
  	 * @brief the share now uses a unique name of this user
  	 */
  	public function setUniqueName() {
  		$this->share['unique_name'] = true;
  	}
  
  	/**
  	 * get share ID
  	 * @return integer unique share ID
  	 */
  	public function getShareId() {
  		return $this->share['id'];
  	}
  
  	/**
  	 * get the user who shared the file
  	 * @return string
  	 */
  	public function getSharedFrom() {
  		return $this->share['uid_owner'];
03e52840d   Kload   Init
466
  	}
6d9380f96   Cédric Dupont   Update sources OC...
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
  	/**
  	 * @return array
  	 */
  	public function getShare() {
  		return $this->share;
  	}
  
  	/**
  	 * return share type, can be "file" or "folder"
  	 * @return string
  	 */
  	public function getItemType() {
  		return $this->share['item_type'];
  	}
  
  	public function hasUpdated($path, $time) {
  		return $this->filemtime($path) > $time;
03e52840d   Kload   Init
484
  	}
6d9380f96   Cédric Dupont   Update sources OC...
485
486
487
488
489
  	public function getCache($path = '', $storage = null) {
  		if (!$storage) {
  			$storage = $this;
  		}
  		return new \OC\Files\Cache\Shared_Cache($storage);
03e52840d   Kload   Init
490
  	}
6d9380f96   Cédric Dupont   Update sources OC...
491
492
493
494
495
  	public function getScanner($path = '', $storage = null) {
  		if (!$storage) {
  			$storage = $this;
  		}
  		return new \OC\Files\Cache\Scanner($storage);
03e52840d   Kload   Init
496
  	}
6d9380f96   Cédric Dupont   Update sources OC...
497
498
499
500
501
  	public function getWatcher($path = '', $storage = null) {
  		if (!$storage) {
  			$storage = $this;
  		}
  		return new \OC\Files\Cache\Shared_Watcher($storage);
03e52840d   Kload   Init
502
503
504
505
  	}
  
  	public function getOwner($path) {
  		if ($path == '') {
6d9380f96   Cédric Dupont   Update sources OC...
506
  			$path = $this->getMountPoint();
03e52840d   Kload   Init
507
508
509
510
511
512
513
514
515
516
  		}
  		$source = $this->getFile($path);
  		if ($source) {
  			return $source['fileOwner'];
  		}
  		return false;
  	}
  
  	public function getETag($path) {
  		if ($path == '') {
6d9380f96   Cédric Dupont   Update sources OC...
517
  			$path = $this->getMountPoint();
03e52840d   Kload   Init
518
519
520
521
522
523
524
525
526
  		}
  		if ($source = $this->getSourcePath($path)) {
  			list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source);
  			return $storage->getETag($internalPath);
  		}
  		return null;
  	}
  
  }