|
|
@@ -144,6 +144,28 @@ $app->post('/test/embyLiveTVTracker', function ($request, $response, $args) {
|
|
|
->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 Statistics plugin",
|
|
|
+ * @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($Organizr->apiData($request));
|
|
|
+ }
|
|
|
+ $response->getBody()->write(jsonE($GLOBALS['api']));
|
|
|
+ return $response
|
|
|
+ ->withHeader('Content-Type', 'application/json;charset=UTF-8')
|
|
|
+ ->withStatus($GLOBALS['responseCode']);
|
|
|
+});
|
|
|
$app->post('/test/jellyfin', function ($request, $response, $args) {
|
|
|
/**
|
|
|
* @OA\Post(
|