38 lines
818 B
Go
38 lines
818 B
Go
package internalhttp
|
|
|
|
import (
|
|
authhttp "github.com/ardeman/project-legalgo-go/internal/api/http/auth"
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/go-chi/cors"
|
|
"github.com/go-playground/validator/v10"
|
|
"go.uber.org/fx"
|
|
|
|
chimware "github.com/go-chi/chi/v5/middleware"
|
|
)
|
|
|
|
var Module = fx.Module("router",
|
|
fx.Provide(
|
|
initRouter,
|
|
validator.New,
|
|
),
|
|
authhttp.Module,
|
|
)
|
|
|
|
func initRouter() chi.Router {
|
|
router := chi.NewRouter()
|
|
localCors := cors.New(cors.Options{
|
|
AllowedOrigins: []string{"*"},
|
|
AllowedMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS", "PATCH"},
|
|
AllowedHeaders: []string{"Accept", "Content-Type", "Authorization", "X-Device", "X-Client-Ip"},
|
|
AllowCredentials: true,
|
|
Debug: true,
|
|
})
|
|
|
|
router.Use(
|
|
localCors.Handler,
|
|
chimware.RequestID,
|
|
)
|
|
|
|
return router
|
|
}
|