@@ -29,39 +29,39 @@ |
||
29 | 29 | |
30 | 30 | class WatcherConnector { |
31 | 31 | |
32 | - /** @var IRootFolder */ |
|
33 | - private $root; |
|
32 | + /** @var IRootFolder */ |
|
33 | + private $root; |
|
34 | 34 | |
35 | - /** @var SystemConfig */ |
|
36 | - private $config; |
|
35 | + /** @var SystemConfig */ |
|
36 | + private $config; |
|
37 | 37 | |
38 | - /** |
|
39 | - * WatcherConnector constructor. |
|
40 | - * |
|
41 | - * @param IRootFolder $root |
|
42 | - * @param SystemConfig $config |
|
43 | - */ |
|
44 | - public function __construct(IRootFolder $root, |
|
45 | - SystemConfig $config) { |
|
46 | - $this->root = $root; |
|
47 | - $this->config = $config; |
|
48 | - } |
|
38 | + /** |
|
39 | + * WatcherConnector constructor. |
|
40 | + * |
|
41 | + * @param IRootFolder $root |
|
42 | + * @param SystemConfig $config |
|
43 | + */ |
|
44 | + public function __construct(IRootFolder $root, |
|
45 | + SystemConfig $config) { |
|
46 | + $this->root = $root; |
|
47 | + $this->config = $config; |
|
48 | + } |
|
49 | 49 | |
50 | - /** |
|
51 | - * @return Watcher |
|
52 | - */ |
|
53 | - private function getWatcher(): Watcher { |
|
54 | - return \OC::$server->query(Watcher::class); |
|
55 | - } |
|
50 | + /** |
|
51 | + * @return Watcher |
|
52 | + */ |
|
53 | + private function getWatcher(): Watcher { |
|
54 | + return \OC::$server->query(Watcher::class); |
|
55 | + } |
|
56 | 56 | |
57 | - public function connectWatcher() { |
|
58 | - // Do not connect if we are not setup yet! |
|
59 | - if ($this->config->getValue('instanceid', null) !== null) { |
|
60 | - $this->root->listen('\OC\Files', 'postWrite', function (Node $node) { |
|
61 | - $this->getWatcher()->postWrite($node); |
|
62 | - }); |
|
57 | + public function connectWatcher() { |
|
58 | + // Do not connect if we are not setup yet! |
|
59 | + if ($this->config->getValue('instanceid', null) !== null) { |
|
60 | + $this->root->listen('\OC\Files', 'postWrite', function (Node $node) { |
|
61 | + $this->getWatcher()->postWrite($node); |
|
62 | + }); |
|
63 | 63 | |
64 | - \OC_Hook::connect('\OCP\Versions', 'rollback', $this->getWatcher(), 'versionRollback'); |
|
65 | - } |
|
66 | - } |
|
64 | + \OC_Hook::connect('\OCP\Versions', 'rollback', $this->getWatcher(), 'versionRollback'); |
|
65 | + } |
|
66 | + } |
|
67 | 67 | } |
@@ -29,8 +29,8 @@ |
||
29 | 29 | */ |
30 | 30 | interface ICountDisabledInGroup { |
31 | 31 | |
32 | - /** |
|
33 | - * @since 14.0.0 |
|
34 | - */ |
|
35 | - public function countDisabledInGroup(string $gid): int; |
|
32 | + /** |
|
33 | + * @since 14.0.0 |
|
34 | + */ |
|
35 | + public function countDisabledInGroup(string $gid): int; |
|
36 | 36 | } |
@@ -29,28 +29,28 @@ |
||
29 | 29 | |
30 | 30 | class Version14000Date20180516101403 extends SimpleMigrationStep { |
31 | 31 | |
32 | - /** |
|
33 | - * @param IOutput $output |
|
34 | - * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|
35 | - * @param array $options |
|
36 | - * @return null|ISchemaWrapper |
|
37 | - */ |
|
38 | - public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { |
|
39 | - /** @var ISchemaWrapper $schema */ |
|
40 | - $schema = $schemaClosure(); |
|
32 | + /** |
|
33 | + * @param IOutput $output |
|
34 | + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|
35 | + * @param array $options |
|
36 | + * @return null|ISchemaWrapper |
|
37 | + */ |
|
38 | + public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { |
|
39 | + /** @var ISchemaWrapper $schema */ |
|
40 | + $schema = $schemaClosure(); |
|
41 | 41 | |
42 | - $table = $schema->getTable('authtoken'); |
|
42 | + $table = $schema->getTable('authtoken'); |
|
43 | 43 | |
44 | - if (!$table->hasColumn('expires')) { |
|
45 | - $table->addColumn('expires', 'integer', [ |
|
46 | - 'notnull' => false, |
|
47 | - 'length' => 4, |
|
48 | - 'default' => null, |
|
49 | - 'unsigned' => true, |
|
50 | - ]); |
|
44 | + if (!$table->hasColumn('expires')) { |
|
45 | + $table->addColumn('expires', 'integer', [ |
|
46 | + 'notnull' => false, |
|
47 | + 'length' => 4, |
|
48 | + 'default' => null, |
|
49 | + 'unsigned' => true, |
|
50 | + ]); |
|
51 | 51 | |
52 | - return $schema; |
|
53 | - } |
|
54 | - return null; |
|
55 | - } |
|
52 | + return $schema; |
|
53 | + } |
|
54 | + return null; |
|
55 | + } |
|
56 | 56 | } |
@@ -25,10 +25,10 @@ |
||
25 | 25 | use OCP\IL10N; |
26 | 26 | |
27 | 27 | class KerberosAuth extends AuthMechanism { |
28 | - public function __construct(IL10N $l) { |
|
29 | - $this |
|
30 | - ->setIdentifier('smb::kerberos') |
|
31 | - ->setScheme(self::SCHEME_SMB) |
|
32 | - ->setText($l->t('Kerberos ticket')); |
|
33 | - } |
|
28 | + public function __construct(IL10N $l) { |
|
29 | + $this |
|
30 | + ->setIdentifier('smb::kerberos') |
|
31 | + ->setScheme(self::SCHEME_SMB) |
|
32 | + ->setText($l->t('Kerberos ticket')); |
|
33 | + } |
|
34 | 34 | } |
@@ -27,37 +27,37 @@ |
||
27 | 27 | |
28 | 28 | class CloudFederationFactory implements ICloudFederationFactory { |
29 | 29 | |
30 | - /** |
|
31 | - * get a CloudFederationShare Object to prepare a share you want to send |
|
32 | - * |
|
33 | - * @param string $shareWith |
|
34 | - * @param string $name resource name (e.g. document.odt) |
|
35 | - * @param string $description share description (optional) |
|
36 | - * @param string $providerId resource UID on the provider side |
|
37 | - * @param string $owner provider specific UID of the user who owns the resource |
|
38 | - * @param string $ownerDisplayName display name of the user who shared the item |
|
39 | - * @param string $sharedBy provider specific UID of the user who shared the resource |
|
40 | - * @param string $sharedByDisplayName display name of the user who shared the resource |
|
41 | - * @param string $sharedSecret used to authenticate requests across servers |
|
42 | - * @param string $shareType ('group' or 'user' share) |
|
43 | - * @param $resourceType ('file', 'calendar',...) |
|
44 | - * @return ICloudFederationShare |
|
45 | - * |
|
46 | - * @since 14.0.0 |
|
47 | - */ |
|
48 | - public function getCloudFederationShare($shareWith, $name, $description, $providerId, $owner, $ownerDisplayName, $sharedBy, $sharedByDisplayName, $sharedSecret, $shareType, $resourceType) { |
|
49 | - return new CloudFederationShare($shareWith, $name, $description, $providerId, $owner, $ownerDisplayName, $sharedBy, $sharedByDisplayName, $shareType, $resourceType, $sharedSecret); |
|
50 | - } |
|
30 | + /** |
|
31 | + * get a CloudFederationShare Object to prepare a share you want to send |
|
32 | + * |
|
33 | + * @param string $shareWith |
|
34 | + * @param string $name resource name (e.g. document.odt) |
|
35 | + * @param string $description share description (optional) |
|
36 | + * @param string $providerId resource UID on the provider side |
|
37 | + * @param string $owner provider specific UID of the user who owns the resource |
|
38 | + * @param string $ownerDisplayName display name of the user who shared the item |
|
39 | + * @param string $sharedBy provider specific UID of the user who shared the resource |
|
40 | + * @param string $sharedByDisplayName display name of the user who shared the resource |
|
41 | + * @param string $sharedSecret used to authenticate requests across servers |
|
42 | + * @param string $shareType ('group' or 'user' share) |
|
43 | + * @param $resourceType ('file', 'calendar',...) |
|
44 | + * @return ICloudFederationShare |
|
45 | + * |
|
46 | + * @since 14.0.0 |
|
47 | + */ |
|
48 | + public function getCloudFederationShare($shareWith, $name, $description, $providerId, $owner, $ownerDisplayName, $sharedBy, $sharedByDisplayName, $sharedSecret, $shareType, $resourceType) { |
|
49 | + return new CloudFederationShare($shareWith, $name, $description, $providerId, $owner, $ownerDisplayName, $sharedBy, $sharedByDisplayName, $shareType, $resourceType, $sharedSecret); |
|
50 | + } |
|
51 | 51 | |
52 | - /** |
|
53 | - * get a Cloud FederationNotification object to prepare a notification you |
|
54 | - * want to send |
|
55 | - * |
|
56 | - * @return ICloudFederationNotification |
|
57 | - * |
|
58 | - * @since 14.0.0 |
|
59 | - */ |
|
60 | - public function getCloudFederationNotification() { |
|
61 | - return new CloudFederationNotification(); |
|
62 | - } |
|
52 | + /** |
|
53 | + * get a Cloud FederationNotification object to prepare a notification you |
|
54 | + * want to send |
|
55 | + * |
|
56 | + * @return ICloudFederationNotification |
|
57 | + * |
|
58 | + * @since 14.0.0 |
|
59 | + */ |
|
60 | + public function getCloudFederationNotification() { |
|
61 | + return new CloudFederationNotification(); |
|
62 | + } |
|
63 | 63 | } |
@@ -35,31 +35,31 @@ |
||
35 | 35 | */ |
36 | 36 | class RSAPrivateKey extends AuthMechanism { |
37 | 37 | |
38 | - /** @var IConfig */ |
|
39 | - private $config; |
|
38 | + /** @var IConfig */ |
|
39 | + private $config; |
|
40 | 40 | |
41 | - public function __construct(IL10N $l, IConfig $config) { |
|
42 | - $this->config = $config; |
|
41 | + public function __construct(IL10N $l, IConfig $config) { |
|
42 | + $this->config = $config; |
|
43 | 43 | |
44 | - $this |
|
45 | - ->setIdentifier('publickey::rsa_private') |
|
46 | - ->setScheme(self::SCHEME_PUBLICKEY) |
|
47 | - ->setText($l->t('RSA private key')) |
|
48 | - ->addParameters([ |
|
49 | - new DefinitionParameter('user', $l->t('Username')), |
|
50 | - (new DefinitionParameter('password', $l->t('Password'))) |
|
51 | - ->setFlag(DefinitionParameter::FLAG_OPTIONAL) |
|
52 | - ->setType(DefinitionParameter::VALUE_PASSWORD), |
|
53 | - new DefinitionParameter('private_key', $l->t('Private key')), |
|
54 | - ]); |
|
55 | - } |
|
44 | + $this |
|
45 | + ->setIdentifier('publickey::rsa_private') |
|
46 | + ->setScheme(self::SCHEME_PUBLICKEY) |
|
47 | + ->setText($l->t('RSA private key')) |
|
48 | + ->addParameters([ |
|
49 | + new DefinitionParameter('user', $l->t('Username')), |
|
50 | + (new DefinitionParameter('password', $l->t('Password'))) |
|
51 | + ->setFlag(DefinitionParameter::FLAG_OPTIONAL) |
|
52 | + ->setType(DefinitionParameter::VALUE_PASSWORD), |
|
53 | + new DefinitionParameter('private_key', $l->t('Private key')), |
|
54 | + ]); |
|
55 | + } |
|
56 | 56 | |
57 | - public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
58 | - $auth = new RSACrypt(); |
|
59 | - $auth->setPassword($this->config->getSystemValue('secret', '')); |
|
60 | - if (!$auth->loadKey($storage->getBackendOption('private_key'))) { |
|
61 | - throw new \RuntimeException('unable to load private key'); |
|
62 | - } |
|
63 | - $storage->setBackendOption('public_key_auth', $auth); |
|
64 | - } |
|
57 | + public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) { |
|
58 | + $auth = new RSACrypt(); |
|
59 | + $auth->setPassword($this->config->getSystemValue('secret', '')); |
|
60 | + if (!$auth->loadKey($storage->getBackendOption('private_key'))) { |
|
61 | + throw new \RuntimeException('unable to load private key'); |
|
62 | + } |
|
63 | + $storage->setBackendOption('public_key_auth', $auth); |
|
64 | + } |
|
65 | 65 | } |
@@ -30,24 +30,24 @@ |
||
30 | 30 | */ |
31 | 31 | interface ICloudFederationNotification { |
32 | 32 | |
33 | - /** |
|
34 | - * add a message to the notification |
|
35 | - * |
|
36 | - * @param string $notificationType (e.g. SHARE_ACCEPTED) |
|
37 | - * @param string $resourceType (e.g. file, calendar, contact,...) |
|
38 | - * @param $providerId id of the share |
|
39 | - * @param array $notification , payload of the notification |
|
40 | - * |
|
41 | - * @since 14.0.0 |
|
42 | - */ |
|
43 | - public function setMessage($notificationType, $resourceType, $providerId, array $notification); |
|
33 | + /** |
|
34 | + * add a message to the notification |
|
35 | + * |
|
36 | + * @param string $notificationType (e.g. SHARE_ACCEPTED) |
|
37 | + * @param string $resourceType (e.g. file, calendar, contact,...) |
|
38 | + * @param $providerId id of the share |
|
39 | + * @param array $notification , payload of the notification |
|
40 | + * |
|
41 | + * @since 14.0.0 |
|
42 | + */ |
|
43 | + public function setMessage($notificationType, $resourceType, $providerId, array $notification); |
|
44 | 44 | |
45 | - /** |
|
46 | - * get message, ready to send out |
|
47 | - * |
|
48 | - * @return array |
|
49 | - * |
|
50 | - * @since 14.0.0 |
|
51 | - */ |
|
52 | - public function getMessage(); |
|
45 | + /** |
|
46 | + * get message, ready to send out |
|
47 | + * |
|
48 | + * @return array |
|
49 | + * |
|
50 | + * @since 14.0.0 |
|
51 | + */ |
|
52 | + public function getMessage(); |
|
53 | 53 | } |
@@ -30,221 +30,221 @@ |
||
30 | 30 | */ |
31 | 31 | interface ICloudFederationShare { |
32 | 32 | |
33 | - /** |
|
34 | - * set uid of the recipient |
|
35 | - * |
|
36 | - * @param string $user |
|
37 | - * |
|
38 | - * @since 14.0.0 |
|
39 | - */ |
|
40 | - public function setShareWith($user); |
|
41 | - |
|
42 | - /** |
|
43 | - * set resource name (e.g. file, calendar, contact,...) |
|
44 | - * |
|
45 | - * @param string $name |
|
46 | - * |
|
47 | - * @since 14.0.0 |
|
48 | - */ |
|
49 | - public function setResourceName($name); |
|
50 | - |
|
51 | - /** |
|
52 | - * set resource type (e.g. file, calendar, contact,...) |
|
53 | - * |
|
54 | - * @param string $resourceType |
|
55 | - * |
|
56 | - * @since 14.0.0 |
|
57 | - */ |
|
58 | - public function setResourceType($resourceType); |
|
59 | - |
|
60 | - /** |
|
61 | - * set resource description (optional) |
|
62 | - * |
|
63 | - * @param string $description |
|
64 | - * |
|
65 | - * @since 14.0.0 |
|
66 | - */ |
|
67 | - public function setDescription($description); |
|
68 | - |
|
69 | - /** |
|
70 | - * set provider ID (e.g. file ID) |
|
71 | - * |
|
72 | - * @param string $providerId |
|
73 | - * |
|
74 | - * @since 14.0.0 |
|
75 | - */ |
|
76 | - public function setProviderId($providerId); |
|
77 | - |
|
78 | - /** |
|
79 | - * set owner UID |
|
80 | - * |
|
81 | - * @param string $owner |
|
82 | - * |
|
83 | - * @since 14.0.0 |
|
84 | - */ |
|
85 | - public function setOwner($owner); |
|
86 | - |
|
87 | - /** |
|
88 | - * set owner display name |
|
89 | - * |
|
90 | - * @param string $ownerDisplayName |
|
91 | - * |
|
92 | - * @since 14.0.0 |
|
93 | - */ |
|
94 | - public function setOwnerDisplayName($ownerDisplayName); |
|
95 | - |
|
96 | - /** |
|
97 | - * set UID of the user who sends the share |
|
98 | - * |
|
99 | - * @param string $sharedBy |
|
100 | - * |
|
101 | - * @since 14.0.0 |
|
102 | - */ |
|
103 | - public function setSharedBy($sharedBy); |
|
104 | - |
|
105 | - /** |
|
106 | - * set display name of the user who sends the share |
|
107 | - * |
|
108 | - * @param $sharedByDisplayName |
|
109 | - * |
|
110 | - * @since 14.0.0 |
|
111 | - */ |
|
112 | - public function setSharedByDisplayName($sharedByDisplayName); |
|
113 | - |
|
114 | - /** |
|
115 | - * set protocol specification |
|
116 | - * |
|
117 | - * @param array $protocol |
|
118 | - * |
|
119 | - * @since 14.0.0 |
|
120 | - */ |
|
121 | - public function setProtocol(array $protocol); |
|
122 | - |
|
123 | - /** |
|
124 | - * share type (group or user) |
|
125 | - * |
|
126 | - * @param string $shareType |
|
127 | - * |
|
128 | - * @since 14.0.0 |
|
129 | - */ |
|
130 | - public function setShareType($shareType); |
|
131 | - |
|
132 | - /** |
|
133 | - * get the whole share, ready to send out |
|
134 | - * |
|
135 | - * @return array |
|
136 | - * |
|
137 | - * @since 14.0.0 |
|
138 | - */ |
|
139 | - public function getShare(); |
|
140 | - |
|
141 | - /** |
|
142 | - * get uid of the recipient |
|
143 | - * |
|
144 | - * @return string |
|
145 | - * |
|
146 | - * @since 14.0.0 |
|
147 | - */ |
|
148 | - public function getShareWith(); |
|
149 | - |
|
150 | - /** |
|
151 | - * get resource name (e.g. file, calendar, contact,...) |
|
152 | - * |
|
153 | - * @return string |
|
154 | - * |
|
155 | - * @since 14.0.0 |
|
156 | - */ |
|
157 | - public function getResourceName(); |
|
158 | - |
|
159 | - /** |
|
160 | - * get resource type (e.g. file, calendar, contact,...) |
|
161 | - * |
|
162 | - * @return string |
|
163 | - * |
|
164 | - * @since 14.0.0 |
|
165 | - */ |
|
166 | - public function getResourceType(); |
|
167 | - |
|
168 | - /** |
|
169 | - * get resource description (optional) |
|
170 | - * |
|
171 | - * @return string |
|
172 | - * |
|
173 | - * @since 14.0.0 |
|
174 | - */ |
|
175 | - public function getDescription(); |
|
176 | - |
|
177 | - /** |
|
178 | - * get provider ID (e.g. file ID) |
|
179 | - * |
|
180 | - * @return string |
|
181 | - * |
|
182 | - * @since 14.0.0 |
|
183 | - */ |
|
184 | - public function getProviderId(); |
|
185 | - |
|
186 | - /** |
|
187 | - * get owner UID |
|
188 | - * |
|
189 | - * @return string |
|
190 | - * |
|
191 | - * @since 14.0.0 |
|
192 | - */ |
|
193 | - public function getOwner(); |
|
194 | - |
|
195 | - /** |
|
196 | - * get owner display name |
|
197 | - * |
|
198 | - * @return string |
|
199 | - * |
|
200 | - * @since 14.0.0 |
|
201 | - */ |
|
202 | - public function getOwnerDisplayName(); |
|
203 | - |
|
204 | - /** |
|
205 | - * get UID of the user who sends the share |
|
206 | - * |
|
207 | - * @return string |
|
208 | - * |
|
209 | - * @since 14.0.0 |
|
210 | - */ |
|
211 | - public function getSharedBy(); |
|
212 | - |
|
213 | - /** |
|
214 | - * get display name of the user who sends the share |
|
215 | - * |
|
216 | - * @return string |
|
217 | - * |
|
218 | - * @since 14.0.0 |
|
219 | - */ |
|
220 | - public function getSharedByDisplayName(); |
|
221 | - |
|
222 | - /** |
|
223 | - * get share type (group or user) |
|
224 | - * |
|
225 | - * @return string |
|
226 | - * |
|
227 | - * @since 14.0.0 |
|
228 | - */ |
|
229 | - public function getShareType(); |
|
230 | - |
|
231 | - /** |
|
232 | - * get share Secret |
|
233 | - * |
|
234 | - * @return string |
|
235 | - * |
|
236 | - * @since 14.0.0 |
|
237 | - */ |
|
238 | - public function getShareSecret(); |
|
239 | - |
|
240 | - |
|
241 | - /** |
|
242 | - * get protocol specification |
|
243 | - * |
|
244 | - * @return array |
|
245 | - * |
|
246 | - * @since 14.0.0 |
|
247 | - */ |
|
248 | - public function getProtocol(); |
|
33 | + /** |
|
34 | + * set uid of the recipient |
|
35 | + * |
|
36 | + * @param string $user |
|
37 | + * |
|
38 | + * @since 14.0.0 |
|
39 | + */ |
|
40 | + public function setShareWith($user); |
|
41 | + |
|
42 | + /** |
|
43 | + * set resource name (e.g. file, calendar, contact,...) |
|
44 | + * |
|
45 | + * @param string $name |
|
46 | + * |
|
47 | + * @since 14.0.0 |
|
48 | + */ |
|
49 | + public function setResourceName($name); |
|
50 | + |
|
51 | + /** |
|
52 | + * set resource type (e.g. file, calendar, contact,...) |
|
53 | + * |
|
54 | + * @param string $resourceType |
|
55 | + * |
|
56 | + * @since 14.0.0 |
|
57 | + */ |
|
58 | + public function setResourceType($resourceType); |
|
59 | + |
|
60 | + /** |
|
61 | + * set resource description (optional) |
|
62 | + * |
|
63 | + * @param string $description |
|
64 | + * |
|
65 | + * @since 14.0.0 |
|
66 | + */ |
|
67 | + public function setDescription($description); |
|
68 | + |
|
69 | + /** |
|
70 | + * set provider ID (e.g. file ID) |
|
71 | + * |
|
72 | + * @param string $providerId |
|
73 | + * |
|
74 | + * @since 14.0.0 |
|
75 | + */ |
|
76 | + public function setProviderId($providerId); |
|
77 | + |
|
78 | + /** |
|
79 | + * set owner UID |
|
80 | + * |
|
81 | + * @param string $owner |
|
82 | + * |
|
83 | + * @since 14.0.0 |
|
84 | + */ |
|
85 | + public function setOwner($owner); |
|
86 | + |
|
87 | + /** |
|
88 | + * set owner display name |
|
89 | + * |
|
90 | + * @param string $ownerDisplayName |
|
91 | + * |
|
92 | + * @since 14.0.0 |
|
93 | + */ |
|
94 | + public function setOwnerDisplayName($ownerDisplayName); |
|
95 | + |
|
96 | + /** |
|
97 | + * set UID of the user who sends the share |
|
98 | + * |
|
99 | + * @param string $sharedBy |
|
100 | + * |
|
101 | + * @since 14.0.0 |
|
102 | + */ |
|
103 | + public function setSharedBy($sharedBy); |
|
104 | + |
|
105 | + /** |
|
106 | + * set display name of the user who sends the share |
|
107 | + * |
|
108 | + * @param $sharedByDisplayName |
|
109 | + * |
|
110 | + * @since 14.0.0 |
|
111 | + */ |
|
112 | + public function setSharedByDisplayName($sharedByDisplayName); |
|
113 | + |
|
114 | + /** |
|
115 | + * set protocol specification |
|
116 | + * |
|
117 | + * @param array $protocol |
|
118 | + * |
|
119 | + * @since 14.0.0 |
|
120 | + */ |
|
121 | + public function setProtocol(array $protocol); |
|
122 | + |
|
123 | + /** |
|
124 | + * share type (group or user) |
|
125 | + * |
|
126 | + * @param string $shareType |
|
127 | + * |
|
128 | + * @since 14.0.0 |
|
129 | + */ |
|
130 | + public function setShareType($shareType); |
|
131 | + |
|
132 | + /** |
|
133 | + * get the whole share, ready to send out |
|
134 | + * |
|
135 | + * @return array |
|
136 | + * |
|
137 | + * @since 14.0.0 |
|
138 | + */ |
|
139 | + public function getShare(); |
|
140 | + |
|
141 | + /** |
|
142 | + * get uid of the recipient |
|
143 | + * |
|
144 | + * @return string |
|
145 | + * |
|
146 | + * @since 14.0.0 |
|
147 | + */ |
|
148 | + public function getShareWith(); |
|
149 | + |
|
150 | + /** |
|
151 | + * get resource name (e.g. file, calendar, contact,...) |
|
152 | + * |
|
153 | + * @return string |
|
154 | + * |
|
155 | + * @since 14.0.0 |
|
156 | + */ |
|
157 | + public function getResourceName(); |
|
158 | + |
|
159 | + /** |
|
160 | + * get resource type (e.g. file, calendar, contact,...) |
|
161 | + * |
|
162 | + * @return string |
|
163 | + * |
|
164 | + * @since 14.0.0 |
|
165 | + */ |
|
166 | + public function getResourceType(); |
|
167 | + |
|
168 | + /** |
|
169 | + * get resource description (optional) |
|
170 | + * |
|
171 | + * @return string |
|
172 | + * |
|
173 | + * @since 14.0.0 |
|
174 | + */ |
|
175 | + public function getDescription(); |
|
176 | + |
|
177 | + /** |
|
178 | + * get provider ID (e.g. file ID) |
|
179 | + * |
|
180 | + * @return string |
|
181 | + * |
|
182 | + * @since 14.0.0 |
|
183 | + */ |
|
184 | + public function getProviderId(); |
|
185 | + |
|
186 | + /** |
|
187 | + * get owner UID |
|
188 | + * |
|
189 | + * @return string |
|
190 | + * |
|
191 | + * @since 14.0.0 |
|
192 | + */ |
|
193 | + public function getOwner(); |
|
194 | + |
|
195 | + /** |
|
196 | + * get owner display name |
|
197 | + * |
|
198 | + * @return string |
|
199 | + * |
|
200 | + * @since 14.0.0 |
|
201 | + */ |
|
202 | + public function getOwnerDisplayName(); |
|
203 | + |
|
204 | + /** |
|
205 | + * get UID of the user who sends the share |
|
206 | + * |
|
207 | + * @return string |
|
208 | + * |
|
209 | + * @since 14.0.0 |
|
210 | + */ |
|
211 | + public function getSharedBy(); |
|
212 | + |
|
213 | + /** |
|
214 | + * get display name of the user who sends the share |
|
215 | + * |
|
216 | + * @return string |
|
217 | + * |
|
218 | + * @since 14.0.0 |
|
219 | + */ |
|
220 | + public function getSharedByDisplayName(); |
|
221 | + |
|
222 | + /** |
|
223 | + * get share type (group or user) |
|
224 | + * |
|
225 | + * @return string |
|
226 | + * |
|
227 | + * @since 14.0.0 |
|
228 | + */ |
|
229 | + public function getShareType(); |
|
230 | + |
|
231 | + /** |
|
232 | + * get share Secret |
|
233 | + * |
|
234 | + * @return string |
|
235 | + * |
|
236 | + * @since 14.0.0 |
|
237 | + */ |
|
238 | + public function getShareSecret(); |
|
239 | + |
|
240 | + |
|
241 | + /** |
|
242 | + * get protocol specification |
|
243 | + * |
|
244 | + * @return array |
|
245 | + * |
|
246 | + * @since 14.0.0 |
|
247 | + */ |
|
248 | + public function getProtocol(); |
|
249 | 249 | |
250 | 250 | } |
@@ -33,19 +33,19 @@ |
||
33 | 33 | */ |
34 | 34 | class ProviderCouldNotAddShareException extends HintException { |
35 | 35 | |
36 | - /** |
|
37 | - * ProviderCouldNotAddShareException constructor. |
|
38 | - * |
|
39 | - * @since 14.0.0 |
|
40 | - * |
|
41 | - * @param string $message |
|
42 | - * @param string $hint |
|
43 | - * @param int $code |
|
44 | - * @param \Exception|null $previous |
|
45 | - */ |
|
46 | - public function __construct($message, $hint = '', $code = Http::STATUS_BAD_REQUEST, \Exception $previous = null) { |
|
47 | - parent::__construct($message, $hint, $code, $previous); |
|
48 | - } |
|
36 | + /** |
|
37 | + * ProviderCouldNotAddShareException constructor. |
|
38 | + * |
|
39 | + * @since 14.0.0 |
|
40 | + * |
|
41 | + * @param string $message |
|
42 | + * @param string $hint |
|
43 | + * @param int $code |
|
44 | + * @param \Exception|null $previous |
|
45 | + */ |
|
46 | + public function __construct($message, $hint = '', $code = Http::STATUS_BAD_REQUEST, \Exception $previous = null) { |
|
47 | + parent::__construct($message, $hint, $code, $previous); |
|
48 | + } |
|
49 | 49 | |
50 | 50 | |
51 | 51 | } |