mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Darren Shepherd
fa08d6076c
|
6 years ago | |
---|---|---|
.. | ||
log | 6 years ago | |
.gitignore | 6 years ago | |
.travis.yml | 6 years ago | |
CHANGES.md | 6 years ago | |
LICENSE | 6 years ago | |
Makefile | 6 years ago | |
README.md | 6 years ago | |
Srcfile | 6 years ago | |
bench_test.sh | 6 years ago | |
compress.go | 6 years ago | |
compressor_cache.go | 6 years ago | |
compressor_pools.go | 6 years ago | |
compressors.go | 6 years ago | |
constants.go | 6 years ago | |
container.go | 6 years ago | |
cors_filter.go | 6 years ago | |
coverage.sh | 6 years ago | |
curly.go | 6 years ago | |
curly_route.go | 6 years ago | |
doc.go | 6 years ago | |
entity_accessors.go | 6 years ago | |
filter.go | 6 years ago | |
jsr311.go | 6 years ago | |
logger.go | 6 years ago | |
mime.go | 6 years ago | |
options_filter.go | 6 years ago | |
parameter.go | 6 years ago | |
path_expression.go | 6 years ago | |
request.go | 6 years ago | |
response.go | 6 years ago | |
route.go | 6 years ago | |
route_builder.go | 6 years ago | |
router.go | 6 years ago | |
service_error.go | 6 years ago | |
web_service.go | 6 years ago | |
web_service_container.go | 6 years ago |
README.md
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")
...
}
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
- Example posted on blog
- Design explained on blog
- sourcegraph
- showcase: Zazkia - tcp proxy for testing resiliency
- showcase: Mora - MongoDB REST Api server
Type git shortlog -s
for a full list of contributors.
© 2012 - 2017, http://ernestmicklei.com. MIT License. Contributions are welcome.