Sfoglia il codice sorgente

Also check query arguments for RemoteSubscription, fixes #444

Some query parameters especially on iOS cannot be passed in headers, so they are passed with query parameters.
This patch allows to check the query parameters as well for `X-Plex-Device-Name`
Lionel CHAZALLON 8 anni fa
parent
commit
5efbf9ce58
1 ha cambiato i file con 2 aggiunte e 3 eliminazioni
  1. 2 3
      src/remote/RemoteComponent.cpp

+ 2 - 3
src/remote/RemoteComponent.cpp

@@ -364,10 +364,11 @@ void RemoteComponent::commandResponse(const QVariantMap& responseArguments)
 void RemoteComponent::handleSubscription(QHttpRequest* request, QHttpResponse* response, bool poll)
 {
   QVariantMap headers = HeaderToMap(request->headers());
+  QVariantMap query = QueryToMap(request->url());
 
   // check for required headers
   if (!headers.contains("x-plex-client-identifier") ||
-      !headers.contains("x-plex-device-name"))
+      (!headers.contains("x-plex-device-name") && !query.contains("X-Plex-Device-Name")))
   {
     QLOG_ERROR() << "Missing X-Plex headers in /timeline/subscribe request";
     response->setStatusCode(qhttp::ESTATUS_BAD_REQUEST);
@@ -376,8 +377,6 @@ void RemoteComponent::handleSubscription(QHttpRequest* request, QHttpResponse* r
   }
 
   // check for required arguments
-  QVariantMap query = QueryToMap(request->url());
-
   if (!query.contains("commandID") || ((!query.contains("port")) && !poll))
   {
     QLOG_ERROR() << "Missing arguments to /timeline/subscribe request";