mirror of
https://github.com/kataras/iris.git
synced 2025-02-02 15:30:36 +01:00
b22a18da6b
Former-commit-id: ade66610125f06a0b5ce3e90bcafe349f216a616
37 lines
848 B
Go
37 lines
848 B
Go
package versioning
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/kataras/iris/context"
|
|
)
|
|
|
|
type DeprecationOptions struct {
|
|
WarnMessage string
|
|
DeprecationDate time.Time
|
|
DeprecationInfo string
|
|
}
|
|
|
|
var DefaultDeprecationOptions = DeprecationOptions{
|
|
WarnMessage: "WARNING! You are using a deprecated version of this API.",
|
|
}
|
|
|
|
func Deprecated(handler context.Handler, options DeprecationOptions) context.Handler {
|
|
if options.WarnMessage == "" {
|
|
options.WarnMessage = DefaultDeprecationOptions.WarnMessage
|
|
}
|
|
|
|
return func(ctx context.Context) {
|
|
handler(ctx)
|
|
ctx.Header("X-API-Warn", options.WarnMessage)
|
|
|
|
if !options.DeprecationDate.IsZero() {
|
|
ctx.Header("X-API-Deprecation-Date", context.FormatTime(ctx, options.DeprecationDate))
|
|
}
|
|
|
|
if options.DeprecationInfo != "" {
|
|
ctx.Header("X-API-Deprecation-Info", options.DeprecationInfo)
|
|
}
|
|
}
|
|
}
|