Parcourir la source

RemoteSubscription : make X-Plex- query parameters retrieval more generic, part of #444

This allows to append to headers any X-Plex- parameter that would be in the query.
Lionel CHAZALLON il y a 8 ans
Parent
commit
ea01d3c42c
2 fichiers modifiés avec 20 ajouts et 6 suppressions
  1. 19 5
      src/remote/RemoteComponent.cpp
  2. 1 1
      src/remote/RemoteComponent.h

+ 19 - 5
src/remote/RemoteComponent.cpp

@@ -165,11 +165,24 @@ QVariantMap RemoteComponent::QueryToMap(const QUrl& url)
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////
-QVariantMap RemoteComponent::HeaderToMap(const qhttp::THeaderHash& hash)
+QVariantMap RemoteComponent::HeaderToMap(const qhttp::THeaderHash& hash, const QUrl *url)
 {
   QVariantMap variantMap;
   for(const QString& key : hash.keys())
-    variantMap.insert(key, hash.value(key.toUtf8()));
+    variantMap.insert(key.toLower(), hash.value(key.toUtf8()));
+
+  // add any eventual X-Plex- param that could be in query parameters
+  if (url)
+  {
+    QVariantMap paramsMap = QueryToMap(*url);
+    for(const QString &key : paramsMap.keys())
+    {
+      QString paramKey = key.toLower();
+      if ((paramKey.startsWith("x-plex-")) && (!variantMap.contains(paramKey)))
+        variantMap.insert(paramKey, paramsMap[key].toString());
+    }
+  }
+
   return variantMap;
 }
 
@@ -363,12 +376,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());
+  QVariantMap headers = HeaderToMap(request->headers(), &request->url());
 
   // check for required headers
   if (!headers.contains("x-plex-client-identifier") ||
-      (!headers.contains("x-plex-device-name") && !query.contains("X-Plex-Device-Name")))
+      (!headers.contains("x-plex-device-name")))
   {
     QLOG_ERROR() << "Missing X-Plex headers in /timeline/subscribe request";
     response->setStatusCode(qhttp::ESTATUS_BAD_REQUEST);
@@ -377,6 +389,8 @@ 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";

+ 1 - 1
src/remote/RemoteComponent.h

@@ -37,7 +37,7 @@ public:
   void handleResource(QHttpRequest* request, QHttpResponse* response);
   void handleCommand(QHttpRequest* request, QHttpResponse* response);
 
-  static QVariantMap HeaderToMap(const qhttp::THeaderHash& hash);
+  static QVariantMap HeaderToMap(const qhttp::THeaderHash& hash, const QUrl *url = nullptr);
   static QVariantMap QueryToMap(const QUrl& url);
 
   Q_INVOKABLE void commandResponse(const QVariantMap& responseArguments);