Merge pull request #42 from gfleury/AddingMissingParams

Adding missing params
This commit is contained in:
George Fleury 2020-03-05 16:29:28 -03:00 committed by GitHub
commit 9ff1cfab79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 942 additions and 631 deletions

View File

@ -6,4 +6,5 @@ install:
script:
- go test
- go build -v ./
- go get -u github.com/golangci/golangci-lint/cmd/golangci-lint && golangci-lint run -v

View File

@ -95,7 +95,7 @@ func selectHeaderAccept(accepts []string) string {
// contains is a case insenstive match, finding needle in a haystack
func contains(haystack []string, needle string) bool {
for _, a := range haystack {
if strings.ToLower(a) == strings.ToLower(needle) {
if strings.EqualFold(a, needle) {
return true
}
}
@ -191,7 +191,10 @@ func (c *APIClient) prepareRequest(
return nil, err
}
} else { // form value
w.WriteField(k, iv)
err = w.WriteField(k, iv)
if err != nil {
return nil, err
}
}
}
}
@ -331,7 +334,7 @@ func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffer, err e
} else if jsonCheck.MatchString(contentType) {
err = json.NewEncoder(bodyBuf).Encode(body)
} else if xmlCheck.MatchString(contentType) {
xml.NewEncoder(bodyBuf).Encode(body)
err = xml.NewEncoder(bodyBuf).Encode(body)
}
if err != nil {
@ -401,8 +404,9 @@ func CacheExpires(r *http.Response) time.Time {
lifetime, err := time.ParseDuration(maxAge + "s")
if err != nil {
expires = now
} else {
expires = now.Add(lifetime)
}
expires = now.Add(lifetime)
} else {
expiresHeader := r.Header.Get("Expires")
if expiresHeader != "" {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff