@@ -21,36 +21,36 @@ |
||
21 | 21 | |
22 | 22 | interface IFrontendDefinition { |
23 | 23 | |
24 | - public function getText(): string; |
|
24 | + public function getText(): string; |
|
25 | 25 | |
26 | - public function setText(string $text): self; |
|
26 | + public function setText(string $text): self; |
|
27 | 27 | |
28 | - /** |
|
29 | - * @return array<string, DefinitionParameter> |
|
30 | - */ |
|
31 | - public function getParameters(): array; |
|
28 | + /** |
|
29 | + * @return array<string, DefinitionParameter> |
|
30 | + */ |
|
31 | + public function getParameters(): array; |
|
32 | 32 | |
33 | - /** |
|
34 | - * @param list<DefinitionParameter> $parameters |
|
35 | - */ |
|
36 | - public function addParameters(array $parameters): self; |
|
33 | + /** |
|
34 | + * @param list<DefinitionParameter> $parameters |
|
35 | + */ |
|
36 | + public function addParameters(array $parameters): self; |
|
37 | 37 | |
38 | - public function addParameter(DefinitionParameter $parameter): self; |
|
38 | + public function addParameter(DefinitionParameter $parameter): self; |
|
39 | 39 | |
40 | - /** |
|
41 | - * @return string[] |
|
42 | - */ |
|
43 | - public function getCustomJs(): array; |
|
40 | + /** |
|
41 | + * @return string[] |
|
42 | + */ |
|
43 | + public function getCustomJs(): array; |
|
44 | 44 | |
45 | - public function addCustomJs(string $custom): self; |
|
45 | + public function addCustomJs(string $custom): self; |
|
46 | 46 | |
47 | - /** |
|
48 | - * Serialize into JSON for client-side JS |
|
49 | - */ |
|
50 | - public function jsonSerializeDefinition(): array; |
|
47 | + /** |
|
48 | + * Serialize into JSON for client-side JS |
|
49 | + */ |
|
50 | + public function jsonSerializeDefinition(): array; |
|
51 | 51 | |
52 | - /** |
|
53 | - * Check if parameters are satisfied in a StorageConfig |
|
54 | - */ |
|
55 | - public function validateStorageDefinition(StorageConfig $storage): bool; |
|
52 | + /** |
|
53 | + * Check if parameters are satisfied in a StorageConfig |
|
54 | + */ |
|
55 | + public function validateStorageDefinition(StorageConfig $storage): bool; |
|
56 | 56 | } |
@@ -59,102 +59,102 @@ |
||
59 | 59 | * Object can affect storage mounting |
60 | 60 | */ |
61 | 61 | class Backend implements \JsonSerializable, IIdentifier, IFrontendDefinition { |
62 | - use VisibilityTrait; |
|
63 | - use FrontendDefinitionTrait; |
|
64 | - use PriorityTrait; |
|
65 | - use DependencyTrait; |
|
66 | - use StorageModifierTrait; |
|
67 | - use IdentifierTrait; |
|
68 | - |
|
69 | - /** @var string storage class */ |
|
70 | - private $storageClass; |
|
71 | - |
|
72 | - /** @var array 'scheme' => true, supported authentication schemes */ |
|
73 | - private $authSchemes = []; |
|
74 | - |
|
75 | - /** @var AuthMechanism|callable authentication mechanism fallback */ |
|
76 | - private $legacyAuthMechanism; |
|
77 | - |
|
78 | - /** |
|
79 | - * @return class-string<IStorage> |
|
80 | - */ |
|
81 | - public function getStorageClass() { |
|
82 | - return $this->storageClass; |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * @param string $class |
|
87 | - * @return $this |
|
88 | - */ |
|
89 | - public function setStorageClass($class) { |
|
90 | - $this->storageClass = $class; |
|
91 | - return $this; |
|
92 | - } |
|
93 | - |
|
94 | - /** |
|
95 | - * @return array |
|
96 | - */ |
|
97 | - public function getAuthSchemes() { |
|
98 | - if (empty($this->authSchemes)) { |
|
99 | - return [AuthMechanism::SCHEME_NULL => true]; |
|
100 | - } |
|
101 | - return $this->authSchemes; |
|
102 | - } |
|
103 | - |
|
104 | - /** |
|
105 | - * @param string $scheme |
|
106 | - * @return self |
|
107 | - */ |
|
108 | - public function addAuthScheme($scheme) { |
|
109 | - $this->authSchemes[$scheme] = true; |
|
110 | - return $this; |
|
111 | - } |
|
112 | - |
|
113 | - /** |
|
114 | - * @param array $parameters storage parameters, for dynamic mechanism selection |
|
115 | - * @return AuthMechanism |
|
116 | - */ |
|
117 | - public function getLegacyAuthMechanism(array $parameters = []) { |
|
118 | - if (is_callable($this->legacyAuthMechanism)) { |
|
119 | - return call_user_func($this->legacyAuthMechanism, $parameters); |
|
120 | - } |
|
121 | - return $this->legacyAuthMechanism; |
|
122 | - } |
|
123 | - |
|
124 | - public function setLegacyAuthMechanism(AuthMechanism $authMechanism): self { |
|
125 | - $this->legacyAuthMechanism = $authMechanism; |
|
126 | - return $this; |
|
127 | - } |
|
128 | - |
|
129 | - /** |
|
130 | - * @param callable $callback dynamic auth mechanism selection |
|
131 | - */ |
|
132 | - public function setLegacyAuthMechanismCallback(callable $callback): self { |
|
133 | - $this->legacyAuthMechanism = $callback; |
|
134 | - return $this; |
|
135 | - } |
|
136 | - |
|
137 | - /** |
|
138 | - * Serialize into JSON for client-side JS |
|
139 | - */ |
|
140 | - public function jsonSerialize(): array { |
|
141 | - $data = $this->jsonSerializeDefinition(); |
|
142 | - $data += $this->jsonSerializeIdentifier(); |
|
143 | - |
|
144 | - $data['backend'] = $data['name']; // legacy compat |
|
145 | - $data['priority'] = $this->getPriority(); |
|
146 | - $data['authSchemes'] = $this->getAuthSchemes(); |
|
147 | - |
|
148 | - return $data; |
|
149 | - } |
|
150 | - |
|
151 | - /** |
|
152 | - * Check if parameters are satisfied in a StorageConfig |
|
153 | - * |
|
154 | - * @param StorageConfig $storage |
|
155 | - * @return bool |
|
156 | - */ |
|
157 | - public function validateStorage(StorageConfig $storage) { |
|
158 | - return $this->validateStorageDefinition($storage); |
|
159 | - } |
|
62 | + use VisibilityTrait; |
|
63 | + use FrontendDefinitionTrait; |
|
64 | + use PriorityTrait; |
|
65 | + use DependencyTrait; |
|
66 | + use StorageModifierTrait; |
|
67 | + use IdentifierTrait; |
|
68 | + |
|
69 | + /** @var string storage class */ |
|
70 | + private $storageClass; |
|
71 | + |
|
72 | + /** @var array 'scheme' => true, supported authentication schemes */ |
|
73 | + private $authSchemes = []; |
|
74 | + |
|
75 | + /** @var AuthMechanism|callable authentication mechanism fallback */ |
|
76 | + private $legacyAuthMechanism; |
|
77 | + |
|
78 | + /** |
|
79 | + * @return class-string<IStorage> |
|
80 | + */ |
|
81 | + public function getStorageClass() { |
|
82 | + return $this->storageClass; |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * @param string $class |
|
87 | + * @return $this |
|
88 | + */ |
|
89 | + public function setStorageClass($class) { |
|
90 | + $this->storageClass = $class; |
|
91 | + return $this; |
|
92 | + } |
|
93 | + |
|
94 | + /** |
|
95 | + * @return array |
|
96 | + */ |
|
97 | + public function getAuthSchemes() { |
|
98 | + if (empty($this->authSchemes)) { |
|
99 | + return [AuthMechanism::SCHEME_NULL => true]; |
|
100 | + } |
|
101 | + return $this->authSchemes; |
|
102 | + } |
|
103 | + |
|
104 | + /** |
|
105 | + * @param string $scheme |
|
106 | + * @return self |
|
107 | + */ |
|
108 | + public function addAuthScheme($scheme) { |
|
109 | + $this->authSchemes[$scheme] = true; |
|
110 | + return $this; |
|
111 | + } |
|
112 | + |
|
113 | + /** |
|
114 | + * @param array $parameters storage parameters, for dynamic mechanism selection |
|
115 | + * @return AuthMechanism |
|
116 | + */ |
|
117 | + public function getLegacyAuthMechanism(array $parameters = []) { |
|
118 | + if (is_callable($this->legacyAuthMechanism)) { |
|
119 | + return call_user_func($this->legacyAuthMechanism, $parameters); |
|
120 | + } |
|
121 | + return $this->legacyAuthMechanism; |
|
122 | + } |
|
123 | + |
|
124 | + public function setLegacyAuthMechanism(AuthMechanism $authMechanism): self { |
|
125 | + $this->legacyAuthMechanism = $authMechanism; |
|
126 | + return $this; |
|
127 | + } |
|
128 | + |
|
129 | + /** |
|
130 | + * @param callable $callback dynamic auth mechanism selection |
|
131 | + */ |
|
132 | + public function setLegacyAuthMechanismCallback(callable $callback): self { |
|
133 | + $this->legacyAuthMechanism = $callback; |
|
134 | + return $this; |
|
135 | + } |
|
136 | + |
|
137 | + /** |
|
138 | + * Serialize into JSON for client-side JS |
|
139 | + */ |
|
140 | + public function jsonSerialize(): array { |
|
141 | + $data = $this->jsonSerializeDefinition(); |
|
142 | + $data += $this->jsonSerializeIdentifier(); |
|
143 | + |
|
144 | + $data['backend'] = $data['name']; // legacy compat |
|
145 | + $data['priority'] = $this->getPriority(); |
|
146 | + $data['authSchemes'] = $this->getAuthSchemes(); |
|
147 | + |
|
148 | + return $data; |
|
149 | + } |
|
150 | + |
|
151 | + /** |
|
152 | + * Check if parameters are satisfied in a StorageConfig |
|
153 | + * |
|
154 | + * @param StorageConfig $storage |
|
155 | + * @return bool |
|
156 | + */ |
|
157 | + public function validateStorage(StorageConfig $storage) { |
|
158 | + return $this->validateStorageDefinition($storage); |
|
159 | + } |
|
160 | 160 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | interface IIdentifier { |
23 | 23 | |
24 | - public function getIdentifier(): string; |
|
24 | + public function getIdentifier(): string; |
|
25 | 25 | |
26 | - public function setIdentifier(string $identifier): self; |
|
26 | + public function setIdentifier(string $identifier): self; |
|
27 | 27 | } |
@@ -32,13 +32,13 @@ |
||
32 | 32 | * @since 26.0.0 |
33 | 33 | */ |
34 | 34 | interface IAssertion { |
35 | - /** |
|
36 | - * This method throws a localized exception when user limits are exceeded, |
|
37 | - * if applicable. Notifications are also created in that case. It is a |
|
38 | - * shorthand for a check against IRegistry::delegateIsHardUserLimitReached(). |
|
39 | - * |
|
40 | - * @throws HintException |
|
41 | - * @since 26.0.0 |
|
42 | - */ |
|
43 | - public function createUserIsLegit(): void; |
|
35 | + /** |
|
36 | + * This method throws a localized exception when user limits are exceeded, |
|
37 | + * if applicable. Notifications are also created in that case. It is a |
|
38 | + * shorthand for a check against IRegistry::delegateIsHardUserLimitReached(). |
|
39 | + * |
|
40 | + * @throws HintException |
|
41 | + * @since 26.0.0 |
|
42 | + */ |
|
43 | + public function createUserIsLegit(): void; |
|
44 | 44 | } |
@@ -30,10 +30,10 @@ |
||
30 | 30 | * @since 24.0.7 |
31 | 31 | */ |
32 | 32 | interface ICountMappedUsersBackend { |
33 | - /** |
|
34 | - * @since 24.0.7 |
|
35 | - * |
|
36 | - * @return int The number of users already mapped to a Nextcloud account |
|
37 | - */ |
|
38 | - public function countMappedUsers(): int; |
|
33 | + /** |
|
34 | + * @since 24.0.7 |
|
35 | + * |
|
36 | + * @return int The number of users already mapped to a Nextcloud account |
|
37 | + */ |
|
38 | + public function countMappedUsers(): int; |
|
39 | 39 | } |
@@ -33,23 +33,23 @@ |
||
33 | 33 | use OCP\Support\Subscription\IRegistry; |
34 | 34 | |
35 | 35 | class Assertion implements IAssertion { |
36 | - private IRegistry $registry; |
|
37 | - private IFactory $l10nFactory; |
|
38 | - private IManager $notificationManager; |
|
36 | + private IRegistry $registry; |
|
37 | + private IFactory $l10nFactory; |
|
38 | + private IManager $notificationManager; |
|
39 | 39 | |
40 | - public function __construct(IRegistry $registry, IFactory $l10nFactory, IManager $notificationManager) { |
|
41 | - $this->registry = $registry; |
|
42 | - $this->l10nFactory = $l10nFactory; |
|
43 | - $this->notificationManager = $notificationManager; |
|
44 | - } |
|
40 | + public function __construct(IRegistry $registry, IFactory $l10nFactory, IManager $notificationManager) { |
|
41 | + $this->registry = $registry; |
|
42 | + $this->l10nFactory = $l10nFactory; |
|
43 | + $this->notificationManager = $notificationManager; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * @inheritDoc |
|
48 | - */ |
|
49 | - public function createUserIsLegit(): void { |
|
50 | - if ($this->registry->delegateIsHardUserLimitReached($this->notificationManager)) { |
|
51 | - $l = $this->l10nFactory->get('lib'); |
|
52 | - throw new HintException($l->t('The user was not created because the user limit has been reached. Check your notifications to learn more.')); |
|
53 | - } |
|
54 | - } |
|
46 | + /** |
|
47 | + * @inheritDoc |
|
48 | + */ |
|
49 | + public function createUserIsLegit(): void { |
|
50 | + if ($this->registry->delegateIsHardUserLimitReached($this->notificationManager)) { |
|
51 | + $l = $this->l10nFactory->get('lib'); |
|
52 | + throw new HintException($l->t('The user was not created because the user limit has been reached. Check your notifications to learn more.')); |
|
53 | + } |
|
54 | + } |
|
55 | 55 | } |
@@ -32,63 +32,63 @@ |
||
32 | 32 | * @since 26.0.0 |
33 | 33 | */ |
34 | 34 | class GroupChangedEvent extends Event { |
35 | - private IGroup $group; |
|
36 | - private string $feature; |
|
37 | - /** @var mixed */ |
|
38 | - private $value; |
|
39 | - /** @var mixed */ |
|
40 | - private $oldValue; |
|
35 | + private IGroup $group; |
|
36 | + private string $feature; |
|
37 | + /** @var mixed */ |
|
38 | + private $value; |
|
39 | + /** @var mixed */ |
|
40 | + private $oldValue; |
|
41 | 41 | |
42 | - /** |
|
43 | - * @since 26.0.0 |
|
44 | - */ |
|
45 | - public function __construct(IGroup $group, |
|
46 | - string $feature, |
|
47 | - $value, |
|
48 | - $oldValue = null) { |
|
49 | - parent::__construct(); |
|
50 | - $this->group = $group; |
|
51 | - $this->feature = $feature; |
|
52 | - $this->value = $value; |
|
53 | - $this->oldValue = $oldValue; |
|
54 | - } |
|
42 | + /** |
|
43 | + * @since 26.0.0 |
|
44 | + */ |
|
45 | + public function __construct(IGroup $group, |
|
46 | + string $feature, |
|
47 | + $value, |
|
48 | + $oldValue = null) { |
|
49 | + parent::__construct(); |
|
50 | + $this->group = $group; |
|
51 | + $this->feature = $feature; |
|
52 | + $this->value = $value; |
|
53 | + $this->oldValue = $oldValue; |
|
54 | + } |
|
55 | 55 | |
56 | - /** |
|
57 | - * |
|
58 | - * @since 26.0.0 |
|
59 | - * |
|
60 | - * @return IGroup |
|
61 | - */ |
|
62 | - public function getGroup(): IGroup { |
|
63 | - return $this->group; |
|
64 | - } |
|
56 | + /** |
|
57 | + * |
|
58 | + * @since 26.0.0 |
|
59 | + * |
|
60 | + * @return IGroup |
|
61 | + */ |
|
62 | + public function getGroup(): IGroup { |
|
63 | + return $this->group; |
|
64 | + } |
|
65 | 65 | |
66 | - /** |
|
67 | - * |
|
68 | - * @since 26.0.0 |
|
69 | - * |
|
70 | - * @return string |
|
71 | - */ |
|
72 | - public function getFeature(): string { |
|
73 | - return $this->feature; |
|
74 | - } |
|
66 | + /** |
|
67 | + * |
|
68 | + * @since 26.0.0 |
|
69 | + * |
|
70 | + * @return string |
|
71 | + */ |
|
72 | + public function getFeature(): string { |
|
73 | + return $this->feature; |
|
74 | + } |
|
75 | 75 | |
76 | - /** |
|
77 | - * @since 26.0.0 |
|
78 | - * |
|
79 | - * @return mixed |
|
80 | - */ |
|
81 | - public function getValue() { |
|
82 | - return $this->value; |
|
83 | - } |
|
76 | + /** |
|
77 | + * @since 26.0.0 |
|
78 | + * |
|
79 | + * @return mixed |
|
80 | + */ |
|
81 | + public function getValue() { |
|
82 | + return $this->value; |
|
83 | + } |
|
84 | 84 | |
85 | - /** |
|
86 | - * |
|
87 | - * @since 26.0.0 |
|
88 | - * |
|
89 | - * @return mixed |
|
90 | - */ |
|
91 | - public function getOldValue() { |
|
92 | - return $this->oldValue; |
|
93 | - } |
|
85 | + /** |
|
86 | + * |
|
87 | + * @since 26.0.0 |
|
88 | + * |
|
89 | + * @return mixed |
|
90 | + */ |
|
91 | + public function getOldValue() { |
|
92 | + return $this->oldValue; |
|
93 | + } |
|
94 | 94 | } |
@@ -28,21 +28,21 @@ |
||
28 | 28 | use OCP\EventDispatcher\Event; |
29 | 29 | |
30 | 30 | class LoginFailed extends Event { |
31 | - private string $loginName; |
|
32 | - private ?string $password; |
|
31 | + private string $loginName; |
|
32 | + private ?string $password; |
|
33 | 33 | |
34 | - public function __construct(string $loginName, ?string $password) { |
|
35 | - parent::__construct(); |
|
34 | + public function __construct(string $loginName, ?string $password) { |
|
35 | + parent::__construct(); |
|
36 | 36 | |
37 | - $this->loginName = $loginName; |
|
38 | - $this->password = $password; |
|
39 | - } |
|
37 | + $this->loginName = $loginName; |
|
38 | + $this->password = $password; |
|
39 | + } |
|
40 | 40 | |
41 | - public function getLoginName(): string { |
|
42 | - return $this->loginName; |
|
43 | - } |
|
41 | + public function getLoginName(): string { |
|
42 | + return $this->loginName; |
|
43 | + } |
|
44 | 44 | |
45 | - public function getPassword(): ?string { |
|
46 | - return $this->password; |
|
47 | - } |
|
45 | + public function getPassword(): ?string { |
|
46 | + return $this->password; |
|
47 | + } |
|
48 | 48 | } |
@@ -34,47 +34,47 @@ |
||
34 | 34 | * @since 13.0.0 |
35 | 35 | */ |
36 | 36 | interface IMigrationStep { |
37 | - /** |
|
38 | - * Human-readable name of the migration step |
|
39 | - * |
|
40 | - * @return string |
|
41 | - * @since 14.0.0 |
|
42 | - */ |
|
43 | - public function name(): string; |
|
37 | + /** |
|
38 | + * Human-readable name of the migration step |
|
39 | + * |
|
40 | + * @return string |
|
41 | + * @since 14.0.0 |
|
42 | + */ |
|
43 | + public function name(): string; |
|
44 | 44 | |
45 | - /** |
|
46 | - * Human-readable description of the migration step |
|
47 | - * |
|
48 | - * @return string |
|
49 | - * @since 14.0.0 |
|
50 | - */ |
|
51 | - public function description(): string; |
|
45 | + /** |
|
46 | + * Human-readable description of the migration step |
|
47 | + * |
|
48 | + * @return string |
|
49 | + * @since 14.0.0 |
|
50 | + */ |
|
51 | + public function description(): string; |
|
52 | 52 | |
53 | - /** |
|
54 | - * @param IOutput $output |
|
55 | - * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|
56 | - * @psalm-param Closure():ISchemaWrapper $schemaClosure |
|
57 | - * @param array $options |
|
58 | - * @since 13.0.0 |
|
59 | - */ |
|
60 | - public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options); |
|
53 | + /** |
|
54 | + * @param IOutput $output |
|
55 | + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|
56 | + * @psalm-param Closure():ISchemaWrapper $schemaClosure |
|
57 | + * @param array $options |
|
58 | + * @since 13.0.0 |
|
59 | + */ |
|
60 | + public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options); |
|
61 | 61 | |
62 | - /** |
|
63 | - * @param IOutput $output |
|
64 | - * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|
65 | - * @psalm-param Closure():ISchemaWrapper $schemaClosure |
|
66 | - * @param array $options |
|
67 | - * @return null|ISchemaWrapper |
|
68 | - * @since 13.0.0 |
|
69 | - */ |
|
70 | - public function changeSchema(IOutput $output, Closure $schemaClosure, array $options); |
|
62 | + /** |
|
63 | + * @param IOutput $output |
|
64 | + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|
65 | + * @psalm-param Closure():ISchemaWrapper $schemaClosure |
|
66 | + * @param array $options |
|
67 | + * @return null|ISchemaWrapper |
|
68 | + * @since 13.0.0 |
|
69 | + */ |
|
70 | + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options); |
|
71 | 71 | |
72 | - /** |
|
73 | - * @param IOutput $output |
|
74 | - * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|
75 | - * @psalm-param Closure():ISchemaWrapper $schemaClosure |
|
76 | - * @param array $options |
|
77 | - * @since 13.0.0 |
|
78 | - */ |
|
79 | - public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options); |
|
72 | + /** |
|
73 | + * @param IOutput $output |
|
74 | + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
|
75 | + * @psalm-param Closure():ISchemaWrapper $schemaClosure |
|
76 | + * @param array $options |
|
77 | + * @since 13.0.0 |
|
78 | + */ |
|
79 | + public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options); |
|
80 | 80 | } |