Browse Source

兼容cloud.long-chi.com 域名 的https

sixian 2 years ago
parent
commit
a61fe20eb0
2 changed files with 27 additions and 1 deletions
  1. 26 0
      app/middleware/checkAuth.go
  2. 1 1
      config/config.yaml

+ 26 - 0
app/middleware/checkAuth.go

@@ -1,12 +1,35 @@
 package middleware
 
 import (
+	"bytes"
 	"github.com/gin-gonic/gin"
 	"iot_manager_service/util/common"
 	"net/http"
 	"strings"
 )
 
+type CustomResponseWriter struct {
+	gin.ResponseWriter
+	body *bytes.Buffer
+	Host string
+}
+
+func (w CustomResponseWriter) Write(b []byte) (int, error) {
+	w.body.Write(b)
+	if strings.Contains(w.Host, "cloud.long-chi.com") {
+		old := string(b)
+		//为兼容https,此处需要修改下
+		new := strings.ReplaceAll(old, "http://110.40.223.170:9000/", "https://cloud.long-chi.com/")
+		new = strings.ReplaceAll(new, "http://106.52.134.22:9099/", "https://cloud.long-chi.com/")
+		b = []byte(new)
+	}
+	return w.ResponseWriter.Write(b)
+}
+
+func (w CustomResponseWriter) WriteString(s string) (int, error) {
+	w.body.WriteString(s)
+	return w.ResponseWriter.WriteString(s)
+}
 func CheckAuth() gin.HandlerFunc {
 	return func(ctx *gin.Context) {
 		//该路由下不校验token
@@ -23,6 +46,9 @@ func CheckAuth() gin.HandlerFunc {
 			token := ParseAccessToken(authorization)
 			if token != nil {
 				ctx.Set(Authorization, token)
+
+				blw := &CustomResponseWriter{body: bytes.NewBufferString(""), ResponseWriter: ctx.Writer, Host: ctx.Request.Host}
+				ctx.Writer = blw
 				ctx.Next()
 				return
 			}

+ 1 - 1
config/config.yaml

@@ -40,7 +40,7 @@ minio:
 #接口
 foreign:
   iot_edge_url: "http://192.168.110.248:8195"
-  security_rewind_url: "http://local.centos.jd.com:8196"
+  security_rewind_url: "http://local.centos.jd.com:9099"
   ip_cast_edge_url: "http://1.117.161.196:10063"
 
 #告警通知相关