aboutsummaryrefslogtreecommitdiff
path: root/request.go
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@sap.com>2022-10-26 11:31:22 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2022-10-26 14:05:42 +0200
commit04ce17415f25dbf10eba954212c8428ae630df88 (patch)
tree1aca7ceab052f17a44bb903fb5a8bd45202bd54c /request.go
parentfd6e57b6239655722884a49a86be0f051cc32bde (diff)
downloadgo-schwift-04ce17415f25dbf10eba954212c8428ae630df88.tar.gz
Format with go 1.19
Diffstat (limited to 'request.go')
-rw-r--r--request.go17
1 files changed, 8 insertions, 9 deletions
diff --git a/request.go b/request.go
index 266bee2..b789161 100644
--- a/request.go
+++ b/request.go
@@ -27,18 +27,17 @@ import (
"strings"
)
-//RequestOptions is used to pass additional headers and values to a request.
+// RequestOptions is used to pass additional headers and values to a request.
//
-//When preparing a RequestOptions instance with additional headers, the
-//preferred way is to create an AccountHeaders, ContainerHeaders and
-//ObjectHeaders instance and use the type-safe API on these types. Then use the
-//ToOpts() method on that instance. For example:
+// When preparing a RequestOptions instance with additional headers, the
+// preferred way is to create an AccountHeaders, ContainerHeaders and
+// ObjectHeaders instance and use the type-safe API on these types. Then use the
+// ToOpts() method on that instance. For example:
//
// hdr := NewObjectHeaders()
// hdr.ContentType().Set("image/png")
// hdr.Metadata().Set("color", "blue")
// opts := hdr.ToOpts() //type *schwift.RequestOptions
-//
type RequestOptions struct {
Headers Headers
Values url.Values
@@ -65,7 +64,7 @@ func cloneRequestOptions(orig *RequestOptions, additional Headers) *RequestOptio
return &result
}
-//Request contains the parameters that can be set in a request to the Swift API.
+// Request contains the parameters that can be set in a request to the Swift API.
type Request struct {
Method string //"GET", "HEAD", "PUT", "POST" or "DELETE"
ContainerName string //empty for requests on accounts
@@ -80,7 +79,7 @@ type Request struct {
DrainResponseBody bool
}
-//URL returns the full URL for this request.
+// URL returns the full URL for this request.
func (r Request) URL(backend Backend, values url.Values) (string, error) {
uri, err := url.Parse(backend.EndpointURL())
if err != nil {
@@ -107,7 +106,7 @@ func (r Request) URL(backend Backend, values url.Values) (string, error) {
return uri.String(), nil
}
-//Do executes this request on the given Backend.
+// Do executes this request on the given Backend.
func (r Request) Do(backend Backend) (*http.Response, error) {
//build URL
var values url.Values