1
0
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:
John Guo 2025-03-12 21:55:35 +08:00 committed by GitHub
parent 029f324c5c
commit bb696bb281
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 46 additions and 37 deletions

View File

@ -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 ""
}

View 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 ""
}

View File

@ -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)
}

View File

@ -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) {