|
|
@@ -53,4 +53,17 @@ $app->delete('/plugins/manage/{plugin}', function ($request, $response, $args) {
|
|
|
return $response
|
|
|
->withHeader('Content-Type', 'application/json;charset=UTF-8')
|
|
|
->withStatus($GLOBALS['responseCode']);
|
|
|
+});
|
|
|
+$app->get('/plugins/marketplace', function ($request, $response, $args) {
|
|
|
+ $Organizr = ($request->getAttribute('Organizr')) ?? new Organizr();
|
|
|
+ if ($Organizr->checkRoute($request)) {
|
|
|
+ if ($Organizr->qualifyRequest(1, true)) {
|
|
|
+ $GLOBALS['api']['response']['data'] = $Organizr->getPluginsMarketplace();
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ $response->getBody()->write(jsonE($GLOBALS['api']));
|
|
|
+ return $response
|
|
|
+ ->withHeader('Content-Type', 'application/json;charset=UTF-8')
|
|
|
+ ->withStatus($GLOBALS['responseCode']);
|
|
|
});
|