Config option to specify cookie domain for auth
authorJakub Skoczen <jakub@indexdata.dk>
Thu, 21 Nov 2013 13:14:30 +0000 (14:14 +0100)
committerJakub Skoczen <jakub@indexdata.dk>
Thu, 21 Nov 2013 13:14:30 +0000 (14:14 +0100)
This enforces the manually stored cookie to apply to for the given domain,
no matter where the auth call is sent.

examples/htdocs/jakub.html
tools/htdocs/mkws.js

index 9433603..6a06b22 100644 (file)
@@ -6,7 +6,8 @@
     <script type="text/javascript">
       var mkws_config = {
         pazpar2_url: "http://mkws-origin/service-proxy/",
-        service_proxy_auth: "http://mkws-origin/service-proxy-auth/"
+        service_proxy_auth: "http://mkws-local/service-proxy-auth/",
+        service_proxy_auth_domain : "mkws-origin"
       };
     </script>
     <script type="text/javascript" src="http://mkws-origin/mkws-complete.js"></script>
index a369f2d..4f4cc5c 100644 (file)
@@ -672,7 +672,8 @@ function mkws_html_all() {
     mkws_html_switch();
 
     if (mkws_config.use_service_proxy)
-       mkws_service_proxy_auth(mkws_config.service_proxy_auth);
+         mkws_service_proxy_auth(mkws_config.service_proxy_auth, 
+          mkws_config.service_proxy_auth_domain);
 
     if (mkws_config.responsive_design_width) {
        // Responsive web design - change layout on the fly based on
@@ -765,13 +766,13 @@ function mkws_html_perpage() {
  * The username/password is configured in the apache config file
  * for the site.
  */
-function mkws_service_proxy_auth(auth_url) {
+function mkws_service_proxy_auth(auth_url, auth_domain) {
     debug("Run service proxy auth URL: " + auth_url);
 
     var request = new pzHttpRequest(auth_url, function(err) {
-       alert("HTTP call for authentication failed: " + err)
-       return;
-    });
+         alert("HTTP call for authentication failed: " + err)
+         return;
+    }, auth_domain);
 
     request.get(null, function(data) {
        if (!$.isXMLDoc(data)) {