2017-11-20 06:10:04 +01:00
|
|
|
// Copyright 2017 Frédéric Guillot. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package http
|
|
|
|
|
|
|
|
import "io"
|
2017-11-21 02:12:37 +01:00
|
|
|
import "golang.org/x/net/html/charset"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2017-11-21 02:12:37 +01:00
|
|
|
// Response wraps a server response.
|
|
|
|
type Response struct {
|
2017-11-20 06:10:04 +01:00
|
|
|
Body io.Reader
|
|
|
|
StatusCode int
|
|
|
|
EffectiveURL string
|
|
|
|
LastModified string
|
|
|
|
ETag string
|
|
|
|
ContentType string
|
|
|
|
}
|
|
|
|
|
2017-11-21 02:12:37 +01:00
|
|
|
// HasServerFailure returns true if the status code represents a failure.
|
|
|
|
func (r *Response) HasServerFailure() bool {
|
|
|
|
return r.StatusCode >= 400
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2017-11-21 02:12:37 +01:00
|
|
|
// IsModified returns true if the resource has been modified.
|
|
|
|
func (r *Response) IsModified(etag, lastModified string) bool {
|
|
|
|
if r.StatusCode == 304 {
|
2017-11-20 06:10:04 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-11-21 02:12:37 +01:00
|
|
|
if r.ETag != "" && r.LastModified != "" && (r.ETag == etag || r.LastModified == lastModified) {
|
2017-11-20 06:10:04 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
2017-11-21 02:12:37 +01:00
|
|
|
|
|
|
|
// NormalizeBodyEncoding make sure the body is encoded in UTF-8.
|
|
|
|
func (r *Response) NormalizeBodyEncoding() (io.Reader, error) {
|
|
|
|
return charset.NewReader(r.Body, r.ContentType)
|
|
|
|
}
|