mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
3c126fec98
Bumps the github-dependencies group with 3 updates: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go), [github.com/aws/aws-sdk-go-v2/service/sts](https://github.com/aws/aws-sdk-go-v2) and [github.com/kubernetes-csi/external-snapshotter/client/v6](https://github.com/kubernetes-csi/external-snapshotter). Updates `github.com/aws/aws-sdk-go` from 1.45.7 to 1.45.12 - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.45.7...v1.45.12) Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.21.5 to 1.22.0 - [Release notes](https://github.com/aws/aws-sdk-go-v2/releases) - [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.22.0/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-go-v2/compare/service/efs/v1.21.5...service/s3/v1.22.0) Updates `github.com/kubernetes-csi/external-snapshotter/client/v6` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/kubernetes-csi/external-snapshotter/releases) - [Commits](https://github.com/kubernetes-csi/external-snapshotter/compare/v6.2.0...v6.3.0) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies - dependency-name: github.com/aws/aws-sdk-go-v2/service/sts dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/kubernetes-csi/external-snapshotter/client/v6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
134 lines
4.2 KiB
Go
134 lines
4.2 KiB
Go
package restful
|
|
|
|
// Copyright 2013 Ernest Micklei. All rights reserved.
|
|
// Use of this source code is governed by a license
|
|
// that can be found in the LICENSE file.
|
|
|
|
import (
|
|
"compress/zlib"
|
|
"net/http"
|
|
)
|
|
|
|
var defaultRequestContentType string
|
|
|
|
// Request is a wrapper for a http Request that provides convenience methods
|
|
type Request struct {
|
|
Request *http.Request
|
|
pathParameters map[string]string
|
|
attributes map[string]interface{} // for storing request-scoped values
|
|
selectedRoute *Route // is nil when no route was matched
|
|
}
|
|
|
|
func NewRequest(httpRequest *http.Request) *Request {
|
|
return &Request{
|
|
Request: httpRequest,
|
|
pathParameters: map[string]string{},
|
|
attributes: map[string]interface{}{},
|
|
} // empty parameters, attributes
|
|
}
|
|
|
|
// If ContentType is missing or */* is given then fall back to this type, otherwise
|
|
// a "Unable to unmarshal content of type:" response is returned.
|
|
// Valid values are restful.MIME_JSON and restful.MIME_XML
|
|
// Example:
|
|
//
|
|
// restful.DefaultRequestContentType(restful.MIME_JSON)
|
|
func DefaultRequestContentType(mime string) {
|
|
defaultRequestContentType = mime
|
|
}
|
|
|
|
// PathParameter accesses the Path parameter value by its name
|
|
func (r *Request) PathParameter(name string) string {
|
|
return r.pathParameters[name]
|
|
}
|
|
|
|
// PathParameters accesses the Path parameter values
|
|
func (r *Request) PathParameters() map[string]string {
|
|
return r.pathParameters
|
|
}
|
|
|
|
// QueryParameter returns the (first) Query parameter value by its name
|
|
func (r *Request) QueryParameter(name string) string {
|
|
return r.Request.URL.Query().Get(name)
|
|
}
|
|
|
|
// QueryParameters returns the all the query parameters values by name
|
|
func (r *Request) QueryParameters(name string) []string {
|
|
return r.Request.URL.Query()[name]
|
|
}
|
|
|
|
// BodyParameter parses the body of the request (once for typically a POST or a PUT) and returns the value of the given name or an error.
|
|
func (r *Request) BodyParameter(name string) (string, error) {
|
|
err := r.Request.ParseForm()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return r.Request.PostFormValue(name), nil
|
|
}
|
|
|
|
// HeaderParameter returns the HTTP Header value of a Header name or empty if missing
|
|
func (r *Request) HeaderParameter(name string) string {
|
|
return r.Request.Header.Get(name)
|
|
}
|
|
|
|
// ReadEntity checks the Accept header and reads the content into the entityPointer.
|
|
func (r *Request) ReadEntity(entityPointer interface{}) (err error) {
|
|
contentType := r.Request.Header.Get(HEADER_ContentType)
|
|
contentEncoding := r.Request.Header.Get(HEADER_ContentEncoding)
|
|
|
|
// check if the request body needs decompression
|
|
if ENCODING_GZIP == contentEncoding {
|
|
gzipReader := currentCompressorProvider.AcquireGzipReader()
|
|
defer currentCompressorProvider.ReleaseGzipReader(gzipReader)
|
|
gzipReader.Reset(r.Request.Body)
|
|
r.Request.Body = gzipReader
|
|
} else if ENCODING_DEFLATE == contentEncoding {
|
|
zlibReader, err := zlib.NewReader(r.Request.Body)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
r.Request.Body = zlibReader
|
|
}
|
|
|
|
// lookup the EntityReader, use defaultRequestContentType if needed and provided
|
|
entityReader, ok := entityAccessRegistry.accessorAt(contentType)
|
|
if !ok {
|
|
if len(defaultRequestContentType) != 0 {
|
|
entityReader, ok = entityAccessRegistry.accessorAt(defaultRequestContentType)
|
|
}
|
|
if !ok {
|
|
return NewError(http.StatusBadRequest, "Unable to unmarshal content of type:"+contentType)
|
|
}
|
|
}
|
|
return entityReader.Read(r, entityPointer)
|
|
}
|
|
|
|
// SetAttribute adds or replaces the attribute with the given value.
|
|
func (r *Request) SetAttribute(name string, value interface{}) {
|
|
r.attributes[name] = value
|
|
}
|
|
|
|
// Attribute returns the value associated to the given name. Returns nil if absent.
|
|
func (r Request) Attribute(name string) interface{} {
|
|
return r.attributes[name]
|
|
}
|
|
|
|
// SelectedRoutePath root path + route path that matched the request, e.g. /meetings/{id}/attendees
|
|
// If no route was matched then return an empty string.
|
|
func (r Request) SelectedRoutePath() string {
|
|
if r.selectedRoute == nil {
|
|
return ""
|
|
}
|
|
// skip creating an accessor
|
|
return r.selectedRoute.Path
|
|
}
|
|
|
|
// SelectedRoute returns a reader to access the selected Route by the container
|
|
// Returns nil if no route was matched.
|
|
func (r Request) SelectedRoute() RouteReader {
|
|
if r.selectedRoute == nil {
|
|
return nil
|
|
}
|
|
return routeAccessor{route: r.selectedRoute}
|
|
}
|