multus-cni/vendor/github.com/emicklei/go-restful
2017-06-29 17:15:54 +01:00
..
examples adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
log adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
swagger adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
.gitignore adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
bench_curly_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
bench_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
bench_test.sh adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
CHANGES.md adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
compress_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
compress.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
compressor_cache.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
compressor_pools.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
compressors.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
constants.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
container_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
container.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
cors_filter_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
cors_filter.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
coverage.sh adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
curly_route.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
curly_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
curly.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
doc_examples_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
doc.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
entity_accessors_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
entity_accessors.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
filter_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
filter.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
install.sh adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
jsr311_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
jsr311.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
LICENSE adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
logger.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
mime_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
mime.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
options_filter_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
options_filter.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
parameter.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
path_expression_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
path_expression.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
README.md adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
request_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
request.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
response_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
response.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
route_builder_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
route_builder.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
route_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
route.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
router.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
service_error.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
Srcfile adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
tracer_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
web_service_container.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
web_service_test.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00
web_service.go adding the glide Vendor Package Management support 2017-06-29 17:15:54 +01:00

go-restful

package for building REST-style Web Services using Google Go

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:
    • Routing algorithm after JSR311 that is implemented using (but does not accept) regular expressions (See RouterJSR311 which is used by default)
    • Fast routing algorithm that allows static elements, regular expressions and dynamic parameters in the URL path (e.g. /meetings/{id} or /static/{subpath:*}, See CurlyRouter)
  • 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
  • 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 (see swagger package)
  • 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 encoding using EntityReaderWriter registration
  • Customizable gzip/deflate readers and writers using CompressorProvider registration

Resources

Build Status

(c) 2012 - 2015, http://ernestmicklei.com. MIT License

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