add cors middleware

Este commit está contenido en:
Chris Cromer 2023-01-31 23:06:45 -03:00
padre 5fa4d4e78a
commit 2ed4b14cf1
Firmado por: cromer
ID de clave GPG: FA91071797BEEEC2
Se han modificado 2 ficheros con 19 adiciones y 0 borrados

17
backend/middlewares/cors.go Archivo normal
Ver fichero

@ -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")
}
})
}

Ver fichero

@ -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{})