Documentation ¶
Index ¶
- Constants
- Variables
- func Deprecated(handler context.Handler, options DeprecationOptions) context.Handler
- func GetVersion(ctx context.Context) string
- func If(v string, is string) bool
- func Match(ctx context.Context, expectedVersion string) bool
- func NewMatcher(versions Map) context.Handler
- func RegisterGroups(r router.Party, notFoundHandler context.Handler, groups ...*Group) (actualRoutes []*router.Route)
- type DeprecationOptions
- type Group
- func (g *Group) AllowMethods(methods ...string) *Group
- func (g *Group) Any(registeredPath string, handler context.Handler)
- func (g *Group) Connect(path string, handler context.Handler)
- func (g *Group) Delete(path string, handler context.Handler)
- func (g *Group) Deprecated(options DeprecationOptions) *Group
- func (g *Group) Get(path string, handler context.Handler)
- func (g *Group) Handle(method string, path string, handler context.Handler)
- func (g *Group) Head(path string, handler context.Handler)
- func (g *Group) None(path string, handler context.Handler)
- func (g *Group) Options(path string, handler context.Handler)
- func (g *Group) Patch(path string, handler context.Handler)
- func (g *Group) Post(path string, handler context.Handler)
- func (g *Group) Put(path string, handler context.Handler)
- func (g *Group) Trace(path string, handler context.Handler)
- type Map
Constants ¶
const ( // AcceptVersionHeaderKey is the header key of "Accept-Version". AcceptVersionHeaderKey = "Accept-Version" // AcceptHeaderKey is the header key of "Accept". AcceptHeaderKey = "Accept" // AcceptHeaderVersionValue is the Accept's header value search term the requested version. AcceptHeaderVersionValue = "version" // Key is the context key of the version, can be used to manually modify the "requested" version. // Example of how you can change the default behavior to extract a requested version (which is by headers) // from a "version" url parameter instead: // func(ctx iris.Context) { // &version=1 // ctx.Values().Set(versioning.Key, ctx.URLParamDefault("version", "1")) // ctx.Next() // } Key = "iris.api.version" // for use inside the ctx.Values(), not visible by the user. // NotFound is the key that can be used inside a `Map` or inside `ctx.Values().Set(versioning.Key, versioning.NotFound)` // to tell that a version wasn't found, therefore the not found handler should handle the request instead. NotFound = Key + ".notfound" )
Variables ¶
var DefaultDeprecationOptions = DeprecationOptions{
WarnMessage: "WARNING! You are using a deprecated version of this API.",
}
DefaultDeprecationOptions are the default deprecation options, it defaults the "X-API-Warn" header to a generic message.
var NotFoundHandler = func(ctx context.Context) {
ctx.StatusCode(501)
ctx.WriteString("version not found")
}
NotFoundHandler is the default version not found handler that is executed from `NewMatcher` when no version is registered as available to dispatch a resource.
Functions ¶
func Deprecated ¶
func Deprecated(handler context.Handler, options DeprecationOptions) context.Handler
Deprecated marks a specific handler as a deprecated. Deprecated can be used to tell the clients that a newer version of that specific resource is available instead.
func GetVersion ¶
GetVersion returns the current request version.
By default the `GetVersion` will try to read from: - "Accept" header, i.e Accept: "application/json; version=1.0" - "Accept-Version" header, i.e Accept-Version: "1.0"
However, the end developer can also set a custom version for a handler via a middleware by using the context's store key for versions (see `Key` for further details on that).
func If ¶
If reports whether the "version" is matching to the "is". the "is" can be a constraint like ">= 1, < 3".
func Match ¶
Match acts exactly the same as `If` does but instead it accepts a Context, so it can be called by a handler to determinate the requested version.
func NewMatcher ¶
NewMatcher creates a single handler which decides what handler should be executed based on the requested version.
Use the `NewGroup` if you want to add many routes under a specific version.
See `Map` and `NewGroup` too.
Types ¶
type DeprecationOptions ¶
type DeprecationOptions struct { WarnMessage string DeprecationDate time.Time DeprecationInfo string }
DeprecationOptions describes the deprecation headers key-values. - "X-API-Warn": options.WarnMessage - "X-API-Deprecation-Date": context.FormatTime(ctx, options.DeprecationDate)) - "X-API-Deprecation-Info": options.DeprecationInfo
func (DeprecationOptions) ShouldHandle ¶
func (opts DeprecationOptions) ShouldHandle() bool
ShouldHandle reports whether the deprecation headers should be present or no.
type Group ¶
type Group struct {
// contains filtered or unexported fields
}
Group is a group of version-based routes. One version per one or more routes.
func NewGroup ¶
NewGroup returns a ptr to Group based on the given "version".
See `Handle` and `RegisterGroups` for more.
func (*Group) AllowMethods ¶
AllowMethods can be called before `Handle/Get/Post...` to tell the underline router that all routes should be registered to these "methods" as well.
func (*Group) Any ¶
Any registers a versioned route for ALL of the http methods (Get,Post,Put,Head,Patch,Options,Connect,Delete).
func (*Group) Deprecated ¶
func (g *Group) Deprecated(options DeprecationOptions) *Group
Deprecated marks this group and all its versioned routes as deprecated versions of that endpoint. It can be called in the end just before `RegisterGroups` or first by `NewGroup(...).Deprecated(...)`. It returns itself.
func (*Group) Handle ¶
Handle registers a versioned route to the group. A call of `RegisterGroups` is necessary in order to register the actual routes when the group is complete.
`RegisterGroups` for more.
func (*Group) None ¶
None registers an "offline" versioned route see `context#ExecRoute(routeName)` and routing examples.