@@ -28,10 +28,10 @@ |
||
| 28 | 28 | * For auth mechanisms where the user needs to provide credentials |
| 29 | 29 | */ |
| 30 | 30 | interface IUserProvided { |
| 31 | - /** |
|
| 32 | - * @param IUser $user the user for which to save the user provided options |
|
| 33 | - * @param int $mountId the mount id to save the options for |
|
| 34 | - * @param array $options the user provided options |
|
| 35 | - */ |
|
| 36 | - public function saveBackendOptions(IUser $user, $mountId, array $options); |
|
| 31 | + /** |
|
| 32 | + * @param IUser $user the user for which to save the user provided options |
|
| 33 | + * @param int $mountId the mount id to save the options for |
|
| 34 | + * @param array $options the user provided options |
|
| 35 | + */ |
|
| 36 | + public function saveBackendOptions(IUser $user, $mountId, array $options); |
|
| 37 | 37 | } |
@@ -29,12 +29,12 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | class Builtin extends AuthMechanism { |
| 31 | 31 | |
| 32 | - public function __construct(IL10N $l) { |
|
| 33 | - $this |
|
| 34 | - ->setIdentifier('builtin::builtin') |
|
| 35 | - ->setScheme(self::SCHEME_BUILTIN) |
|
| 36 | - ->setText($l->t('Builtin')) |
|
| 37 | - ; |
|
| 38 | - } |
|
| 32 | + public function __construct(IL10N $l) { |
|
| 33 | + $this |
|
| 34 | + ->setIdentifier('builtin::builtin') |
|
| 35 | + ->setScheme(self::SCHEME_BUILTIN) |
|
| 36 | + ->setText($l->t('Builtin')) |
|
| 37 | + ; |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | 40 | } |
@@ -29,12 +29,12 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | class NullMechanism extends AuthMechanism { |
| 31 | 31 | |
| 32 | - public function __construct(IL10N $l) { |
|
| 33 | - $this |
|
| 34 | - ->setIdentifier('null::null') |
|
| 35 | - ->setScheme(self::SCHEME_NULL) |
|
| 36 | - ->setText($l->t('None')) |
|
| 37 | - ; |
|
| 38 | - } |
|
| 32 | + public function __construct(IL10N $l) { |
|
| 33 | + $this |
|
| 34 | + ->setIdentifier('null::null') |
|
| 35 | + ->setScheme(self::SCHEME_NULL) |
|
| 36 | + ->setText($l->t('None')) |
|
| 37 | + ; |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | 40 | } |
@@ -29,33 +29,33 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | trait PriorityTrait { |
| 31 | 31 | |
| 32 | - /** @var int initial priority */ |
|
| 33 | - protected $priority = BackendService::PRIORITY_DEFAULT; |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * @return int |
|
| 37 | - */ |
|
| 38 | - public function getPriority() { |
|
| 39 | - return $this->priority; |
|
| 40 | - } |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * @param int $priority |
|
| 44 | - * @return self |
|
| 45 | - */ |
|
| 46 | - public function setPriority($priority) { |
|
| 47 | - $this->priority = $priority; |
|
| 48 | - return $this; |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - /** |
|
| 52 | - * @param PriorityTrait $a |
|
| 53 | - * @param PriorityTrait $b |
|
| 54 | - * @return int |
|
| 55 | - */ |
|
| 56 | - public static function priorityCompare(PriorityTrait $a, PriorityTrait $b) { |
|
| 57 | - return ($a->getPriority() - $b->getPriority()); |
|
| 58 | - } |
|
| 32 | + /** @var int initial priority */ |
|
| 33 | + protected $priority = BackendService::PRIORITY_DEFAULT; |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * @return int |
|
| 37 | + */ |
|
| 38 | + public function getPriority() { |
|
| 39 | + return $this->priority; |
|
| 40 | + } |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * @param int $priority |
|
| 44 | + * @return self |
|
| 45 | + */ |
|
| 46 | + public function setPriority($priority) { |
|
| 47 | + $this->priority = $priority; |
|
| 48 | + return $this; |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + /** |
|
| 52 | + * @param PriorityTrait $a |
|
| 53 | + * @param PriorityTrait $b |
|
| 54 | + * @return int |
|
| 55 | + */ |
|
| 56 | + public static function priorityCompare(PriorityTrait $a, PriorityTrait $b) { |
|
| 57 | + return ($a->getPriority() - $b->getPriority()); |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | 60 | } |
| 61 | 61 | |
@@ -30,10 +30,10 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | interface IBackendProvider { |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @since 9.1.0 |
|
| 35 | - * @return Backend[] |
|
| 36 | - */ |
|
| 37 | - public function getBackends(); |
|
| 33 | + /** |
|
| 34 | + * @since 9.1.0 |
|
| 35 | + * @return Backend[] |
|
| 36 | + */ |
|
| 37 | + public function getBackends(); |
|
| 38 | 38 | |
| 39 | 39 | } |
@@ -30,10 +30,10 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | interface IAuthMechanismProvider { |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @since 9.1.0 |
|
| 35 | - * @return AuthMechanism[] |
|
| 36 | - */ |
|
| 37 | - public function getAuthMechanisms(); |
|
| 33 | + /** |
|
| 34 | + * @since 9.1.0 |
|
| 35 | + * @return AuthMechanism[] |
|
| 36 | + */ |
|
| 37 | + public function getAuthMechanisms(); |
|
| 38 | 38 | |
| 39 | 39 | } |
@@ -31,14 +31,14 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | class SessionStorageWrapper extends PermissionsMask { |
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * @param array $arguments ['storage' => $storage] |
|
| 36 | - */ |
|
| 37 | - public function __construct($arguments) { |
|
| 38 | - // disable sharing permission |
|
| 39 | - $arguments['mask'] = Constants::PERMISSION_ALL & ~Constants::PERMISSION_SHARE; |
|
| 40 | - parent::__construct($arguments); |
|
| 41 | - } |
|
| 34 | + /** |
|
| 35 | + * @param array $arguments ['storage' => $storage] |
|
| 36 | + */ |
|
| 37 | + public function __construct($arguments) { |
|
| 38 | + // disable sharing permission |
|
| 39 | + $arguments['mask'] = Constants::PERMISSION_ALL & ~Constants::PERMISSION_SHARE; |
|
| 40 | + parent::__construct($arguments); |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | 43 | } |
| 44 | 44 | |
@@ -30,101 +30,101 @@ |
||
| 30 | 30 | |
| 31 | 31 | abstract class StreamWrapper extends \OC\Files\Storage\Common { |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @param string $path |
|
| 35 | - * @return string|null |
|
| 36 | - */ |
|
| 37 | - abstract public function constructUrl($path); |
|
| 38 | - |
|
| 39 | - public function mkdir($path) { |
|
| 40 | - return mkdir($this->constructUrl($path)); |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - public function rmdir($path) { |
|
| 44 | - if ($this->is_dir($path) && $this->isDeletable($path)) { |
|
| 45 | - $dh = $this->opendir($path); |
|
| 46 | - if (!is_resource($dh)) { |
|
| 47 | - return false; |
|
| 48 | - } |
|
| 49 | - while (($file = readdir($dh)) !== false) { |
|
| 50 | - if ($this->is_dir($path . '/' . $file)) { |
|
| 51 | - $this->rmdir($path . '/' . $file); |
|
| 52 | - } else { |
|
| 53 | - $this->unlink($path . '/' . $file); |
|
| 54 | - } |
|
| 55 | - } |
|
| 56 | - $url = $this->constructUrl($path); |
|
| 57 | - $success = rmdir($url); |
|
| 58 | - clearstatcache(false, $url); |
|
| 59 | - return $success; |
|
| 60 | - } else { |
|
| 61 | - return false; |
|
| 62 | - } |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - public function opendir($path) { |
|
| 66 | - return opendir($this->constructUrl($path)); |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - public function filetype($path) { |
|
| 70 | - return @filetype($this->constructUrl($path)); |
|
| 71 | - } |
|
| 72 | - |
|
| 73 | - public function file_exists($path) { |
|
| 74 | - return file_exists($this->constructUrl($path)); |
|
| 75 | - } |
|
| 76 | - |
|
| 77 | - public function unlink($path) { |
|
| 78 | - $url = $this->constructUrl($path); |
|
| 79 | - $success = unlink($url); |
|
| 80 | - // normally unlink() is supposed to do this implicitly, |
|
| 81 | - // but doing it anyway just to be sure |
|
| 82 | - clearstatcache(false, $url); |
|
| 83 | - return $success; |
|
| 84 | - } |
|
| 85 | - |
|
| 86 | - public function fopen($path, $mode) { |
|
| 87 | - return fopen($this->constructUrl($path), $mode); |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - public function touch($path, $mtime = null) { |
|
| 91 | - if ($this->file_exists($path)) { |
|
| 92 | - if (is_null($mtime)) { |
|
| 93 | - $fh = $this->fopen($path, 'a'); |
|
| 94 | - fwrite($fh, ''); |
|
| 95 | - fclose($fh); |
|
| 96 | - |
|
| 97 | - return true; |
|
| 98 | - } else { |
|
| 99 | - return false; //not supported |
|
| 100 | - } |
|
| 101 | - } else { |
|
| 102 | - $this->file_put_contents($path, ''); |
|
| 103 | - return true; |
|
| 104 | - } |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - /** |
|
| 108 | - * @param string $path |
|
| 109 | - * @param string $target |
|
| 110 | - */ |
|
| 111 | - public function getFile($path, $target) { |
|
| 112 | - return copy($this->constructUrl($path), $target); |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - /** |
|
| 116 | - * @param string $target |
|
| 117 | - */ |
|
| 118 | - public function uploadFile($path, $target) { |
|
| 119 | - return copy($path, $this->constructUrl($target)); |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - public function rename($path1, $path2) { |
|
| 123 | - return rename($this->constructUrl($path1), $this->constructUrl($path2)); |
|
| 124 | - } |
|
| 125 | - |
|
| 126 | - public function stat($path) { |
|
| 127 | - return stat($this->constructUrl($path)); |
|
| 128 | - } |
|
| 33 | + /** |
|
| 34 | + * @param string $path |
|
| 35 | + * @return string|null |
|
| 36 | + */ |
|
| 37 | + abstract public function constructUrl($path); |
|
| 38 | + |
|
| 39 | + public function mkdir($path) { |
|
| 40 | + return mkdir($this->constructUrl($path)); |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + public function rmdir($path) { |
|
| 44 | + if ($this->is_dir($path) && $this->isDeletable($path)) { |
|
| 45 | + $dh = $this->opendir($path); |
|
| 46 | + if (!is_resource($dh)) { |
|
| 47 | + return false; |
|
| 48 | + } |
|
| 49 | + while (($file = readdir($dh)) !== false) { |
|
| 50 | + if ($this->is_dir($path . '/' . $file)) { |
|
| 51 | + $this->rmdir($path . '/' . $file); |
|
| 52 | + } else { |
|
| 53 | + $this->unlink($path . '/' . $file); |
|
| 54 | + } |
|
| 55 | + } |
|
| 56 | + $url = $this->constructUrl($path); |
|
| 57 | + $success = rmdir($url); |
|
| 58 | + clearstatcache(false, $url); |
|
| 59 | + return $success; |
|
| 60 | + } else { |
|
| 61 | + return false; |
|
| 62 | + } |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + public function opendir($path) { |
|
| 66 | + return opendir($this->constructUrl($path)); |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + public function filetype($path) { |
|
| 70 | + return @filetype($this->constructUrl($path)); |
|
| 71 | + } |
|
| 72 | + |
|
| 73 | + public function file_exists($path) { |
|
| 74 | + return file_exists($this->constructUrl($path)); |
|
| 75 | + } |
|
| 76 | + |
|
| 77 | + public function unlink($path) { |
|
| 78 | + $url = $this->constructUrl($path); |
|
| 79 | + $success = unlink($url); |
|
| 80 | + // normally unlink() is supposed to do this implicitly, |
|
| 81 | + // but doing it anyway just to be sure |
|
| 82 | + clearstatcache(false, $url); |
|
| 83 | + return $success; |
|
| 84 | + } |
|
| 85 | + |
|
| 86 | + public function fopen($path, $mode) { |
|
| 87 | + return fopen($this->constructUrl($path), $mode); |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + public function touch($path, $mtime = null) { |
|
| 91 | + if ($this->file_exists($path)) { |
|
| 92 | + if (is_null($mtime)) { |
|
| 93 | + $fh = $this->fopen($path, 'a'); |
|
| 94 | + fwrite($fh, ''); |
|
| 95 | + fclose($fh); |
|
| 96 | + |
|
| 97 | + return true; |
|
| 98 | + } else { |
|
| 99 | + return false; //not supported |
|
| 100 | + } |
|
| 101 | + } else { |
|
| 102 | + $this->file_put_contents($path, ''); |
|
| 103 | + return true; |
|
| 104 | + } |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + /** |
|
| 108 | + * @param string $path |
|
| 109 | + * @param string $target |
|
| 110 | + */ |
|
| 111 | + public function getFile($path, $target) { |
|
| 112 | + return copy($this->constructUrl($path), $target); |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + /** |
|
| 116 | + * @param string $target |
|
| 117 | + */ |
|
| 118 | + public function uploadFile($path, $target) { |
|
| 119 | + return copy($path, $this->constructUrl($target)); |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + public function rename($path1, $path2) { |
|
| 123 | + return rename($this->constructUrl($path1), $this->constructUrl($path2)); |
|
| 124 | + } |
|
| 125 | + |
|
| 126 | + public function stat($path) { |
|
| 127 | + return stat($this->constructUrl($path)); |
|
| 128 | + } |
|
| 129 | 129 | |
| 130 | 130 | } |
@@ -43,28 +43,28 @@ |
||
| 43 | 43 | */ |
| 44 | 44 | trait StorageModifierTrait { |
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Modify a StorageConfig parameters |
|
| 48 | - * |
|
| 49 | - * @param StorageConfig $storage |
|
| 50 | - * @param IUser $user User the storage is being used as |
|
| 51 | - * @throws InsufficientDataForMeaningfulAnswerException |
|
| 52 | - * @throws StorageNotAvailableException |
|
| 53 | - */ |
|
| 54 | - public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
| 55 | - } |
|
| 46 | + /** |
|
| 47 | + * Modify a StorageConfig parameters |
|
| 48 | + * |
|
| 49 | + * @param StorageConfig $storage |
|
| 50 | + * @param IUser $user User the storage is being used as |
|
| 51 | + * @throws InsufficientDataForMeaningfulAnswerException |
|
| 52 | + * @throws StorageNotAvailableException |
|
| 53 | + */ |
|
| 54 | + public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * Wrap a Storage if necessary |
|
| 59 | - * |
|
| 60 | - * @param Storage $storage |
|
| 61 | - * @return Storage |
|
| 62 | - * @throws InsufficientDataForMeaningfulAnswerException |
|
| 63 | - * @throws StorageNotAvailableException |
|
| 64 | - */ |
|
| 65 | - public function wrapStorage(Storage $storage) { |
|
| 66 | - return $storage; |
|
| 67 | - } |
|
| 57 | + /** |
|
| 58 | + * Wrap a Storage if necessary |
|
| 59 | + * |
|
| 60 | + * @param Storage $storage |
|
| 61 | + * @return Storage |
|
| 62 | + * @throws InsufficientDataForMeaningfulAnswerException |
|
| 63 | + * @throws StorageNotAvailableException |
|
| 64 | + */ |
|
| 65 | + public function wrapStorage(Storage $storage) { |
|
| 66 | + return $storage; |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | 69 | } |
| 70 | 70 | |