containerd/vendor/github.com/emicklei/go-restful
Lantao Liu 5a68bd70c8 Update kubernetes to 1.16.0-rc.2
Signed-off-by: Lantao Liu <lantaol@google.com>
2019-09-18 17:21:37 -07:00
..
log Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
compress.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
compressor_cache.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
compressor_pools.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
compressors.go Use tagged versions for dependencies where possible 2018-08-22 15:31:25 +02:00
constants.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
container.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
cors_filter.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
curly_route.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
curly.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
doc.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
entity_accessors.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
filter.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
json.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
jsoniter.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
jsr311.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
LICENSE Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
logger.go Use tagged versions for dependencies where possible 2018-08-22 15:31:25 +02:00
mime.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
options_filter.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
parameter.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
path_expression.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
path_processor.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
README.md Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
request.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
response.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
route_builder.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
route.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
router.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00
service_error.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
web_service_container.go Vendor kubernetes streaming server 2017-08-07 19:05:16 +00:00
web_service.go Update kubernetes to 1.16.0-rc.2 2019-09-18 17:21:37 -07:00

go-restful

package for building REST-style Web Services using Google Go

Build Status Go Report Card GoDoc

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

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}) support
  • Configurable router:
    • (default) Fast routing algorithm that allows static elements, regular expressions and dynamic parameters in the URL path (e.g. /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 accesing 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, see go-restful-swagger12)
  • 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

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 jsoniter by build this package using a tag, e.g. go build -tags=jsoniter .

TODO: write examples of these.

Resources

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

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