|
|
@@ -765,3 +765,47 @@ $app->post('/test/slack-logs', function ($request, $response, $args) {
|
|
|
->withHeader('Content-Type', 'application/json;charset=UTF-8')
|
|
|
->withStatus($GLOBALS['responseCode']);
|
|
|
});
|
|
|
+$app->post('/test/jellystat', function ($request, $response, $args) {
|
|
|
+ /**
|
|
|
+ * @OA\Post(
|
|
|
+ * security={{ "api_key":{} }},
|
|
|
+ * tags={"test connection"},
|
|
|
+ * path="/api/v2/test/jellystat",
|
|
|
+ * summary="Test connection to JellyStat",
|
|
|
+ * @OA\Response(response="200",description="Success",@OA\JsonContent(ref="#/components/schemas/success-message")),
|
|
|
+ * @OA\Response(response="401",description="Unauthorized",@OA\JsonContent(ref="#/components/schemas/unauthorized-message")),
|
|
|
+ * @OA\Response(response="422",description="Error",@OA\JsonContent(ref="#/components/schemas/error-message")),
|
|
|
+ * @OA\Response(response="500",description="Error",@OA\JsonContent(ref="#/components/schemas/error-message")),
|
|
|
+ * )
|
|
|
+ */
|
|
|
+ $Organizr = ($request->getAttribute('Organizr')) ?? new Organizr();
|
|
|
+ if ($Organizr->qualifyRequest(1, true)) {
|
|
|
+ $Organizr->testConnectionJellyStat();
|
|
|
+ }
|
|
|
+ $response->getBody()->write(jsonE($GLOBALS['api']));
|
|
|
+ return $response
|
|
|
+ ->withHeader('Content-Type', 'application/json;charset=UTF-8')
|
|
|
+ ->withStatus($GLOBALS['responseCode']);
|
|
|
+});
|
|
|
+$app->post('/test/userWatchStats', function ($request, $response, $args) {
|
|
|
+ /**
|
|
|
+ * @OA\Post(
|
|
|
+ * security={{ "api_key":{} }},
|
|
|
+ * tags={"test connection"},
|
|
|
+ * path="/api/v2/test/userWatchStats",
|
|
|
+ * summary="Test connection to User Watch Stats",
|
|
|
+ * @OA\Response(response="200",description="Success",@OA\JsonContent(ref="#/components/schemas/success-message")),
|
|
|
+ * @OA\Response(response="401",description="Unauthorized",@OA\JsonContent(ref="#/components/schemas/unauthorized-message")),
|
|
|
+ * @OA\Response(response="422",description="Error",@OA\JsonContent(ref="#/components/schemas/error-message")),
|
|
|
+ * @OA\Response(response="500",description="Error",@OA\JsonContent(ref="#/components/schemas/error-message")),
|
|
|
+ * )
|
|
|
+ */
|
|
|
+ $Organizr = ($request->getAttribute('Organizr')) ?? new Organizr();
|
|
|
+ if ($Organizr->qualifyRequest(1, true)) {
|
|
|
+ $Organizr->testConnectionUserWatchStats();
|
|
|
+ }
|
|
|
+ $response->getBody()->write(jsonE($GLOBALS['api']));
|
|
|
+ return $response
|
|
|
+ ->withHeader('Content-Type', 'application/json;charset=UTF-8')
|
|
|
+ ->withStatus($GLOBALS['responseCode']);
|
|
|
+});
|