Files
wallet-go-api/pkg/middleware/cors.go
2021-11-07 15:15:45 +01:00

26 lines
729 B
Go

package middleware
import "github.com/gin-gonic/gin"
/*
CORSMiddleware
Add needed headers to make cors functioning.
Args:
*gin.Context: Gin Application Context.
*/
func CORSMiddleware() gin.HandlerFunc {
return func(c *gin.Context) {
c.Writer.Header().Set("Access-Control-Allow-Origin", "*")
c.Writer.Header().Set("Access-Control-Allow-Credentials", "true")
c.Writer.Header().Set("Access-Control-Allow-Headers", "Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With")
c.Writer.Header().Set("Access-Control-Allow-Methods", "POST, OPTIONS, GET, PUT")
if c.Request.Method == "OPTIONS" {
c.AbortWithStatus(204)
return
}
c.Next()
}
}