1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
John Guo
1534abdb05
feat(util/gpage): marked deprecated (#4230) 2025-04-02 19:56:28 +08:00
hailaz
fee38b4531
feat(net/ghttp): enhance GetHeader method to support default values (#4210) 2025-03-25 20:42:30 +08:00
5 changed files with 29 additions and 6 deletions

@ -1 +1 @@
Subproject commit b57e4575ce971e6a6e581b1de0e77eccf61705c4
Subproject commit f15e0c1978935dbe44ae6a7b8fe91de53abf1beb

View File

@ -151,8 +151,13 @@ func (r *Request) IsExited() bool {
}
// GetHeader retrieves and returns the header value with given `key`.
func (r *Request) GetHeader(key string) string {
return r.Header.Get(key)
// It returns the optional `def` parameter if the header does not exist.
func (r *Request) GetHeader(key string, def ...string) string {
value := r.Header.Get(key)
if value == "" && len(def) > 0 {
value = def[0]
}
return value
}
// GetHost returns current request host name, which might be a domain or an IP without port.

View File

@ -17,10 +17,12 @@ import (
// GetPage creates and returns the pagination object for given `totalSize` and `pageSize`.
// NOTE THAT the page parameter name from clients is constantly defined as gpage.DefaultPageName
// for simplification and convenience.
//
// Deprecated: wrap this pagination html content in business layer.
func (r *Request) GetPage(totalSize, pageSize int) *gpage.Page {
// It must have Router object attribute.
if r.Router == nil {
panic("Router object not found")
panic("router object not found")
}
var (
url = *r.URL

View File

@ -363,7 +363,11 @@ func Test_Params_Basic(t *testing.T) {
func Test_Params_Header(t *testing.T) {
s := g.Server(guid.S())
s.BindHandler("/header", func(r *ghttp.Request) {
r.Response.Write(r.GetHeader("test"))
r.Response.Write(map[string]interface{}{
"without-def": r.GetHeader("no-header"),
"with-def": r.GetHeader("no-header", "my-default"),
"x-custom-with": r.GetHeader("x-custom", "my-default"),
})
})
s.SetDumpRouterMap(false)
s.Start()
@ -374,8 +378,14 @@ func Test_Params_Header(t *testing.T) {
prefix := fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort())
client := g.Client()
client.SetPrefix(prefix)
client.SetHeader("x-custom", "custom-value")
t.Assert(client.Header(g.MapStrStr{"test": "123456"}).GetContent(ctx, "/header"), "123456")
resp := client.GetContent(ctx, "/header")
t.Assert(gjson.New(resp).Map(), g.Map{
"without-def": "",
"with-def": "my-default",
"x-custom-with": "custom-value",
})
})
}

View File

@ -5,6 +5,8 @@
// You can obtain one at https://github.com/gogf/gf.
// Package gpage provides useful paging functionality for web pages.
//
// Deprecated: wrap this pagination html content in business layer.
package gpage
import (
@ -18,6 +20,8 @@ import (
// Page is the pagination implementer.
// All the attributes are public, you can change them when necessary.
//
// Deprecated: wrap this pagination html content in business layer.
type Page struct {
TotalSize int // Total size.
TotalPage int // Total page, which is automatically calculated.
@ -48,6 +52,8 @@ const (
// /user/list/{.page}, /user/list/{.page}.html, /user/list?page={.page}&type=1, etc.
// The build-in variable in `urlTemplate` "{.page}" specifies the page number, which will be replaced by certain
// page number when producing.
//
// Deprecated: wrap this pagination html content in business layer.
func New(totalSize, pageSize, currentPage int, urlTemplate string) *Page {
p := &Page{
LinkStyle: "GPageLink",