X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=application%2Fapi%2FApiMiddleware.php;h=5ffb8c6d06653fc527df1caca85d58004d41def8;hb=7be2a2d5f4078ba97b3281f2b5c33ae9bd337be5;hp=ff2093930c69b5e5ad0c22f03eee816d2f27e8ce;hpb=5177d8e57427ac01e788079b8e61065f038df5d2;p=github%2Fshaarli%2FShaarli.git diff --git a/application/api/ApiMiddleware.php b/application/api/ApiMiddleware.php index ff209393..5ffb8c6d 100644 --- a/application/api/ApiMiddleware.php +++ b/application/api/ApiMiddleware.php @@ -1,9 +1,8 @@ checkRequest($request); $response = $next($request, $response); - } catch(ApiException $e) { + } catch (ApiException $e) { $e->setResponse($response); $e->setDebug($this->conf->get('dev.debug', false)); $response = $e->getApiResponse(); @@ -98,7 +97,8 @@ class ApiMiddleware * * @throws ApiAuthorizationException The token couldn't be validated. */ - protected function checkToken($request) { + protected function checkToken($request) + { if (! $request->hasHeader('Authorization')) { throw new ApiAuthorizationException('JWT token not provided'); } @@ -126,7 +126,7 @@ class ApiMiddleware */ protected function setLinkDb($conf) { - $linkDb = new \LinkDB( + $linkDb = new \Shaarli\Bookmark\LinkDB( $conf->get('resource.datastore'), true, $conf->get('privacy.hide_public_links'),