2019-02-02 16:18:25 +08:00
|
|
|
|
// Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
2018-07-29 22:01:29 +08:00
|
|
|
|
//
|
|
|
|
|
// 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,
|
2019-02-02 16:18:25 +08:00
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-07-29 22:01:29 +08:00
|
|
|
|
|
|
|
|
|
package ghttp
|
|
|
|
|
|
|
|
|
|
import (
|
2019-06-19 09:06:52 +08:00
|
|
|
|
"strings"
|
2019-07-03 22:09:35 +08:00
|
|
|
|
|
2019-07-29 21:01:19 +08:00
|
|
|
|
"github.com/gogf/gf/container/gvar"
|
2019-07-16 16:23:03 +08:00
|
|
|
|
|
2019-07-29 21:01:19 +08:00
|
|
|
|
"github.com/gogf/gf/internal/structs"
|
|
|
|
|
"github.com/gogf/gf/util/gconv"
|
2018-07-29 22:01:29 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 初始化GET请求参数
|
|
|
|
|
func (r *Request) initGet() {
|
2019-06-19 09:06:52 +08:00
|
|
|
|
if !r.parsedGet {
|
|
|
|
|
r.queryVars = r.URL.Query()
|
|
|
|
|
if strings.EqualFold(r.Method, "GET") {
|
|
|
|
|
if raw := r.GetRawString(); len(raw) > 0 {
|
|
|
|
|
var array []string
|
|
|
|
|
for _, item := range strings.Split(raw, "&") {
|
|
|
|
|
array = strings.Split(item, "=")
|
|
|
|
|
r.queryVars[array[0]] = append(r.queryVars[array[0]], array[1])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
r.parsedGet = true
|
|
|
|
|
}
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-31 14:28:41 +08:00
|
|
|
|
// 设置GET参数,仅在ghttp.Server内有效,**注意并发安全性**
|
2018-08-19 22:45:23 +08:00
|
|
|
|
func (r *Request) SetQuery(key string, value string) {
|
2019-06-19 09:06:52 +08:00
|
|
|
|
r.initGet()
|
|
|
|
|
r.queryVars[key] = []string{value}
|
2018-07-31 14:28:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 添加GET参数,构成[]string
|
2018-08-19 22:45:23 +08:00
|
|
|
|
func (r *Request) AddQuery(key string, value string) {
|
2019-06-19 09:06:52 +08:00
|
|
|
|
r.initGet()
|
|
|
|
|
r.queryVars[key] = append(r.queryVars[key], value)
|
2018-07-31 14:28:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-29 22:01:29 +08:00
|
|
|
|
// 获得指定名称的get参数列表
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQuery(key string, def ...interface{}) []string {
|
|
|
|
|
r.initGet()
|
|
|
|
|
if v, ok := r.queryVars[key]; ok {
|
|
|
|
|
return v
|
|
|
|
|
}
|
|
|
|
|
if len(def) > 0 {
|
|
|
|
|
return gconv.Strings(def[0])
|
|
|
|
|
}
|
|
|
|
|
return nil
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-16 16:23:03 +08:00
|
|
|
|
func (r *Request) GetQueryVar(key string, def ...interface{}) *gvar.Var {
|
2019-07-23 23:20:27 +08:00
|
|
|
|
return gvar.New(r.GetQueryString(key, def...))
|
2019-07-16 16:23:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryString(key string, def ...interface{}) string {
|
|
|
|
|
value := r.GetQuery(key, def...)
|
|
|
|
|
if value != nil && value[0] != "" {
|
|
|
|
|
return value[0]
|
|
|
|
|
}
|
|
|
|
|
return ""
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryBool(key string, def ...interface{}) bool {
|
|
|
|
|
value := r.GetQueryString(key, def...)
|
|
|
|
|
if value != "" {
|
|
|
|
|
return gconv.Bool(value)
|
|
|
|
|
}
|
|
|
|
|
return false
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryInt(key string, def ...interface{}) int {
|
|
|
|
|
value := r.GetQueryString(key, def...)
|
|
|
|
|
if value != "" {
|
|
|
|
|
return gconv.Int(value)
|
|
|
|
|
}
|
|
|
|
|
return 0
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryInts(key string, def ...interface{}) []int {
|
|
|
|
|
value := r.GetQuery(key, def...)
|
|
|
|
|
if value != nil {
|
|
|
|
|
return gconv.Ints(value)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
2018-10-09 10:05:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryUint(key string, def ...interface{}) uint {
|
|
|
|
|
value := r.GetQueryString(key, def...)
|
|
|
|
|
if value != "" {
|
|
|
|
|
return gconv.Uint(value)
|
|
|
|
|
}
|
|
|
|
|
return 0
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryFloat32(key string, def ...interface{}) float32 {
|
|
|
|
|
value := r.GetQueryString(key, def...)
|
|
|
|
|
if value != "" {
|
|
|
|
|
return gconv.Float32(value)
|
|
|
|
|
}
|
|
|
|
|
return 0
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryFloat64(key string, def ...interface{}) float64 {
|
|
|
|
|
value := r.GetQueryString(key, def...)
|
|
|
|
|
if value != "" {
|
|
|
|
|
return gconv.Float64(value)
|
|
|
|
|
}
|
|
|
|
|
return 0
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryFloats(key string, def ...interface{}) []float64 {
|
|
|
|
|
value := r.GetQuery(key, def...)
|
|
|
|
|
if value != nil {
|
|
|
|
|
return gconv.Floats(value)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
2018-10-09 10:05:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryArray(key string, def ...interface{}) []string {
|
|
|
|
|
return r.GetQuery(key, def...)
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryStrings(key string, def ...interface{}) []string {
|
|
|
|
|
return r.GetQuery(key, def...)
|
2018-10-09 10:05:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryInterfaces(key string, def ...interface{}) []interface{} {
|
|
|
|
|
value := r.GetQuery(key, def...)
|
|
|
|
|
if value != nil {
|
|
|
|
|
return gconv.Interfaces(value)
|
|
|
|
|
}
|
|
|
|
|
return nil
|
2018-10-09 10:05:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-29 22:01:29 +08:00
|
|
|
|
// 获取指定键名的关联数组,并且给定当指定键名不存在时的默认值
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryMap(def ...map[string]string) map[string]string {
|
|
|
|
|
r.initGet()
|
|
|
|
|
m := make(map[string]string)
|
|
|
|
|
for k, v := range r.queryVars {
|
|
|
|
|
m[k] = v[0]
|
|
|
|
|
}
|
|
|
|
|
if len(def) > 0 {
|
|
|
|
|
for k, v := range def[0] {
|
|
|
|
|
if _, ok := m[k]; !ok {
|
|
|
|
|
m[k] = v
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return m
|
2018-07-29 22:01:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-12 10:50:03 +08:00
|
|
|
|
// 将所有的get参数映射到struct属性上,参数object应当为一个struct对象的指针, mapping为非必需参数,自定义参数与属性的映射关系
|
2019-06-19 09:06:52 +08:00
|
|
|
|
func (r *Request) GetQueryToStruct(pointer interface{}, mapping ...map[string]string) error {
|
2019-07-04 11:11:41 +08:00
|
|
|
|
tagmap := structs.TagMapName(pointer, paramTagPriority, true)
|
2019-06-19 09:06:52 +08:00
|
|
|
|
if len(mapping) > 0 {
|
|
|
|
|
for k, v := range mapping[0] {
|
|
|
|
|
tagmap[k] = v
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
params := make(map[string]interface{})
|
|
|
|
|
for k, v := range r.GetQueryMap() {
|
|
|
|
|
params[k] = v
|
|
|
|
|
}
|
2019-07-03 22:09:35 +08:00
|
|
|
|
return gconv.StructDeep(params, pointer, tagmap)
|
2019-06-19 09:06:52 +08:00
|
|
|
|
}
|