add cors middleware

This commit is contained in:
Chris Cromer 2023-01-31 23:06:45 -03:00
parent 5fa4d4e78a
commit 2ed4b14cf1
Signed by: cromer
GPG Key ID: FA91071797BEEEC2
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package middlewares
import (
"net/http"
)
func Cors(handler http.Handler) http.Handler {
return http.HandlerFunc(func(writer http.ResponseWriter, request *http.Request) {
origin := request.Header.Get("Origin")
switch origin {
case "http://localhost:5173", "http://localhost", "https://alai.cromer.cl":
writer.Header().Set("Access-Control-Allow-Origin", origin)
writer.Header().Set("Access-Control-Allow-Headers", "Content-Type")
}
})
}

View File

@ -9,6 +9,7 @@ import (
"os/signal"
"syscall"
"git.cromer.cl/Proyecto-Titulo/alai-server/backend/middlewares"
"github.com/gorilla/handlers"
"github.com/julienschmidt/httprouter"
)
@ -26,6 +27,7 @@ func Initialize() *httprouter.Router {
func Serve(router *httprouter.Router) {
newRouter := handlers.CombinedLoggingHandler(os.Stdout, router)
newRouter = handlers.CompressHandler(newRouter)
newRouter = middlewares.Cors(newRouter)
idleConnsClosed := make(chan struct{})