mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
refract(net/ghttp): move Request.GetMetaTag
to HandlerItemParsed.GetMetaTag
(#4191)
This commit is contained in:
parent
029f324c5c
commit
bb696bb281
@ -19,7 +19,6 @@ import (
|
||||
"github.com/gogf/gf/v2/os/gview"
|
||||
"github.com/gogf/gf/v2/text/gregex"
|
||||
"github.com/gogf/gf/v2/text/gstr"
|
||||
"github.com/gogf/gf/v2/util/gmeta"
|
||||
"github.com/gogf/gf/v2/util/guid"
|
||||
)
|
||||
|
||||
@ -279,35 +278,3 @@ func (r *Request) ReloadParam() {
|
||||
r.parsedQuery = false
|
||||
r.bodyContent = nil
|
||||
}
|
||||
|
||||
// GetHandlerResponse retrieves and returns the handler response object and its error.
|
||||
func (r *Request) GetHandlerResponse() interface{} {
|
||||
return r.handlerResponse
|
||||
}
|
||||
|
||||
// GetServeHandler retrieves and returns the user defined handler used to serve this request.
|
||||
func (r *Request) GetServeHandler() *HandlerItemParsed {
|
||||
return r.serveHandler
|
||||
}
|
||||
|
||||
// GetMetaTag retrieves and returns the metadata value associated with the given key from the request struct.
|
||||
// The meta value is from struct tags from g.Meta/gmeta.Meta type.
|
||||
// For example:
|
||||
//
|
||||
// type GetMetaTagReq struct {
|
||||
// g.Meta `path:"/test" method:"post" summary:"meta_tag" tags:"meta"`
|
||||
// // ...
|
||||
// }
|
||||
//
|
||||
// r.GetMetaTag("summary") // returns "meta_tag"
|
||||
// r.GetMetaTag("method") // returns "post"
|
||||
func (r *Request) GetMetaTag(key string) string {
|
||||
if r.serveHandler == nil || r.serveHandler.Handler == nil {
|
||||
return ""
|
||||
}
|
||||
metaValue := gmeta.Get(r.serveHandler.Handler.Info.Type.In(1), key)
|
||||
if metaValue != nil {
|
||||
return metaValue.String()
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
41
net/ghttp/ghttp_request_param_handler.go
Normal file
41
net/ghttp/ghttp_request_param_handler.go
Normal file
@ -0,0 +1,41 @@
|
||||
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the MIT License.
|
||||
// If a copy of the MIT was not distributed with this file,
|
||||
// You can obtain one at https://github.com/gogf/gf.
|
||||
|
||||
package ghttp
|
||||
|
||||
import "github.com/gogf/gf/v2/util/gmeta"
|
||||
|
||||
// GetHandlerResponse retrieves and returns the handler response object and its error.
|
||||
func (r *Request) GetHandlerResponse() interface{} {
|
||||
return r.handlerResponse
|
||||
}
|
||||
|
||||
// GetServeHandler retrieves and returns the user defined handler used to serve this request.
|
||||
func (r *Request) GetServeHandler() *HandlerItemParsed {
|
||||
return r.serveHandler
|
||||
}
|
||||
|
||||
// GetMetaTag retrieves and returns the metadata value associated with the given key from the request struct.
|
||||
// The meta value is from struct tags from g.Meta/gmeta.Meta type.
|
||||
// For example:
|
||||
//
|
||||
// type GetMetaTagReq struct {
|
||||
// g.Meta `path:"/test" method:"post" summary:"meta_tag" tags:"meta"`
|
||||
// // ...
|
||||
// }
|
||||
//
|
||||
// r.GetServeHandler().GetMetaTag("summary") // returns "meta_tag"
|
||||
// r.GetServeHandler().GetMetaTag("method") // returns "post"
|
||||
func (h *HandlerItemParsed) GetMetaTag(key string) string {
|
||||
if h == nil || h.Handler == nil {
|
||||
return ""
|
||||
}
|
||||
metaValue := gmeta.Get(h.Handler.Info.Type.In(1), key)
|
||||
if metaValue != nil {
|
||||
return metaValue.String()
|
||||
}
|
||||
return ""
|
||||
}
|
@ -286,6 +286,6 @@ func (item HandlerItem) MarshalJSON() ([]byte, error) {
|
||||
}
|
||||
|
||||
// MarshalJSON implements the interface MarshalJSON for json.Marshal.
|
||||
func (item HandlerItemParsed) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(item.Handler)
|
||||
func (h *HandlerItemParsed) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(h.Handler)
|
||||
}
|
||||
|
@ -875,12 +875,13 @@ func (r GetMetaTagSt) PostTest(ctx context.Context, req *GetMetaTagReq) (*GetMet
|
||||
return &GetMetaTagRes{}, nil
|
||||
}
|
||||
|
||||
func TestRequest_GetMetaTag(t *testing.T) {
|
||||
func TestRequest_GetServeHandler_GetMetaTag(t *testing.T) {
|
||||
s := g.Server(guid.S())
|
||||
s.Use(func(r *ghttp.Request) {
|
||||
r.Response.Writef(
|
||||
"summary:%s,method:%s",
|
||||
r.GetMetaTag("summary"), r.GetMetaTag("method"),
|
||||
r.GetServeHandler().GetMetaTag("summary"),
|
||||
r.GetServeHandler().GetMetaTag("method"),
|
||||
)
|
||||
})
|
||||
s.Group("/", func(grp *ghttp.RouterGroup) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user