mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
refactor(net/ghttp): streamline default value merging logic and enhance code clarity
This commit is contained in:
parent
0d8b9faca0
commit
8493eba806
@ -107,7 +107,6 @@ func (r *Request) doParse(pointer interface{}, requestType int) error {
|
||||
return err
|
||||
}
|
||||
}
|
||||
// TODO: https://github.com/gogf/gf/pull/2450
|
||||
// Validation.
|
||||
if err = gvalid.New().
|
||||
Bail().
|
||||
|
@ -8,7 +8,6 @@ package ghttp
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/container/gvar"
|
||||
"github.com/gogf/gf/v2/internal/empty"
|
||||
"github.com/gogf/gf/v2/net/goai"
|
||||
"github.com/gogf/gf/v2/os/gstructs"
|
||||
"github.com/gogf/gf/v2/util/gconv"
|
||||
@ -178,15 +177,17 @@ func (r *Request) doGetRequestStruct(pointer interface{}, mapping ...map[string]
|
||||
if data == nil {
|
||||
data = map[string]interface{}{}
|
||||
}
|
||||
// Default struct values.
|
||||
if err = r.mergeDefaultStructValue(data, pointer); err != nil {
|
||||
return data, nil
|
||||
}
|
||||
|
||||
// `in` Tag Struct values.
|
||||
if err = r.mergeInTagStructValue(data); err != nil {
|
||||
return data, nil
|
||||
}
|
||||
|
||||
// Default struct values.
|
||||
if err = r.mergeDefaultStructValue(data, pointer); err != nil {
|
||||
return data, nil
|
||||
}
|
||||
|
||||
return data, gconv.Struct(data, pointer, mapping...)
|
||||
}
|
||||
|
||||
@ -194,21 +195,9 @@ func (r *Request) doGetRequestStruct(pointer interface{}, mapping ...map[string]
|
||||
func (r *Request) mergeDefaultStructValue(data map[string]interface{}, pointer interface{}) error {
|
||||
fields := r.serveHandler.Handler.Info.ReqStructFields
|
||||
if len(fields) > 0 {
|
||||
var (
|
||||
foundKey string
|
||||
foundValue interface{}
|
||||
)
|
||||
for _, field := range fields {
|
||||
if tagValue := field.TagDefault(); tagValue != "" {
|
||||
foundKey, foundValue = gutil.MapPossibleItemByKey(data, field.Name())
|
||||
if foundKey == "" {
|
||||
data[field.Name()] = tagValue
|
||||
} else {
|
||||
// Check parameter existence to determine using default or front-end value.
|
||||
if foundValue == nil {
|
||||
data[foundKey] = tagValue
|
||||
}
|
||||
}
|
||||
mergeFieldValue(data, false, field.Name(), field.Name(), tagValue)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
@ -220,20 +209,8 @@ func (r *Request) mergeDefaultStructValue(data map[string]interface{}, pointer i
|
||||
return err
|
||||
}
|
||||
if len(tagFields) > 0 {
|
||||
var (
|
||||
foundKey string
|
||||
foundValue interface{}
|
||||
)
|
||||
for _, field := range tagFields {
|
||||
foundKey, foundValue = gutil.MapPossibleItemByKey(data, field.Name())
|
||||
if foundKey == "" {
|
||||
data[field.Name()] = field.TagValue
|
||||
} else {
|
||||
// Check parameter existence to determine using default or front-end value.
|
||||
if foundValue == nil {
|
||||
data[foundKey] = field.TagValue
|
||||
}
|
||||
}
|
||||
mergeFieldValue(data, false, field.Name(), field.Name(), field.TagValue)
|
||||
}
|
||||
}
|
||||
|
||||
@ -263,34 +240,31 @@ func (r *Request) mergeInTagStructValue(data map[string]interface{}) error {
|
||||
|
||||
for _, field := range fields {
|
||||
if tagValue := field.TagIn(); tagValue != "" {
|
||||
findKey := field.TagPriorityName()
|
||||
switch tagValue {
|
||||
case goai.ParameterInHeader:
|
||||
foundHeaderKey, foundHeaderValue := gutil.MapPossibleItemByKey(headerMap, field.TagPriorityName())
|
||||
if foundHeaderKey != "" {
|
||||
foundKey, foundValue = gutil.MapPossibleItemByKey(data, foundHeaderKey)
|
||||
if foundKey == "" {
|
||||
data[field.Name()] = foundHeaderValue
|
||||
} else {
|
||||
if empty.IsEmpty(foundValue) {
|
||||
data[foundKey] = foundHeaderValue
|
||||
}
|
||||
}
|
||||
}
|
||||
foundKey, foundValue = gutil.MapPossibleItemByKey(headerMap, findKey)
|
||||
case goai.ParameterInCookie:
|
||||
foundCookieKey, foundCookieValue := gutil.MapPossibleItemByKey(cookieMap, field.TagPriorityName())
|
||||
if foundCookieKey != "" {
|
||||
foundKey, foundValue = gutil.MapPossibleItemByKey(data, foundCookieKey)
|
||||
if foundKey == "" {
|
||||
data[field.Name()] = foundCookieValue
|
||||
} else {
|
||||
if empty.IsEmpty(foundValue) {
|
||||
data[foundKey] = foundCookieValue
|
||||
}
|
||||
}
|
||||
}
|
||||
foundKey, foundValue = gutil.MapPossibleItemByKey(cookieMap, findKey)
|
||||
}
|
||||
if foundKey != "" {
|
||||
mergeFieldValue(data, true, foundKey, field.Name(), foundValue)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// mergeFieldValue merges the request parameters when the key does not exist in the map or isCover is true or the value is nil.
|
||||
//
|
||||
// createTime: 2025-03-05 17:50:32
|
||||
func mergeFieldValue(data map[string]interface{}, isCover bool, findKey string, fieldName string, tagValue interface{}) {
|
||||
if foundKey, foundValue := gutil.MapPossibleItemByKey(data, findKey); foundKey == "" {
|
||||
data[fieldName] = tagValue
|
||||
} else {
|
||||
if isCover || foundValue == nil {
|
||||
data[foundKey] = tagValue
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -13,7 +13,7 @@ import (
|
||||
"github.com/gogf/gf/v2/util/guid"
|
||||
)
|
||||
|
||||
// UserTagInReq struct tag "in" supports: header, query, cookie, form
|
||||
// UserTagInReq struct tag "in" supports: header, cookie
|
||||
type UserTagInReq struct {
|
||||
g.Meta `path:"/user" tags:"User" method:"post" summary:"user api" title:"api title"`
|
||||
Id int `v:"required" d:"1"`
|
||||
@ -56,7 +56,7 @@ func Test_ParamsTagIn(t *testing.T) {
|
||||
client.SetHeader("age", "18")
|
||||
|
||||
t.Assert(client.PostContent(ctx, "/user"), `{"Id":1,"Name":"john","Age":"18"}`)
|
||||
t.Assert(client.PostContent(ctx, "/user", "name=&age=&id="), `{"Id":1,"Name":"john","Age":"18"}`)
|
||||
t.Assert(client.PostContent(ctx, "/user", "name=&age="), `{"Id":1,"Name":"john","Age":"18"}`)
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user