X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=index.php;h=cc7f3ca3497feaf96288b61f718997eb0c3a09cf;hb=5c0e68c07148014191270d7c82b800f0bdb9196e;hp=b62149f647f469556d1f1a5c99120e22a9702aac;hpb=89dcbe52775bac8d544448ff4f80b6256875de91;p=github%2Fshaarli%2FShaarli.git diff --git a/index.php b/index.php index b62149f6..cc7f3ca3 100644 --- a/index.php +++ b/index.php @@ -1,6 +1,6 @@ get('resource.page_cache') + $conf ); echo ''; @@ -1682,6 +1682,7 @@ function buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager) 'result_count' => count($linksToDisplay), 'search_term' => $searchterm, 'search_tags' => $searchtags, + 'visibility' => ! empty($_SESSION['privateonly']) ? 'private' : '', 'redirector' => $conf->get('redirector.url'), // Optional redirector URL. 'links' => $linkDisp, 'tags' => $LINKSDB->allTags(), @@ -2232,12 +2233,13 @@ $app = new \Slim\App($container); $app->group('/api/v1', function() { $this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo'); $this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks'); + $this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink'); })->add('\Shaarli\Api\ApiMiddleware'); $response = $app->run(true); // Hack to make Slim and Shaarli router work together: -// If a Slim route isn't found, we call renderPage(). -if ($response->getStatusCode() == 404) { +// If a Slim route isn't found and NOT API call, we call renderPage(). +if ($response->getStatusCode() == 404 && strpos($_SERVER['REQUEST_URI'], '/api/v1') === false) { // We use UTF-8 for proper international characters handling. header('Content-Type: text/html; charset=utf-8'); renderPage($conf, $pluginManager, $linkDb);