@@ -71,7 +71,7 @@ |
||
71 | 71 | * @param Response $response |
72 | 72 | * @return Response |
73 | 73 | */ |
74 | - public function afterController($controller, $methodName, Response $response){ |
|
74 | + public function afterController($controller, $methodName, Response $response) { |
|
75 | 75 | $useSession = $this->reflector->hasAnnotation('UseSession'); |
76 | 76 | if ($useSession) { |
77 | 77 | $this->session->close(); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | /** |
53 | 53 | * Constructor |
54 | 54 | */ |
55 | - public function __construct(){ |
|
55 | + public function __construct() { |
|
56 | 56 | $this->middlewares = array(); |
57 | 57 | $this->middlewareCounter = 0; |
58 | 58 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * Adds a new middleware |
63 | 63 | * @param Middleware $middleWare the middleware which will be added |
64 | 64 | */ |
65 | - public function registerMiddleware(Middleware $middleWare){ |
|
65 | + public function registerMiddleware(Middleware $middleWare) { |
|
66 | 66 | array_push($this->middlewares, $middleWare); |
67 | 67 | } |
68 | 68 | |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * returns an array with all middleware elements |
72 | 72 | * @return array the middlewares |
73 | 73 | */ |
74 | - public function getMiddlewares(){ |
|
74 | + public function getMiddlewares() { |
|
75 | 75 | return $this->middlewares; |
76 | 76 | } |
77 | 77 | |
@@ -84,11 +84,11 @@ discard block |
||
84 | 84 | * @param string $methodName the name of the method that will be called on |
85 | 85 | * the controller |
86 | 86 | */ |
87 | - public function beforeController(Controller $controller, $methodName){ |
|
87 | + public function beforeController(Controller $controller, $methodName) { |
|
88 | 88 | // we need to count so that we know which middlewares we have to ask in |
89 | 89 | // case there is an exception |
90 | 90 | $middlewareCount = count($this->middlewares); |
91 | - for($i = 0; $i < $middlewareCount; $i++){ |
|
91 | + for ($i = 0; $i < $middlewareCount; $i++) { |
|
92 | 92 | $this->middlewareCounter++; |
93 | 93 | $middleware = $this->middlewares[$i]; |
94 | 94 | $middleware->beforeController($controller, $methodName); |
@@ -111,12 +111,12 @@ discard block |
||
111 | 111 | * exception |
112 | 112 | * @throws \Exception the passed in exception if it can't handle it |
113 | 113 | */ |
114 | - public function afterException(Controller $controller, $methodName, \Exception $exception){ |
|
115 | - for($i=$this->middlewareCounter-1; $i>=0; $i--){ |
|
114 | + public function afterException(Controller $controller, $methodName, \Exception $exception) { |
|
115 | + for ($i = $this->middlewareCounter - 1; $i >= 0; $i--) { |
|
116 | 116 | $middleware = $this->middlewares[$i]; |
117 | 117 | try { |
118 | 118 | return $middleware->afterException($controller, $methodName, $exception); |
119 | - } catch(\Exception $exception){ |
|
119 | + } catch (\Exception $exception) { |
|
120 | 120 | continue; |
121 | 121 | } |
122 | 122 | } |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | * @param Response $response the generated response from the controller |
135 | 135 | * @return Response a Response object |
136 | 136 | */ |
137 | - public function afterController(Controller $controller, $methodName, Response $response){ |
|
138 | - for($i=count($this->middlewares)-1; $i>=0; $i--){ |
|
137 | + public function afterController(Controller $controller, $methodName, Response $response) { |
|
138 | + for ($i = count($this->middlewares) - 1; $i >= 0; $i--) { |
|
139 | 139 | $middleware = $this->middlewares[$i]; |
140 | 140 | $response = $middleware->afterController($controller, $methodName, $response); |
141 | 141 | } |
@@ -153,8 +153,8 @@ discard block |
||
153 | 153 | * @param string $output the generated output from a response |
154 | 154 | * @return string the output that should be printed |
155 | 155 | */ |
156 | - public function beforeOutput(Controller $controller, $methodName, $output){ |
|
157 | - for($i=count($this->middlewares)-1; $i>=0; $i--){ |
|
156 | + public function beforeOutput(Controller $controller, $methodName, $output) { |
|
157 | + for ($i = count($this->middlewares) - 1; $i >= 0; $i--) { |
|
158 | 158 | $middleware = $this->middlewares[$i]; |
159 | 159 | $output = $middleware->beforeOutput($controller, $methodName, $output); |
160 | 160 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | use OCP\AppFramework\Http\EmptyContentSecurityPolicy; |
27 | 27 | use OCP\AppFramework\Http\Response; |
28 | 28 | |
29 | -abstract class BaseResponse extends Response { |
|
29 | +abstract class BaseResponse extends Response { |
|
30 | 30 | /** @var array */ |
31 | 31 | protected $data; |
32 | 32 |
@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function getStatus() { |
37 | 37 | |
38 | - $status = parent::getStatus(); |
|
38 | + $status = parent::getStatus(); |
|
39 | 39 | if ($status === API::RESPOND_UNAUTHORISED) { |
40 | 40 | return Http::STATUS_UNAUTHORIZED; |
41 | 41 | } else if ($status === API::RESPOND_NOT_FOUND) { |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * @return int |
35 | 35 | */ |
36 | 36 | public function getStatus() { |
37 | - $status = parent::getStatus(); |
|
37 | + $status = parent::getStatus(); |
|
38 | 38 | if ($status === Http::STATUS_FORBIDDEN || $status === API::RESPOND_UNAUTHORISED) { |
39 | 39 | return Http::STATUS_UNAUTHORIZED; |
40 | 40 | } |
@@ -70,8 +70,8 @@ discard block |
||
70 | 70 | 'message' => $this->getOCSStatus() === 100 ? 'OK' : $this->statusMessage, |
71 | 71 | ]; |
72 | 72 | |
73 | - $meta['totalitems'] = $this->itemsCount !== null ? (string)$this->itemsCount : ''; |
|
74 | - $meta['itemsperpage'] = $this->itemsPerPage !== null ? (string)$this->itemsPerPage: ''; |
|
73 | + $meta['totalitems'] = $this->itemsCount !== null ? (string) $this->itemsCount : ''; |
|
74 | + $meta['itemsperpage'] = $this->itemsPerPage !== null ? (string) $this->itemsPerPage : ''; |
|
75 | 75 | |
76 | 76 | return $this->renderResult($meta); |
77 | 77 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | $root = '/apps/'.$this->appName; |
104 | 104 | } |
105 | 105 | |
106 | - $url = $root . $ocsRoute['url']; |
|
106 | + $url = $root.$ocsRoute['url']; |
|
107 | 107 | $verb = isset($ocsRoute['verb']) ? strtoupper($ocsRoute['verb']) : 'GET'; |
108 | 108 | |
109 | 109 | $split = explode('#', $name, 2); |
@@ -119,19 +119,19 @@ discard block |
||
119 | 119 | // register the route |
120 | 120 | $handler = new RouteActionHandler($this->container, $controllerName, $actionName); |
121 | 121 | |
122 | - $router = $this->router->create('ocs.'.$this->appName.'.'.$controller.'.'.$action . $postfix, $url) |
|
122 | + $router = $this->router->create('ocs.'.$this->appName.'.'.$controller.'.'.$action.$postfix, $url) |
|
123 | 123 | ->method($verb) |
124 | 124 | ->action($handler); |
125 | 125 | |
126 | 126 | // optionally register requirements for route. This is used to |
127 | 127 | // tell the route parser how url parameters should be matched |
128 | - if(array_key_exists('requirements', $ocsRoute)) { |
|
128 | + if (array_key_exists('requirements', $ocsRoute)) { |
|
129 | 129 | $router->requirements($ocsRoute['requirements']); |
130 | 130 | } |
131 | 131 | |
132 | 132 | // optionally register defaults for route. This is used to |
133 | 133 | // tell the route parser how url parameters should be default valued |
134 | - if(array_key_exists('defaults', $ocsRoute)) { |
|
134 | + if (array_key_exists('defaults', $ocsRoute)) { |
|
135 | 135 | $router->defaults($ocsRoute['defaults']); |
136 | 136 | } |
137 | 137 | } |
@@ -168,19 +168,19 @@ discard block |
||
168 | 168 | |
169 | 169 | // register the route |
170 | 170 | $handler = new RouteActionHandler($this->container, $controllerName, $actionName); |
171 | - $router = $this->router->create($this->appName.'.'.$controller.'.'.$action . $postfix, $url) |
|
171 | + $router = $this->router->create($this->appName.'.'.$controller.'.'.$action.$postfix, $url) |
|
172 | 172 | ->method($verb) |
173 | 173 | ->action($handler); |
174 | 174 | |
175 | 175 | // optionally register requirements for route. This is used to |
176 | 176 | // tell the route parser how url parameters should be matched |
177 | - if(array_key_exists('requirements', $simpleRoute)) { |
|
177 | + if (array_key_exists('requirements', $simpleRoute)) { |
|
178 | 178 | $router->requirements($simpleRoute['requirements']); |
179 | 179 | } |
180 | 180 | |
181 | 181 | // optionally register defaults for route. This is used to |
182 | 182 | // tell the route parser how url parameters should be default valued |
183 | - if(array_key_exists('defaults', $simpleRoute)) { |
|
183 | + if (array_key_exists('defaults', $simpleRoute)) { |
|
184 | 184 | $router->defaults($simpleRoute['defaults']); |
185 | 185 | } |
186 | 186 | } |
@@ -212,16 +212,16 @@ discard block |
||
212 | 212 | foreach ($resources as $resource => $config) { |
213 | 213 | |
214 | 214 | // the url parameter used as id to the resource |
215 | - foreach($actions as $action) { |
|
215 | + foreach ($actions as $action) { |
|
216 | 216 | $url = $config['url']; |
217 | 217 | $method = $action['name']; |
218 | 218 | $verb = isset($action['verb']) ? strtoupper($action['verb']) : 'GET'; |
219 | 219 | $collectionAction = isset($action['on-collection']) ? $action['on-collection'] : false; |
220 | 220 | if (!$collectionAction) { |
221 | - $url = $url . '/{id}'; |
|
221 | + $url = $url.'/{id}'; |
|
222 | 222 | } |
223 | 223 | if (isset($action['url-postfix'])) { |
224 | - $url = $url . '/' . $action['url-postfix']; |
|
224 | + $url = $url.'/'.$action['url-postfix']; |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | $controller = $resource; |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | $controllerName = $this->buildControllerName($controller); |
230 | 230 | $actionName = $this->buildActionName($method); |
231 | 231 | |
232 | - $routeName = $this->appName . '.' . strtolower($resource) . '.' . strtolower($method); |
|
232 | + $routeName = $this->appName.'.'.strtolower($resource).'.'.strtolower($method); |
|
233 | 233 | |
234 | 234 | $this->router->create($routeName, $url)->method($verb)->action( |
235 | 235 | new RouteActionHandler($this->container, $controllerName, $actionName) |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | private function buildControllerName($controller) |
247 | 247 | { |
248 | 248 | if (!isset($this->controllerNameCache[$controller])) { |
249 | - $this->controllerNameCache[$controller] = $this->underScoreToCamelCase(ucfirst($controller)) . 'Controller'; |
|
249 | + $this->controllerNameCache[$controller] = $this->underScoreToCamelCase(ucfirst($controller)).'Controller'; |
|
250 | 250 | } |
251 | 251 | return $this->controllerNameCache[$controller]; |
252 | 252 | } |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | $pattern = "/_[a-z]?/"; |
270 | 270 | return preg_replace_callback( |
271 | 271 | $pattern, |
272 | - function ($matches) { |
|
272 | + function($matches) { |
|
273 | 273 | return strtoupper(ltrim($matches[0], "_")); |
274 | 274 | }, |
275 | 275 | $str); |
@@ -93,14 +93,14 @@ discard block |
||
93 | 93 | $params = array(); |
94 | 94 | if (count($ids) == 1 && isset($uidOwner)) { |
95 | 95 | // FIXME: don't concat $parents, use Docrine's PARAM_INT_ARRAY approach |
96 | - $queryString = 'SELECT `id`, `share_with`, `item_type`, `share_type`, ' . |
|
97 | - '`item_target`, `file_target`, `parent` ' . |
|
98 | - 'FROM `*PREFIX*share` ' . |
|
96 | + $queryString = 'SELECT `id`, `share_with`, `item_type`, `share_type`, '. |
|
97 | + '`item_target`, `file_target`, `parent` '. |
|
98 | + 'FROM `*PREFIX*share` '. |
|
99 | 99 | 'WHERE `parent` IN ('.$parents.') AND `uid_owner` = ? '; |
100 | 100 | $params[] = $uidOwner; |
101 | 101 | } else { |
102 | - $queryString = 'SELECT `id`, `share_with`, `item_type`, `share_type`, ' . |
|
103 | - '`item_target`, `file_target`, `parent`, `uid_owner` ' . |
|
102 | + $queryString = 'SELECT `id`, `share_with`, `item_type`, `share_type`, '. |
|
103 | + '`item_target`, `file_target`, `parent`, `uid_owner` '. |
|
104 | 104 | 'FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') '; |
105 | 105 | } |
106 | 106 | if ($excludeGroupChildren) { |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | 'shareWith' => $item['share_with'], |
118 | 118 | 'itemTarget' => $item['item_target'], |
119 | 119 | 'itemType' => $item['item_type'], |
120 | - 'shareType' => (int)$item['share_type'], |
|
120 | + 'shareType' => (int) $item['share_type'], |
|
121 | 121 | ); |
122 | 122 | if (isset($item['file_target'])) { |
123 | 123 | $tmpItem['fileTarget'] = $item['file_target']; |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | if ($defaultExpireDate === 'yes') { |
169 | 169 | $enforceExpireDate = $config->getAppValue('core', 'shareapi_enforce_expire_date', 'no'); |
170 | 170 | $defaultExpireSettings['defaultExpireDateSet'] = true; |
171 | - $defaultExpireSettings['expireAfterDays'] = (int)($config->getAppValue('core', 'shareapi_expire_after_n_days', '7')); |
|
171 | + $defaultExpireSettings['expireAfterDays'] = (int) ($config->getAppValue('core', 'shareapi_expire_after_n_days', '7')); |
|
172 | 172 | $defaultExpireSettings['enforceExpireDate'] = $enforceExpireDate === 'yes' ? true : false; |
173 | 173 | } |
174 | 174 |
@@ -51,9 +51,9 @@ discard block |
||
51 | 51 | * Callback function for usort. http://php.net/usort |
52 | 52 | */ |
53 | 53 | public function sort($a, $b) { |
54 | - if(!isset($a[$this->key]) || !isset($b[$this->key])) { |
|
55 | - if(!is_null($this->log)) { |
|
56 | - $this->log->error('Sharing dialogue: cannot sort due to ' . |
|
54 | + if (!isset($a[$this->key]) || !isset($b[$this->key])) { |
|
55 | + if (!is_null($this->log)) { |
|
56 | + $this->log->error('Sharing dialogue: cannot sort due to '. |
|
57 | 57 | 'missing array key', array('app' => 'core')); |
58 | 58 | } |
59 | 59 | return 0; |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $i = mb_strpos($nameA, $this->search, 0, $this->encoding); |
64 | 64 | $j = mb_strpos($nameB, $this->search, 0, $this->encoding); |
65 | 65 | |
66 | - if($i === $j || $i > 0 && $j > 0) { |
|
66 | + if ($i === $j || $i > 0 && $j > 0) { |
|
67 | 67 | return strcmp(mb_strtolower($nameA, $this->encoding), |
68 | 68 | mb_strtolower($nameB, $this->encoding)); |
69 | 69 | } elseif ($i === 0) { |
@@ -35,7 +35,7 @@ |
||
35 | 35 | |
36 | 36 | const FORMAT_NONE = -1; |
37 | 37 | const FORMAT_STATUSES = -2; |
38 | - const FORMAT_SOURCES = -3; // ToDo Check if it is still in use otherwise remove it |
|
38 | + const FORMAT_SOURCES = -3; // ToDo Check if it is still in use otherwise remove it |
|
39 | 39 | |
40 | 40 | const RESPONSE_FORMAT = 'json'; // default resonse format for ocs calls |
41 | 41 |