tree: d05ad7d8805e3f25e58c220cb6f7b1fcd8b008d7 [path history] [tgz]
  1. examples/
  2. log/
  3. .gitignore
  4. .travis.yml
  5. bench_curly_test.go
  6. bench_test.go
  7. bench_test.sh
  8. CHANGES.md
  9. compress.go
  10. compress_test.go
  11. compressor_cache.go
  12. compressor_pools.go
  13. compressors.go
  14. constants.go
  15. container.go
  16. container_test.go
  17. cors_filter.go
  18. cors_filter_test.go
  19. coverage.sh
  20. curly.go
  21. curly_route.go
  22. curly_test.go
  23. doc.go
  24. doc_examples_test.go
  25. entity_accessors.go
  26. entity_accessors_test.go
  27. filter.go
  28. filter_test.go
  29. json.go
  30. jsoniter.go
  31. jsr311.go
  32. jsr311_test.go
  33. LICENSE
  34. logger.go
  35. Makefile
  36. mime.go
  37. mime_test.go
  38. options_filter.go
  39. options_filter_test.go
  40. parameter.go
  41. path_expression.go
  42. path_expression_test.go
  43. path_processor.go
  44. path_processor_test.go
  45. README.md
  46. request.go
  47. request_test.go
  48. response.go
  49. response_test.go
  50. route.go
  51. route_builder.go
  52. route_builder_test.go
  53. route_test.go
  54. router.go
  55. service_error.go
  56. Srcfile
  57. tracer_test.go
  58. web_service.go
  59. web_service_container.go
  60. web_service_test.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 (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.