tree: 971501172b70f59765c69ab7f6a8dce8bfb3db05 [path history] [tgz]
  1. log/
  2. .gitignore
  3. .travis.yml
  4. bench_test.sh
  5. CHANGES.md
  6. compress.go
  7. compressor_cache.go
  8. compressor_pools.go
  9. compressors.go
  10. constants.go
  11. container.go
  12. cors_filter.go
  13. coverage.sh
  14. curly.go
  15. curly_route.go
  16. doc.go
  17. entity_accessors.go
  18. filter.go
  19. jsr311.go
  20. LICENSE
  21. logger.go
  22. Makefile
  23. mime.go
  24. options_filter.go
  25. parameter.go
  26. path_expression.go
  27. README.md
  28. request.go
  29. response.go
  30. route.go
  31. route_builder.go
  32. router.go
  33. service_error.go
  34. Srcfile
  35. web_service.go
  36. web_service_container.go
vendor/github.com/emicklei/go-restful/README.md

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 (see go-restful-swagger12,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

Resources

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

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