mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
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)
|
||
|
}
|
||
|
}
|
||
|
}
|