ceph-csi/e2e/vendor/github.com/emicklei/go-restful/v3
Niels de Vos bec6090996 build: move e2e dependencies into e2e/go.mod
Several packages are only used while running the e2e suite. These
packages are less important to update, as the they can not influence the
final executable that is part of the Ceph-CSI container-image.

By moving these dependencies out of the main Ceph-CSI go.mod, it is
easier to identify if a reported CVE affects Ceph-CSI, or only the
testing (like most of the Kubernetes CVEs).

Signed-off-by: Niels de Vos <ndevos@ibm.com>
2025-03-07 16:05:04 +00:00
..
log build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
.gitignore build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
.goconvey build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
.travis.yml build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
bench_test.sh build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
CHANGES.md build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
compress.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
compressor_cache.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
compressor_pools.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
compressors.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
constants.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
container.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
cors_filter.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
coverage.sh build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
curly_route.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
curly.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
custom_verb.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
doc.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
entity_accessors.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
extensions.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
filter_adapter.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
filter.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
jsr311.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
LICENSE build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
logger.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
Makefile build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
mime.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
options_filter.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
parameter.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
path_expression.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
path_processor.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
README.md build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
request.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
response.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
route_builder.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
route_reader.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
route.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
router.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
SECURITY.md build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
service_error.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
Srcfile build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
web_service_container.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00
web_service.go build: move e2e dependencies into e2e/go.mod 2025-03-07 16:05:04 +00:00

go-restful

package for building REST-style Web Services using Google Go

Go Report Card GoDoc codecov

REST asks developers to use HTTP methods explicitly and in a way that's consistent with the protocol definition. This basic REST design principle establishes a one-to-one mapping between create, read, update, and delete (CRUD) operations and HTTP methods. According to this mapping:

  • GET = Retrieve a representation of a resource
  • POST = Create if you are sending content to the server to create a subordinate of the specified resource collection, using some server-side algorithm.
  • PUT = Create if you are sending the full content of the specified resource (URI).
  • PUT = Update if you are updating the full content of the specified resource.
  • DELETE = Delete if you are requesting the server to delete the resource
  • PATCH = Update partial content of a resource
  • OPTIONS = Get information about the communication options for the request URI

Usage

Without Go Modules

All versions up to v2.*.* (on the master) are not supporting Go modules.

import (
	restful "github.com/emicklei/go-restful"
)

Using Go Modules

As of version v3.0.0 (on the v3 branch), this package supports Go modules.

import (
	restful "github.com/emicklei/go-restful/v3"
)

Example

ws := new(restful.WebService)
ws.
	Path("/users").
	Consumes(restful.MIME_XML, restful.MIME_JSON).
	Produces(restful.MIME_JSON, restful.MIME_XML)

ws.Route(ws.GET("/{user-id}").To(u.findUser).
	Doc("get a user").
	Param(ws.PathParameter("user-id", "identifier of the user").DataType("string")).
	Writes(User{}))		
...
	
func (u UserResource) findUser(request *restful.Request, response *restful.Response) {
	id := request.PathParameter("user-id")
	...
}

Full API of a UserResource

Features

  • Routes for request → function mapping with path parameter (e.g. {id} but also prefix_{var} and {var}_suffix) support
  • Configurable router:
    • (default) Fast routing algorithm that allows static elements, google custom method, regular expressions and dynamic parameters in the URL path (e.g. /resource/name:customVerb, /meetings/{id} or /static/{subpath:*})
    • Routing algorithm after JSR311 that is implemented using (but does not accept) regular expressions
  • Request API for reading structs from JSON/XML and accessing parameters (path,query,header)
  • Response API for writing structs to JSON/XML and setting headers
  • Customizable encoding using EntityReaderWriter registration
  • Filters for intercepting the request → response flow on Service or Route level
  • Request-scoped variables using attributes
  • Containers for WebServices on different HTTP endpoints
  • Content encoding (gzip,deflate) of request and response payloads
  • Automatic responses on OPTIONS (using a filter)
  • Automatic CORS request handling (using a filter)
  • API declaration for Swagger UI (go-restful-openapi)
  • Panic recovery to produce HTTP 500, customizable using RecoverHandler(...)
  • Route errors produce HTTP 404/405/406/415 errors, customizable using ServiceErrorHandler(...)
  • Configurable (trace) logging
  • Customizable gzip/deflate readers and writers using CompressorProvider registration
  • Inject your own http.Handler using the HttpMiddlewareHandlerToFilter function

How to customize

There are several hooks to customize the behavior of the go-restful package.

  • Router algorithm
  • Panic recovery
  • JSON decoder
  • Trace logging
  • Compression
  • Encoders for other serializers
  • Use the package variable TrimRightSlashEnabled (default true) to control the behavior of matching routes that end with a slash /

Resources

Type git shortlog -s for a full list of contributors.

© 2012 - 2023, http://ernestmicklei.com. MIT License. Contributions are welcome.