Browse Source

feature: adding cors

Klaas, Wilfried 4 years ago
parent
commit
1337dee350

+ 58 - 17
schematic-service-go/cmd/service.go

@@ -71,11 +71,39 @@ func init() {
 	flag.StringVarP(&effectImportPath, "effect", "e", "", "effect import data from here")
 }
 
+func Cors(next http.Handler) http.Handler {
+	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+		w.Header().Set("Access-Control-Allow-Origin", "*")
+		w.Header().Set("Access-Control-Allow-Methods", "*")
+		w.Header().Set("Access-Control-Allow-Headers", "*")
+		w.Header().Set("Access-Control-Allow-Credentials", "true")
+		log.Infof("Should set headers")
+
+		if r.Method == "OPTIONS" {
+			log.Infof("Should return for OPTIONS")
+			return
+		}
+		next.ServeHTTP(w, r)
+	})
+}
+
 func routes() *chi.Mux {
 	//myHandler := api.NewSysAPIHandler(apikey)
 	baseURL := fmt.Sprintf("/api/v%s", apiVersion)
 	router := chi.NewRouter()
 	router.Use(
+		Cors,
+		/*		cors.Handler(cors.Options{
+					// AllowedOrigins: []string{"https://foo.com"}, // Use this to allow specific origin hosts
+					AllowedOrigins: []string{"*"},
+					// AllowOriginFunc:  func(r *http.Request, origin string) bool { return true },
+					AllowedMethods:   []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
+					AllowedHeaders:   []string{"Accept", "Authorization", "Content-Type", "X-CSRF-Token"},
+					ExposedHeaders:   []string{"Link"},
+					AllowCredentials: true,
+					MaxAge:           300, // Maximum value not ignored by any of major browsers
+				}),
+		*/
 		render.SetContentType(render.ContentTypeJSON),
 		middleware.Logger,
 		middleware.DefaultCompress,
@@ -130,7 +158,7 @@ func main() {
 	defer log.Close()
 
 	gc := crypt.GenerateCertificate{
-		Organization: "MCS Media Computer Spftware",
+		Organization: "MCS Media Computer Software",
 		Host:         "127.0.0.1",
 		ValidFor:     10 * 365 * 24 * time.Hour,
 		IsCA:         false,
@@ -181,6 +209,7 @@ func main() {
 	}
 
 	var sslsrv *http.Server
+	var srv *http.Server
 	if ssl {
 		tlsConfig, err := gc.GenerateTLSConfig()
 		if err != nil {
@@ -200,23 +229,35 @@ func main() {
 				log.Alertf("error starting server: %s", err.Error())
 			}
 		}()
-	}
-
-	// own http server for the healthchecks
-	srv := &http.Server{
-		Addr:         "0.0.0.0:" + strconv.Itoa(serviceConfig.Port),
-		WriteTimeout: time.Second * 15,
-		ReadTimeout:  time.Second * 15,
-		IdleTimeout:  time.Second * 60,
-		Handler:      healthRouter,
-	}
-
-	go func() {
-		log.Infof("starting http server on address: %s", srv.Addr)
-		if err := srv.ListenAndServe(); err != nil {
-			log.Alertf("error starting server: %s", err.Error())
+		srv = &http.Server{
+			Addr:         "0.0.0.0:" + strconv.Itoa(serviceConfig.Port),
+			WriteTimeout: time.Second * 15,
+			ReadTimeout:  time.Second * 15,
+			IdleTimeout:  time.Second * 60,
+			Handler:      healthRouter,
 		}
-	}()
+		go func() {
+			log.Infof("starting http server on address: %s", srv.Addr)
+			if err := srv.ListenAndServe(); err != nil {
+				log.Alertf("error starting server: %s", err.Error())
+			}
+		}()
+	} else {
+		// own http server for the healthchecks
+		srv = &http.Server{
+			Addr:         "0.0.0.0:" + strconv.Itoa(serviceConfig.Port),
+			WriteTimeout: time.Second * 15,
+			ReadTimeout:  time.Second * 15,
+			IdleTimeout:  time.Second * 60,
+			Handler:      router,
+		}
+		go func() {
+			log.Infof("starting http server on address: %s", srv.Addr)
+			if err := srv.ListenAndServe(); err != nil {
+				log.Alertf("error starting server: %s", err.Error())
+			}
+		}()
+	}
 
 	if serviceConfig.RegistryURL != "" {
 		initRegistry()

+ 3 - 3
schematic-service-go/configs/serviceLocal.yaml

@@ -1,7 +1,7 @@
 # port of the http server
 port: 9080 
 # port of the https server
-sslport: 9443
+sslport: 0
 # this is the servicURL from outside
 serviceURL: http://127.0.0.1:9080
 # this is the registry URL from inside
@@ -23,8 +23,8 @@ healthcheck:
     period: 30
 
 mongodb:
-    host: 127.0.0.1
-    port: 27017
+    host: 192.168.178.12
+    port: 37017
     username:
     password:
     authdb: schematics

+ 1 - 0
schematic-service-go/go.mod

@@ -6,6 +6,7 @@ require (
 	github.com/aphistic/golf v0.0.0-20180712155816-02c07f170c5a
 	github.com/aphistic/sweet v0.3.0 // indirect
 	github.com/go-chi/chi v4.0.3+incompatible
+	github.com/go-chi/cors v1.1.1 // indirect
 	github.com/go-chi/render v1.0.1
 	github.com/go-delve/delve v1.4.0 // indirect
 	github.com/google/martian v2.1.0+incompatible

+ 2 - 0
schematic-service-go/go.sum

@@ -54,6 +54,8 @@ github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMo
 github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
 github.com/go-chi/chi v4.0.3+incompatible h1:gakN3pDJnzZN5jqFV2TEdF66rTfKeITyR8qu6ekICEY=
 github.com/go-chi/chi v4.0.3+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ=
+github.com/go-chi/cors v1.1.1 h1:eHuqxsIw89iXcWnWUN8R72JMibABJTN/4IOYI5WERvw=
+github.com/go-chi/cors v1.1.1/go.mod h1:K2Yje0VW/SJzxiyMYu6iPQYa7hMjQX2i/F491VChg1I=
 github.com/go-chi/render v1.0.1 h1:4/5tis2cKaNdnv9zFLfXzcquC9HbeZgCnxGnKrltBS8=
 github.com/go-chi/render v1.0.1/go.mod h1:pq4Rr7HbnsdaeHagklXub+p6Wd16Af5l9koip1OvJns=
 github.com/go-delve/delve v1.4.0/go.mod h1:gQM0ReOJLNAvPuKAXfjHngtE93C2yc/ekTbo7YbAHSo=