middleware.go
5.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
package middleware
import (
"bufio"
"bytes"
"encoding/json"
"errors"
"fmt"
"github.com/astaxie/beego/context"
"io"
//"github.com/opentracing/opentracing-go"
auth "github.com/abbot/go-http-auth"
"github.com/tiptok/gocomm/common"
"github.com/tiptok/gocomm/gs"
"github.com/tiptok/gocomm/pkg/log"
"gitlab.fjmaimaimai.com/mmm-go/godevp/pkg/application/cachex"
"gitlab.fjmaimaimai.com/mmm-go/godevp/pkg/protocol"
"net/http"
"strconv"
"strings"
"time"
)
var (
errAuthorization = errors.New("无访问权限")
errAuthorizationExpire = errors.New("权限已过期,请重新登录")
)
func CheckAuthorization(ctx *context.Context) {
var (
msg *protocol.ResponseMessage
)
defer func() {
if msg != nil {
ctx.Output.JSON(msg, false, false)
}
}()
authorization := ctx.Input.Header("Authorization")
if len(authorization) == 0 {
msg = protocol.NewResponseMessage(2, errAuthorization.Error())
return
}
var token string
splitToken := strings.Split(authorization, " ")
if len(splitToken) == 1 {
token = splitToken[0]
} else {
token = splitToken[1]
}
claim, err := common.ParseJWTToken(token)
if err != nil {
msg = protocol.NewResponseMessage(2, errAuthorizationExpire.Error())
return
}
userId, _ := strconv.Atoi(claim.Username)
ctx.Input.SetData("x-mmm-id", userId)
ctx.Input.SetData("x-mmm-uname", claim.AddData["UserName"])
//ctx.Input.SetData("x-mmm-phone", claim.AddData["Phone"])
return
}
func CheckRoleAccess(ctx *context.Context, object, method string) {
var (
msg *protocol.ResponseMessage
)
defer func() {
if msg != nil {
ctx.Output.JSON(msg, false, false)
}
}()
userId := ctx.Input.GetData("x-mmm-id")
if userId == nil {
msg = protocol.NewResponseMessage(-1, errAuthorization.Error())
return
}
validUserRole := cachex.CacheService{}
if ok, _ := validUserRole.ValidUserAccess(int64(userId.(int)), object, method); !ok {
msg = protocol.NewResponseMessage(-1, errAuthorization.Error())
return
}
return
}
func InspectRoleAccess(parentObject string, skipUrl ...string) func(*context.Context) {
return func(c *context.Context) {
var validParentPermision bool
if len(skipUrl) > 0 {
requestUrl := c.Input.URL()
for _, url := range skipUrl {
if cachex.KeyMatch3(requestUrl, url) {
validParentPermision = true
break
}
}
}
// 跳过这个路由底下所有接口,使用父模块权限验证
if len(parentObject) > 0 && len(skipUrl) == 0 {
validParentPermision = true
}
CheckAuthorization(c)
if validParentPermision {
CheckRoleAccess(c, parentObject, c.Input.Method())
return
}
CheckRoleAccess(c, c.Input.URL(), c.Input.Method())
}
}
func CreateRequestLogFilter() func(ctx *context.Context) {
return func(ctx *context.Context) {
requestId := fmt.Sprintf("%v.%v.%v ", ctx.Input.Method(), ctx.Input.URI(), time.Now().UnixNano())
ctx.Request.Header.Add("requestId", requestId)
var body string = "{}"
if len(ctx.Input.RequestBody) > 0 {
body = string(ctx.Input.RequestBody)
}
log.Debug(fmt.Sprintf("====>Recv RequestId:%s \nBodyData:%s", requestId, body))
}
}
func CreateResponseLogFilter() func(ctx *context.Context) {
return func(ctx *context.Context) {
requestId := ctx.Request.Header.Get("requestId")
body, _ := json.Marshal(ctx.Input.GetData("outputData"))
if len(body) > 1000 {
body = body[:1000]
}
log.Debug(fmt.Sprintf("<====Send User:%v RequestId:%v \nResponseData:%s", ctx.Input.GetData("x-mmm-id"), requestId, body))
}
}
func AllowCors() func(ctx *context.Context) {
return func(ctx *context.Context) {
ctx.Output.Header("Access-Control-Allow-Methods", "OPTIONS,DELETE,POST,GET,PUT,PATCH")
//ctx.Output.Header("Access-Control-Max-Age", "3600")
ctx.Output.Header("Access-Control-Allow-Headers", "*")
ctx.Output.Header("Access-Control-Allow-Credentials", "true")
ctx.Output.Header("Access-Control-Allow-Origin", "*") //origin
if ctx.Input.Method() == http.MethodOptions {
// options请求,返回200
ctx.Output.SetStatus(http.StatusOK)
_ = ctx.Output.Body([]byte("options support"))
}
}
}
//func OpenTracingAdapter(ctx *context.Context) {
// var sp opentracing.Span
// opName := ctx.Input.URL()
// // Attempt to join a trace by getting trace context from the headers.
// wireContext, err := opentracing.GlobalTracer().Extract(
// opentracing.HTTPHeaders,
// opentracing.HTTPHeadersCarrier(ctx.Request.Header))
// if err != nil {
// // If for whatever reason we can't join, go ahead an start a new root span.
// sp = opentracing.StartSpan(opName)
// } else {
// sp = opentracing.StartSpan(opName, opentracing.ChildOf(wireContext))
// }
// defer sp.Finish()
//}
func secret(user, pwd string) string {
if user == "admin" {
// password is "hello"
return "$1$dlPL2MqE$oQmn16q49SqdmhenQuNgs1"
}
return ""
}
func BasicAuth() func(ctx *context.Context) {
return func(ctx *context.Context) {
a := auth.NewBasicAuthenticator("example.com", secret)
if username := a.CheckAuth(ctx.Request); username == "" {
a.RequireAuth(ctx.ResponseWriter, ctx.Request)
}
}
}
// http://127.0.0.1:8080/logf?source=dev/2021-01-08/mmmgodevp.2021-01-08.dev.txt
func LogF() func(ctx *context.Context) {
return func(ctx *context.Context) {
source := ctx.Input.Query("source")
client := gs.NewGateWayClient("http://dockerlogs.fjmaimaimai.com/")
client.AddApi("log", source, "")
request := client.NewRequest("log")
rsp, err := request.Response()
if err != nil {
ctx.Output.SetStatus(http.StatusInternalServerError)
ctx.Output.Body([]byte(source))
return
}
type LogInfo struct {
LogContent string `json:"log"`
}
buf := bufio.NewReader(rsp.Body)
rspData := bytes.NewBuffer(nil)
for {
data, _, err := buf.ReadLine()
if err == io.EOF || err != nil {
break
}
logItem := &LogInfo{}
common.JsonUnmarshal(string(data), logItem)
rspData.WriteString(logItem.LogContent)
}
ctx.Output.Body(rspData.Bytes())
ctx.Output.ContentType("text/plain; charset=utf-8")
}
}