sample-controller/vendor/github.com/emicklei/go-restful
Kubernetes Publisher ec723b2112 Merge pull request #52753 from munnerz/sample-controller
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.

sample-controller: add example CRD controller

**What this PR does / why we need it**:

Adds a sample-controller example repository

fixes #52752

**Special notes for your reviewer**:

This is currently based on the sttts:sttts-codegen-scripts branch and should not be merged until that is (ref https://github.com/kubernetes/kubernetes/pull/52186)

**Release note**:

```
Add sample-controller repository
```

/cc @sttts @nikhita @colemickens

Kubernetes-commit: 9a7800f7d2efb88b397674672ac56f898826cf7c
2017-10-26 12:35:59 +00:00
..
log Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
.gitignore Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
.travis.yml Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
bench_test.sh Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
CHANGES.md Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
compress.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
compressor_cache.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
compressor_pools.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
compressors.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
constants.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
container.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
cors_filter.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
coverage.sh Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
curly_route.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
curly.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
doc.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
entity_accessors.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
filter.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
jsr311.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
LICENSE Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
logger.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
Makefile Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
mime.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
options_filter.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
parameter.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
path_expression.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
README.md Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
request.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
response.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
route_builder.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
route.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
router.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
service_error.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
Srcfile Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
web_service_container.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00:00
web_service.go Merge pull request #52753 from munnerz/sample-controller 2017-10-26 12:35:59 +00: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 (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.