@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | $attributes = compact('namespace'); |
| 124 | - $attributes = array_filter($attributes, function ($attribute) {return !is_null($attribute); }); |
|
| 124 | + $attributes = array_filter($attributes, function($attribute) {return !is_null($attribute); }); |
|
| 125 | 125 | |
| 126 | 126 | $id = $this->server->addGroup($name, $member, $attributes); |
| 127 | 127 | $result = $this->decorator->decorate($this->server->getGroupById($id)); |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | public function patch(string $id, ?array $member = null, ?string $namespace = null): Response |
| 136 | 136 | { |
| 137 | 137 | $attributes = compact('namespace', 'name', 'member'); |
| 138 | - $attributes = array_filter($attributes, function ($attribute) {return !is_null($attribute); }); |
|
| 138 | + $attributes = array_filter($attributes, function($attribute) {return !is_null($attribute); }); |
|
| 139 | 139 | |
| 140 | 140 | $group = $this->_getGroup($id, true); |
| 141 | 141 | $group->setAttributes($attributes); |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | |
| 97 | 97 | if ($index === $chunks) { |
| 98 | 98 | $attributes = compact('changed', 'created', 'readonly', 'meta', 'acl'); |
| 99 | - $attributes = array_filter($attributes, function ($attribute) {return !is_null($attribute); }); |
|
| 99 | + $attributes = array_filter($attributes, function($attribute) {return !is_null($attribute); }); |
|
| 100 | 100 | $attributes = $this->_verifyAttributes($attributes); |
| 101 | 101 | |
| 102 | 102 | return $this->_put($session, $id, $collection, $name, $attributes, $conflict); |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | $storage = $this->getStorage($id, $collection); |
| 129 | 129 | $session = $storage->storeTemporaryFile($input, $this->server->getIdentity()); |
| 130 | 130 | $attributes = compact('changed', 'created', 'readonly', 'meta', 'acl'); |
| 131 | - $attributes = array_filter($attributes, function ($attribute) {return !is_null($attribute); }); |
|
| 131 | + $attributes = array_filter($attributes, function($attribute) {return !is_null($attribute); }); |
|
| 132 | 132 | $attributes = $this->_verifyAttributes($attributes); |
| 133 | 133 | |
| 134 | 134 | return $this->_put($session, $id, $collection, $name, $attributes, $conflict); |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | $attributes = compact('password', 'soft_quota', 'hard_quota', 'avatar', 'mail', 'admin', 'namespace', 'locale'); |
| 164 | - $attributes = array_filter($attributes, function ($attribute) {return !is_null($attribute); }); |
|
| 164 | + $attributes = array_filter($attributes, function($attribute) {return !is_null($attribute); }); |
|
| 165 | 165 | |
| 166 | 166 | if (isset($attributes['avatar'])) { |
| 167 | 167 | $attributes['avatar'] = new Binary(base64_decode($attributes['avatar']), Binary::TYPE_GENERIC); |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | public function patch(string $id, ?string $username = null, ?string $password = null, ?int $soft_quota = null, ?int $hard_quota = null, ?string $avatar = null, ?string $mail = null, ?bool $admin = null, ?string $namespace = null, ?string $locale = null, ?bool $multi_factor_auth = null): Response |
| 180 | 180 | { |
| 181 | 181 | $attributes = compact('username', 'password', 'soft_quota', 'hard_quota', 'avatar', 'mail', 'admin', 'namespace', 'locale', 'multi_factor_auth'); |
| 182 | - $attributes = array_filter($attributes, function ($attribute) {return !is_null($attribute); }); |
|
| 182 | + $attributes = array_filter($attributes, function($attribute) {return !is_null($attribute); }); |
|
| 183 | 183 | |
| 184 | 184 | if (isset($attributes['avatar'])) { |
| 185 | 185 | $attributes['avatar'] = new Binary(base64_decode($attributes['avatar']), Binary::TYPE_GENERIC); |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | } |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - return $this->bulk($id, function ($node) use ($parent, $conflict, $move) { |
|
| 105 | + return $this->bulk($id, function($node) use ($parent, $conflict, $move) { |
|
| 106 | 106 | if (true === $move) { |
| 107 | 107 | $node = $node->setParent($parent, $conflict); |
| 108 | 108 | } |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | return (new Response())->setCode(200)->setBody($result); |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - return $this->bulk($id, function ($node) use ($attributes) { |
|
| 179 | + return $this->bulk($id, function($node) use ($attributes) { |
|
| 180 | 180 | return [ |
| 181 | 181 | 'code' => 200, |
| 182 | 182 | 'data' => $this->node_decorator->decorate($node, $attributes), |
@@ -210,9 +210,9 @@ discard block |
||
| 210 | 210 | public function patch(string $id, ?string $name = null, ?array $meta = null, ?bool $readonly = null, ?array $filter = null, ?array $acl = null): Response |
| 211 | 211 | { |
| 212 | 212 | $attributes = compact('name', 'meta', 'readonly', 'filter', 'acl'); |
| 213 | - $attributes = array_filter($attributes, function ($attribute) {return !is_null($attribute); }); |
|
| 213 | + $attributes = array_filter($attributes, function($attribute) {return !is_null($attribute); }); |
|
| 214 | 214 | |
| 215 | - return $this->bulk($id, function ($node) use ($attributes) { |
|
| 215 | + return $this->bulk($id, function($node) use ($attributes) { |
|
| 216 | 216 | foreach ($attributes as $attribute => $value) { |
| 217 | 217 | switch ($attribute) { |
| 218 | 218 | case 'name': |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | ); |
| 265 | 265 | } |
| 266 | 266 | |
| 267 | - return $this->bulk($id, function ($node) use ($parent, $conflict) { |
|
| 267 | + return $this->bulk($id, function($node) use ($parent, $conflict) { |
|
| 268 | 268 | $result = $node->copyTo($parent, $conflict); |
| 269 | 269 | |
| 270 | 270 | return [ |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | ); |
| 292 | 292 | } |
| 293 | 293 | |
| 294 | - return $this->bulk($id, function ($node) use ($parent, $conflict) { |
|
| 294 | + return $this->bulk($id, function($node) use ($parent, $conflict) { |
|
| 295 | 295 | $result = $node->setParent($parent, $conflict); |
| 296 | 296 | |
| 297 | 297 | return [ |
@@ -316,7 +316,7 @@ discard block |
||
| 316 | 316 | $at = $this->_verifyAttributes(['destroy' => $at])['destroy']; |
| 317 | 317 | } |
| 318 | 318 | |
| 319 | - return $this->bulk($id, function ($node) use ($force, $ignore_flag, $at) { |
|
| 319 | + return $this->bulk($id, function($node) use ($force, $ignore_flag, $at) { |
|
| 320 | 320 | if (null === $at) { |
| 321 | 321 | $node->delete($force && $node->isDeleted() || $force && $ignore_flag); |
| 322 | 322 | } else { |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | $node_decorator = $this->node_decorator; |
| 59 | 59 | $notifier = $this->notifier; |
| 60 | 60 | |
| 61 | - return $this->bulk($id, function ($node) use ($node_decorator, $notifier, $subscribe, $exclude_me, $recursive) { |
|
| 61 | + return $this->bulk($id, function($node) use ($node_decorator, $notifier, $subscribe, $exclude_me, $recursive) { |
|
| 62 | 62 | $notifier->subscribeNode($node, $subscribe, $exclude_me, $recursive); |
| 63 | 63 | |
| 64 | 64 | return [ |
@@ -97,13 +97,13 @@ discard block |
||
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | return [ |
| 100 | - 'created' => function ($role) use ($attributes) { |
|
| 100 | + 'created' => function($role) use ($attributes) { |
|
| 101 | 101 | return $attributes['created']->toDateTime()->format('c'); |
| 102 | 102 | }, |
| 103 | - 'changed' => function ($role) use ($attributes) { |
|
| 103 | + 'changed' => function($role) use ($attributes) { |
|
| 104 | 104 | return $attributes['changed']->toDateTime()->format('c'); |
| 105 | 105 | }, |
| 106 | - 'deleted' => function ($role) use ($attributes) { |
|
| 106 | + 'deleted' => function($role) use ($attributes) { |
|
| 107 | 107 | if (false === $attributes['deleted']) { |
| 108 | 108 | return null; |
| 109 | 109 | } |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | 'id' => (string) $attributes['_id'], |
| 127 | 127 | 'name' => $attributes['name'], |
| 128 | 128 | 'namespace' => isset($attributes['namespace']) ? (string) $attributes['namespace'] : null, |
| 129 | - 'member' => array_map(function ($member) { return (string) $member; }, $attributes['member']), |
|
| 129 | + 'member' => array_map(function($member) { return (string) $member; }, $attributes['member']), |
|
| 130 | 130 | ]; |
| 131 | 131 | } |
| 132 | 132 | |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | 'name' => (string) $attributes['username'], |
| 149 | 149 | 'admin' => (bool) $attributes['admin'], |
| 150 | 150 | 'namespace' => isset($attributes['namespace']) ? (string) $attributes['namespace'] : null, |
| 151 | - 'mail' => function ($role) use ($attributes, $user) { |
|
| 151 | + 'mail' => function($role) use ($attributes, $user) { |
|
| 152 | 152 | if (!isset($attributes['mail'])) { |
| 153 | 153 | return null; |
| 154 | 154 | } |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | 'locale' => isset($attributes['locale']) ? (string) $attributes['locale'] : null, |
| 163 | 163 | 'hard_quota' => isset($attributes['hard_quota']) ? (int) $attributes['hard_quota'] : null, |
| 164 | 164 | 'soft_quota' => isset($attributes['soft_quota']) ? (int) $attributes['soft_quota'] : null, |
| 165 | - 'available' => function ($role) use (&$quota, $attributes, $user) { |
|
| 165 | + 'available' => function($role) use (&$quota, $attributes, $user) { |
|
| 166 | 166 | $quota === null ? $quota = $role->getQuotaUsage() : null; |
| 167 | 167 | if ($attributes['_id'] == $user->getId() || $user->isAdmin()) { |
| 168 | 168 | return $quota['available']; |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | |
| 171 | 171 | return null; |
| 172 | 172 | }, |
| 173 | - 'used' => function ($role) use (&$quota, $attributes, $user) { |
|
| 173 | + 'used' => function($role) use (&$quota, $attributes, $user) { |
|
| 174 | 174 | $quota === null ? $quota = $role->getQuotaUsage() : null; |
| 175 | 175 | if ($attributes['_id'] == $user->getId() || $user->isAdmin()) { |
| 176 | 176 | return $quota['used']; |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | |
| 179 | 179 | return null; |
| 180 | 180 | }, |
| 181 | - 'auth' => function () use ($user) { |
|
| 181 | + 'auth' => function() use ($user) { |
|
| 182 | 182 | $identity = $user->getIdentity(); |
| 183 | 183 | if ($identity === null) { |
| 184 | 184 | return null; |