2015-09-30 01:21:17 +00:00
|
|
|
package header
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2016-03-30 07:48:47 +00:00
|
|
|
"github.com/drone/drone/version"
|
2015-09-30 01:21:17 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
2015-10-13 09:08:08 +00:00
|
|
|
// NoCache is a middleware function that appends headers
|
|
|
|
// to prevent the client from caching the HTTP response.
|
|
|
|
func NoCache(c *gin.Context) {
|
|
|
|
c.Header("Cache-Control", "no-cache, no-store, max-age=0, must-revalidate, value")
|
|
|
|
c.Header("Expires", "Thu, 01 Jan 1970 00:00:00 GMT")
|
|
|
|
c.Header("Last-Modified", time.Now().UTC().Format(http.TimeFormat))
|
|
|
|
c.Next()
|
|
|
|
}
|
2015-09-30 01:21:17 +00:00
|
|
|
|
2015-10-13 09:08:08 +00:00
|
|
|
// Options is a middleware function that appends headers
|
|
|
|
// for options requests and aborts then exits the middleware
|
|
|
|
// chain and ends the request.
|
|
|
|
func Options(c *gin.Context) {
|
|
|
|
if c.Request.Method != "OPTIONS" {
|
|
|
|
c.Next()
|
|
|
|
} else {
|
2016-02-05 21:04:46 +00:00
|
|
|
c.Header("Access-Control-Allow-Origin", "*")
|
2015-10-13 09:08:08 +00:00
|
|
|
c.Header("Access-Control-Allow-Methods", "GET,POST,PUT,PATCH,DELETE,OPTIONS")
|
2016-02-05 21:39:11 +00:00
|
|
|
c.Header("Access-Control-Allow-Headers", "authorization, origin, content-type, accept")
|
2015-10-13 09:08:08 +00:00
|
|
|
c.Header("Allow", "HEAD,GET,POST,PUT,PATCH,DELETE,OPTIONS")
|
|
|
|
c.Header("Content-Type", "application/json")
|
|
|
|
c.AbortWithStatus(200)
|
|
|
|
}
|
|
|
|
}
|
2015-09-30 01:21:17 +00:00
|
|
|
|
2015-10-13 09:08:08 +00:00
|
|
|
// Secure is a middleware function that appends security
|
|
|
|
// and resource access headers.
|
|
|
|
func Secure(c *gin.Context) {
|
|
|
|
c.Header("Access-Control-Allow-Origin", "*")
|
|
|
|
c.Header("X-Frame-Options", "DENY")
|
|
|
|
c.Header("X-Content-Type-Options", "nosniff")
|
|
|
|
c.Header("X-XSS-Protection", "1; mode=block")
|
|
|
|
if c.Request.TLS != nil {
|
|
|
|
c.Header("Strict-Transport-Security", "max-age=31536000")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Also consider adding Content-Security-Policy headers
|
|
|
|
// c.Header("Content-Security-Policy", "script-src 'self' https://cdnjs.cloudflare.com")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Version is a middleware function that appends the Drone
|
|
|
|
// version information to the HTTP response. This is intended
|
|
|
|
// for debugging and troubleshooting.
|
2016-03-30 07:48:47 +00:00
|
|
|
func Version(c *gin.Context) {
|
2017-04-12 11:04:39 +00:00
|
|
|
c.Header("X-DRONE-VERSION", version.Version.String())
|
2016-03-30 07:48:47 +00:00
|
|
|
c.Next()
|
2015-09-30 01:21:17 +00:00
|
|
|
}
|