Documentation
¶
Overview ¶
A basic REST server supporting HTTP.
This package implements a HTTP server using net/http and github.com/gorilla/mux taking away most of the required boiler plate code usually needed when implementing basic REST services. It also provides many utility methods for handling both JSON and XML responses.
A basic REST server supporting HTTP.
This package implements a HTTP server using net/http and github.com/gorilla/mux taking away most of the required boiler plate code usually needed when implementing basic REST services. It also provides many utility methods for handling both JSON and XML responses.
Package rest A basic REST server supporting HTTP.
This package implements a HTTP server using net/http and github.com/gorilla/mux taking away most of the required boiler plate code usually needed when implementing basic REST services. It also provides many utility methods for handling both JSON and XML responses.
Index ¶
- Constants
- func ConsoleLogger() mux.MiddlewareFunc
- func DefaultIDGenerator() (string, error)
- func FormatLogger(f FormatLoggerFunc) mux.MiddlewareFunc
- func Handler(f func(*Rest) error) func(w http.ResponseWriter, r *http.Request)
- func LogLogger(l *log.Logger) mux.MiddlewareFunc
- func RequestID(nextRequestID IdGenerator) mux.MiddlewareFunc
- func TraceRequest(header string, nextRequestID IdGenerator) mux.MiddlewareFunc
- type AddHeadersDecorator
- type FormatLoggerFunc
- type IdGenerator
- type Rest
- func (r *Rest) AccessControlAllowOrigin(value string) *Rest
- func (r *Rest) AddHeader(name string, value string) *Rest
- func (r *Rest) Body(v interface{}) error
- func (r *Rest) BodyReader() (io.ReadCloser, error)
- func (r *Rest) CacheControl(cache int) *Rest
- func (r *Rest) CacheMaxAge(age int) *Rest
- func (r *Rest) CacheNoCache() *Rest
- func (r *Rest) ContentType(c string) *Rest
- func (r *Rest) Context() string
- func (r *Rest) Etag(tag string) *Rest
- func (r *Rest) GetAttribute(name string) (interface{}, bool)
- func (r *Rest) GetHeader(name string) string
- func (r *Rest) HTML() *Rest
- func (r *Rest) JSON() *Rest
- func (r *Rest) Push(target string, opts *http.PushOptions) error
- func (r *Rest) PushSupported() bool
- func (r *Rest) Reader(rdr io.Reader) *Rest
- func (r *Rest) Request() *http.Request
- func (r *Rest) Self(path string) string
- func (r *Rest) SelfRequest() string
- func (r *Rest) Send() error
- func (r *Rest) SetAttribute(n string, v interface{})
- func (r *Rest) SetDate(name string, t int64) *Rest
- func (r *Rest) SetUnixDate(t int64) *Rest
- func (r *Rest) Status(status int) *Rest
- func (r *Rest) Value(value interface{}) *Rest
- func (r *Rest) Var(name string) string
- func (r *Rest) VarInt(name string, def int) int
- func (r *Rest) Writer() io.Writer
- func (r *Rest) XML() *Rest
- type RestBuilder
- func (r *RestBuilder) Authenticator(f RestDecorator) *RestBuilder
- func (r *RestBuilder) Build() *RestBuilder
- func (r *RestBuilder) Decorate(f RestDecorator) *RestBuilder
- func (r *RestBuilder) Handler(f RestHandler) *RestBuilder
- func (r *RestBuilder) Headers(s ...string) *RestBuilder
- func (r *RestBuilder) HeadersRegexp(s ...string) *RestBuilder
- func (r *RestBuilder) Method(s ...string) *RestBuilder
- func (r *RestBuilder) Path(s ...string) *RestBuilder
- func (r *RestBuilder) PathPrefix(pathPrefix string) *RestBuilder
- func (r *RestBuilder) Queries(s ...string) *RestBuilder
- func (r *RestBuilder) Reset() *RestBuilder
- type RestDecorator
- type RestHandler
- type Server
- func (s *Server) Do(path string, f func(ctx context.Context) error) *mux.Route
- func (s *Server) Get(name string) *mux.Route
- func (s *Server) Handle(path string, f func(*Rest) error) *mux.Route
- func (s *Server) HandleFunc(path string, f func(http.ResponseWriter, *http.Request)) *mux.Route
- func (s *Server) Init(_ *kernel.Kernel) error
- func (s *Server) NotFound(f func(*Rest) error)
- func (s *Server) PostInit() error
- func (s *Server) RestBuilder() *RestBuilder
- func (s *Server) Run() error
- func (s *Server) Static(prefix, dir string)
- func (s *Server) Use(handler mux.MiddlewareFunc)
- type ServerContext
- type StatusCodeResponseWriter
Constants ¶
Variables ¶
This section is empty.
Functions ¶
func ConsoleLogger ¶
func ConsoleLogger() mux.MiddlewareFunc
ConsoleLogger returns a middleware function to log requests to the console
func DefaultIDGenerator ¶
Default ID generator, Generates a UUID
func FormatLogger ¶
func FormatLogger(f FormatLoggerFunc) mux.MiddlewareFunc
FormatLogger returns a middleware function to log requests to a function. Note: The format passed to this function will not have a trailing "\n" nor will it have any time information in it.
func LogLogger ¶
func LogLogger(l *log.Logger) mux.MiddlewareFunc
LogLogger returns a middleware function to log requests to a specific logger
func RequestID ¶
func RequestID(nextRequestID IdGenerator) mux.MiddlewareFunc
RequestID adds request tracing by adding the "X-Request-Id" header to the response
func TraceRequest ¶
func TraceRequest(header string, nextRequestID IdGenerator) mux.MiddlewareFunc
TraceRequest adds a request tracking header, similar to X-Request-ID or X-Amz-Request-Id used by AmazonS3.
header the Header name nextRequestID function to generate the new id
Types ¶
type AddHeadersDecorator ¶
AddHeadersDecorator is a decorator which ensures that the given headers are always present in a response that has not returned an error.
Here's an example on ensuring certain headers are always present:
Decorate( (&rest.AddHeadersDecorator{ "Access-Control-Allow-Origin": "*", "X-Clacks-Overhead": "GNU Terry Pratchett", }).Decorator )
func (*AddHeadersDecorator) Decorator ¶
func (a *AddHeadersDecorator) Decorator(h RestHandler) RestHandler
type FormatLoggerFunc ¶
type FormatLoggerFunc func(string, ...interface{})
type Rest ¶
type Rest struct {
// contains filtered or unexported fields
}
A Rest query. This struct handles everything from the inbound request and sending the response
func NewRest ¶
func NewRest(writer http.ResponseWriter, request *http.Request) *Rest
NewRest creates a new Rest query
func (*Rest) AccessControlAllowOrigin ¶
func (*Rest) Body ¶
Body decodes the request body into an interface. If the body is compressed with Content-Encoding header set to "gzip" then the body is decoded first. If the Content-Type is "text/xml" or "application/xml" then the body is presumed to be in XML, otherwise json is presumed.
func (*Rest) BodyReader ¶
func (r *Rest) BodyReader() (io.ReadCloser, error)
BodyReader() returns Request().Body unless the Content-Encoding header is set to gzip in which case the body is decompressed before calling the reader
func (*Rest) CacheControl ¶
CacheControl manages the Cache-Control header in the response. cache < 0 for "no cache", cache = 0 to ignore (i.e. dont set the header) cache > 0 Time in seconds for the client to cache the response
func (*Rest) CacheMaxAge ¶
func (*Rest) CacheNoCache ¶
func (*Rest) GetAttribute ¶
GetAttribute returns the named request attribute
func (*Rest) Push ¶
func (r *Rest) Push(target string, opts *http.PushOptions) error
Push initiates an HTTP/2 server push. This constructs a synthetic request using the given target and options, serializes that request into a PUSH_PROMISE frame, then dispatches that request using the server's request handler. If opts is nil, default options are used.
The target must either be an absolute path (like "/path") or an absolute URL that contains a valid host and the same scheme as the parent request. If the target is a path, it will inherit the scheme and host of the parent request.
The HTTP/2 spec disallows recursive pushes and cross-authority pushes. Push may or may not detect these invalid pushes; however, invalid pushes will be detected and canceled by conforming clients.
Handlers that wish to push URL X should call Push before sending any data that may trigger a request for URL X. This avoids a race where the client issues requests for X before receiving the PUSH_PROMISE for X.
Push returns ErrNotSupported if the client has disabled push or if push is not supported on the underlying connection.
func (*Rest) PushSupported ¶
PushSupported returns true if http2 Push is supported
func (*Rest) Self ¶
Self returns the full request uri based on the headers of the request and the supplied path.
func (*Rest) SelfRequest ¶
SelfRequest returns the full request uri based on the headers of the request and the RequestURI
func (*Rest) Send ¶
Send returns data to the client. If the request has the Accept header of "text/xml" or "application/xml" then the response will be in XML, otherwise in JSON.
func (*Rest) SetAttribute ¶
SetAttribute returns the named request attribute
func (*Rest) SetUnixDate ¶
SetUnixDate Sets Date header to a unix timestamp
type RestBuilder ¶
type RestBuilder struct {
// contains filtered or unexported fields
}
RestBuilder allows for a Rest endpoint to be built
func (*RestBuilder) Authenticator ¶
func (r *RestBuilder) Authenticator(f RestDecorator) *RestBuilder
Authenticator is a RestDecorator which is specific to the current endpoint being built. It's called Authenticator as it's usually used for authentication but it can be used for other purposes.
func (*RestBuilder) Decorate ¶
func (r *RestBuilder) Decorate(f RestDecorator) *RestBuilder
Decorate will invoke a RestDecorator against the RestHandler set by Handler() to decorate it. This is usually used to add error handling, ensuring certain headers are in the response etc. Note: This decorator will be used by all endpoints built by this instance of the builder. To apply a decorator on a single endpoint use Authenticator()
func (*RestBuilder) Handler ¶
func (r *RestBuilder) Handler(f RestHandler) *RestBuilder
Handler sets the RestHandler to use for this endpoint
func (*RestBuilder) Headers ¶
func (r *RestBuilder) Headers(s ...string) *RestBuilder
Headers adds a matcher for request header values. It accepts a sequence of key/value pairs to be matched. For example:
r := server.RestBuilder() r.Headers("Content-Type", "application/json", "X-Requested-With", "XMLHttpRequest")
The above route will only match if both request header values match. If the value is an empty string, it will match any value if the key is set.
func (*RestBuilder) HeadersRegexp ¶
func (r *RestBuilder) HeadersRegexp(s ...string) *RestBuilder
HeadersRegexp accepts a sequence of key/value pairs, where the value has regex support. For example:
r := server.RestBuilder() r.HeadersRegexp("Content-Type", "application/(text|json)", "X-Requested-With", "XMLHttpRequest")
The above route will only match if both the request header matches both regular expressions. If the value is an empty string, it will match any value if the key is set. Use the start and end of string anchors (^ and $) to match an exact value.
func (*RestBuilder) Method ¶
func (r *RestBuilder) Method(s ...string) *RestBuilder
Method sets the HTTP Method this endpoint is to use
func (*RestBuilder) Path ¶
func (r *RestBuilder) Path(s ...string) *RestBuilder
Pattern adds a path to the end point being built. You can provide multiple patterns for the call being built
func (*RestBuilder) PathPrefix ¶
func (r *RestBuilder) PathPrefix(pathPrefix string) *RestBuilder
PathPrefix is the common prefix that will be prepended to all endpoints in this builder.
It's preferable if a group of endpoints share the same contant prefix, e.g. "/api" to use this not just to save typing the same prefix as this will improve performance during matching.
Any trailing "/" are removed.
If the prefix does not start with a "/" then one is prepended.
"" or "/" are treated as no prefix.
func (*RestBuilder) Queries ¶
func (r *RestBuilder) Queries(s ...string) *RestBuilder
Queries adds a matcher for URL query values. It accepts a sequence of key/value pairs. Values may define variables. For example:
r := server.RestBuilder() r.Queries("foo", "bar", "id", "{id:[0-9]+}")
The above route will only match if the URL contains the defined queries values, e.g.: ?foo=bar&id=42.
It the value is an empty string, it will match any value if the key is set.
Variables can define an optional regexp pattern to be matched:
- {name} matches anything until the next slash.
- {name:pattern} matches the given regexp pattern.
func (*RestBuilder) Reset ¶
func (r *RestBuilder) Reset() *RestBuilder
Reset() resets the builder so only the common entries are used in the next Build(), e.g. Decorator()'s' and PathPrefix() are affected by this.
Note, Build() call this so it's not normally required
type RestDecorator ¶
type RestDecorator func(RestHandler) RestHandler
A decorator decorating a RestHandler
type Server ¶
type Server struct { Headers []string // The permitted headers Origins []string // The permitted Origins Methods []string // The permitted methods Address string // Address to bind to, "" for any NoFlags bool // true to disable command line flags Port int // Port to listen to // contains filtered or unexported fields }
Server The internal config of a Server
func (*Server) Get ¶
Get returns a named route. You can name a Route by calling Name(name string) against the route returned by either Handle or HandleFunc
func (*Server) Handle ¶
Handle registers a new route with a matcher for the URL path. Unlike HandleFunc() this accepts a func that just takes a Rest instance. If the returned error is not nil then a 500 response is issued otherwise the response is sent unless Rest.Send() has already been called.
func (*Server) HandleFunc ¶
HandleFunc registers a new route with a matcher for the URL path
func (*Server) RestBuilder ¶
func (s *Server) RestBuilder() *RestBuilder
Begin building rest endpoints on a server
func (*Server) Static ¶
Static adds a static file service at a specific prefix. prefix is the prefix to serve from, e.g. "/static/" dir is the directory to serve static content from
func (*Server) Use ¶
func (s *Server) Use(handler mux.MiddlewareFunc)
Use adds a MiddlewareHandler to the server. E.g. server.Use( ConsoleLogger )
type ServerContext ¶
type ServerContext struct {
// contains filtered or unexported fields
}
func (*ServerContext) Context ¶
func (c *ServerContext) Context(context string) *ServerContext
Context creates a new ServerContext based on the current instance. The new Context will be the existing one suffixed with the new one. This allows for further grouping of rest services.
func (*ServerContext) Get ¶
func (c *ServerContext) Get(name string) *mux.Route
Get returns a named route. You can name a Route by calling Name(name string) against the route returned by either Handle or HandleFunc
func (*ServerContext) Handle ¶
Handle registers a new route with a matcher for the URL path based on the underlying ServerContext.
func (*ServerContext) HandleFunc ¶
func (c *ServerContext) HandleFunc(path string, f func(http.ResponseWriter, *http.Request)) *mux.Route
HandleFunc registers a new route with a matcher for the URL path
type StatusCodeResponseWriter ¶
type StatusCodeResponseWriter struct { http.ResponseWriter // contains filtered or unexported fields }
StatusCodeResponseWriter is an implementation of http.ResponseWriter which can be used to obtain the response status code.
Example:
func handler(w http.ResponseWriter, r *http.Request) { rw := &StatusCodeResponseWriter{} ServeHTTP( rw.Wrap( w ), r ) statusCode := rw.GetStatus() }
The Wrap() function returns a http.ResponseWriter with supports the http.Flusher or http.Pusher interfaces if the one being wrapped supports it.
func (*StatusCodeResponseWriter) GetStatus ¶
func (rw *StatusCodeResponseWriter) GetStatus() int
GetStatus returns the staus code of the response
func (*StatusCodeResponseWriter) Wrap ¶
func (with *StatusCodeResponseWriter) Wrap(wrap http.ResponseWriter) http.ResponseWriter
Wrap wraps an existing http.ResponseWriter to our instance. If the wrapped instance implements the http.Flusher or http.Pusher interfaces then the returned instance also supports it.
func (*StatusCodeResponseWriter) WriteHeader ¶
func (rw *StatusCodeResponseWriter) WriteHeader(code int)