@libfintech/api-gateway-plugin 0.1.19 → 0.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/authe/index.js +5 -2
  2. package/package.json +1 -1
package/authe/index.js CHANGED
@@ -11,7 +11,7 @@ const {ResponseError} = require("@libfintech/api-gateway-core/error/response_err
11
11
  const sessionIdPrefix = appConfig.session.sessionIdPrefix;
12
12
  const accountIdPrefix = appConfig.session.accountIdPrefix;
13
13
  //不能有大写,客户端传值时,均为小写
14
- const sessionIdKeyName = appConfig.session.sessionIdKeyName;
14
+ const sessionIdKeyName = appConfig.session.sessionIdKeyName.toLowerCase();
15
15
  //会话最长过期时间(一天),单位:秒
16
16
  const maxExpirationTime = appConfig.session.maxExpirationTime;
17
17
 
@@ -26,7 +26,7 @@ function getCookies(cookie) {
26
26
  if (cookie) {
27
27
  cookie.split(";").forEach(l => {
28
28
  let parts = l.split("=");
29
- cookies[parts[0].trim()] = (parts[1] || "").trim();
29
+ cookies[parts[0].toLowerCase().trim()] = (parts[1] || "").trim();
30
30
  });
31
31
  }
32
32
 
@@ -238,10 +238,13 @@ async function main(pipeline, configs) {
238
238
  req.headers = {};
239
239
 
240
240
  // 防止人为注入
241
+ delete req.headers["X-Session"];
241
242
  delete req.headers["X-Account-Id"];
242
243
  delete req.headers["X-Wechat-Open-Id"];
243
244
 
244
245
  if (session) {
246
+ //注入X-Session
247
+ req.headers["X-Session"] = Buffer.from(JSON.stringify(session)).toString('base64');
245
248
  //注入X-Account-Id
246
249
  req.headers["X-Account-Id"] = session["accountId"];
247
250
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libfintech/api-gateway-plugin",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "description": "api gateway plugin",
5
5
  "repository": {
6
6
  "type": "git",