Express-Gateway,如何根据URL模式选择服务端点?

时间:2018-05-17 14:48:43

标签: express api-gateway express-gateway

我试图在网关后面的同一个域上获得一堆单独的服务器。目前,可以通过多个名称从外部世界到达这些服务器中的每一个。我们的销售团队希望为客户提供唯一的URL,因此如果服务器为10个客户提供服务,我们会有10个CNAME记录指向它。

如您所见,对于5台或6台服务器,apiEndpoints的数量非常大。最重要的是,可以在任何给定时间创建新的CNAME,使得硬编码apiEndpoints难以管理。

是否可以拥有动态serviceEndpoint网址。我想的是这样的:

apiEndpoints:
  legacy:
    host: '*.mydomain.com'
    paths: '/v1/*'
serviceEndpoints:
  legacyEndPoint:
    url: '${someVarWithValueofStar}.internal.com'
pipelines:
  default:
    apiEndpoints:
      - legacy:
    policies:
      - proxy:
          - action:
              serviceEndpoint: legacyEndPoint

基本上,我想要实现的是将所有x.mydomain.com重定向到x.internal.com,其中x可以是任何内容。

我可以在url字符串中使用变量吗?有没有办法获得与主机中的通配符匹配的字符串?还有其他方法可以解决这个问题吗?

2 个答案:

答案 0 :(得分:1)

我最终为了我的需要一起破解代理插件。非常基础,需要更多的工作和测试,但这就是我的开始:

代理插件(我的代理人)

const httpProxy = require("http-proxy");

/**
 * This is a very rudimentary proxy plugin for the express gateway framework.
 * Basically it will redirect requests xxx.external.com to xxx.internal.com
 * Where xxx can be any name and the destination comes from providing a 
 * service endpoint with a http://*.destination.com url
 * @param {*} params 
 * @param {*} config 
 */
module.exports = function (params, config) {
  const serviceEndpointKey = params.serviceEndpoint;
  const changeOrigin = params.changeOrigin;
  const endpoint = config.gatewayConfig.serviceEndpoints[serviceEndpointKey];
  const url = endpoint.url;
  const reg = /(\/\/\*\.)(\S+)/;
  const match = reg.exec(url);
  const domain = match[2];
  const proxy = httpProxy.createProxyServer({changeOrigin : changeOrigin});
  proxy.on("error", (err, req, res) => {
    console.error(err);
    if (!res.headersSent) {
      res.status(502).send('Bad gateway.');
    } else {
      res.end();
    }
  });
  return (req, res, next) => {
    const hostname = req.hostname;
    const regex = /^(.*?)\./
    const tokens = regex.exec(hostname)
    const serverName = tokens[1];
    const destination = req.protocol + "://" + serverName + "." + domain;

    proxy.web(req, res, {target : destination});
  };
};

<强> gateway.config.xml

http:
  port: 8080
apiEndpoints:
  legacy:
    host: '*.external.com'
    paths: '/v1/*'
serviceEndpoints:
  legacy_end_point:
    url: 'https://*.internal.com'
policies:
  - my-proxy
pipelines:
  default:
    apiEndpoints:
      - legacy
    policies:
      - my-proxy:
          - action:
              serviceEndpoint: legacy_end_point 
              changeOrigin: true

这一切归结为正则表达式解析apiEndpointsserviceEndpoints主机和网址中的通配符,到目前为止还没什么特别的。我查看了内置代理插件的源代码,我不认为我的天真方法很适合,但它适用于我需要它。

答案 1 :(得分:0)

感谢这个问题,我想在接下来的几个月里会有很多问题。

Express Gateway支持环境变量;不幸的是,现在apiEndpoint只能是一个没有任何替换功能的单一且定义良好的端点。

我们可能会在短期内改变这种情况 - 使用代理表API可以让您插入一些更难的模板。

如果这对你很紧迫,我会邀请你open an issue,以便团队中的每个人都知道这样的功能,我们可以有效地优先考虑它。

与此同时,不幸的是,你必须处理大量的ApiEndpoints