You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/utils/goheader/goheader.go

49 lines
756 B

package goheader
import (
"encoding/json"
"net/url"
"strconv"
)
type Headers map[string]interface{}
func NewHeaders() Headers {
P := make(Headers)
return P
}
func (p Headers) Set(key string, value interface{}) {
p[key] = value
}
func (p Headers) SetHeaders(headers Headers) {
for key, value := range headers {
p[key] = value
}
}
func (p Headers) GetQuery() string {
u := url.Values{}
for k, v := range p {
u.Set(k, GetHeadersString(v))
}
return u.Encode()
}
func GetHeadersString(i interface{}) string {
switch v := i.(type) {
case string:
return v
case []byte:
return string(v)
case int:
return strconv.Itoa(v)
case bool:
return strconv.FormatBool(v)
default:
bytes, _ := json.Marshal(v)
return string(bytes)
}
}