Release version 1.13.7
[sdc.git] / catalog-ui / webpack.server.js
index b367577..a3db60f 100644 (file)
@@ -1,8 +1,12 @@
 const mockApis = require('./configurations/mock.json').sdcConfig;
 const proxy = require('http-proxy-middleware');
 const devPort = 9000;
+
 const fePort = 8181;
 const feHost = "localhost";
+const protocol="http";
+const isDirectToFE = true;
+
 const portalCookieValue = "randomValue"; //for dev solely, in production - the webseal would add the cookie by itself.
 
 module.exports = function (env) {
@@ -38,25 +42,40 @@ module.exports = function (env) {
             ];
 
             // Redirect all '/sdc1/feProxy/rest' to feHost
+            let feProxyOptions = {
+                target: protocol + '://' + feHost + ':' + fePort,
+                changeOrigin: true,
+                secure: false,
+                logLevel: 'debug'
+            }    
+            if (!isDirectToFE) {
+              feProxyOptions.pathRewrite= {
+                '^/sdc1/feProxy/rest' : '/sdc2/rest'
+              }
+            }
             middlewares.push(
-                proxy(['/sdc1/feProxy/rest', '/sdc1/feProxy/uicache'], {
-                    target: 'http://' + feHost + ':' + fePort,
-                    changeOrigin: true,
-                    secure: false
-                }));
+                proxy(['/sdc1/feProxy/rest'], feProxyOptions));
+
+            // Redirect all '/sdc1/feProxy/uicache' to feHost
+            middlewares.push(
+              proxy(['/sdc1/feProxy/uicache'], {
+                target: protocol + '://' + feHost + ':' + fePort,
+                changeOrigin: true,
+                secure: false
+              }));
 
             // Redirect all '/sdc1/rest' to feHost
             middlewares.push(
-                proxy(['/sdc1/rest'], {
-                    target: 'http://' + feHost + ':' + fePort,
+                proxy(['/sdc1/rest'],{
+                    target: protocol + '://' + feHost + ':' + fePort,
                     changeOrigin: true,
                     secure: false
                 }));
 
             // Redirect dcae urls to feHost
             middlewares.push(
-                proxy(['/dcae', '/sdc1/feProxy/dcae-api'], {
-                    target: 'http://' + feHost + ':' + fePort,
+                proxy(['/dcae','/sdc1/feProxy/dcae-api'], {
+                    target: protocol + '://' + feHost + ':' + fePort,
                     changeOrigin: true,
                     secure: false,
                     onProxyRes: (proxyRes, req, res) => {
@@ -70,7 +89,7 @@ module.exports = function (env) {
             // Redirect onboarding urls to feHost
             middlewares.push(
                 proxy(['/onboarding', '/sdc1/feProxy/onboarding-api'], {
-                    target: 'http://' + feHost + ':' + fePort,
+                    target: protocol + '://' + feHost + ':' + fePort,
                     changeOrigin: true,
                     secure: false,
                     onProxyRes: (proxyRes, req, res) => {
@@ -81,6 +100,20 @@ module.exports = function (env) {
                     }
                 }));
 
+            // Redirect workflow urls to feHost
+            middlewares.push(
+                proxy(['/wf', '/sdc1/feProxy/wf'], {
+                    target: protocol + '://' + feHost + ':' + fePort,
+                    changeOrigin: true,
+                    logLevel: 'debug',
+                    secure: false,
+                    onProxyRes: (proxyRes, req, res) => {
+                        let setCookie = proxyRes.headers['set-cookie'];
+                        if (setCookie) {
+                            setCookie[0] = setCookie[0].replace(/\bSecure\b(; )?/, '');
+                        }
+                    }
+                }));
             server.use(middlewares);
         }
     };