1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-04 16:50:41 +00:00
Files
norman/api/writer/headers.go

26 lines
652 B
Go
Raw Normal View History

2017-12-29 19:14:24 -07:00
package writer
2017-11-10 21:44:02 -07:00
import (
"github.com/rancher/norman/api/builtin"
"github.com/rancher/norman/types"
)
2017-12-29 19:14:24 -07:00
func AddCommonResponseHeader(apiContext *types.APIContext) error {
2017-11-10 21:44:02 -07:00
addExpires(apiContext)
return addSchemasHeader(apiContext)
}
func addSchemasHeader(apiContext *types.APIContext) error {
schema := apiContext.Schemas.Schema(&builtin.Version, "schema")
if schema == nil {
return nil
}
2017-11-21 13:46:30 -07:00
apiContext.Response.Header().Set("X-Api-Schemas", apiContext.URLBuilder.Collection(schema, apiContext.Version))
2017-11-10 21:44:02 -07:00
return nil
}
func addExpires(apiContext *types.APIContext) {
apiContext.Response.Header().Set("Expires", "Wed 24 Feb 1982 18:42:00 GMT")
}