5e77a36b6a
modified: serv_nginx/api_bb/internal/routes/routes.go new file: serv_nginx/api_bb/sqlite add bb_api routing check endpoint and create Makefile
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
package routes
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
"gorm.io/gorm"
|
|
|
|
"go-rest-api/internal/handlers"
|
|
"go-rest-api/internal/repository"
|
|
"go-rest-api/internal/service"
|
|
"go-rest-api/pkg/middleware"
|
|
)
|
|
|
|
func SetupRouter(db *gorm.DB) http.Handler {
|
|
r := chi.NewRouter()
|
|
|
|
// Apply common middleware
|
|
for _, m := range middleware.CommonMiddleware() {
|
|
r.Use(m)
|
|
}
|
|
|
|
// Initialize repositories
|
|
userRepo := repository.NewUserRepository(db)
|
|
|
|
// Initialize services
|
|
authService := service.NewAuthService(userRepo)
|
|
|
|
// Initialize handlers
|
|
healthHandler := handlers.NewHealthHandler()
|
|
authHandler := handlers.NewAuthHandler(authService)
|
|
|
|
// Health routes
|
|
r.Mount("/api", healthHandler.Routes())
|
|
|
|
// API v1 routes
|
|
r.Route("/api/v1", func(r chi.Router) {
|
|
// Add the new /check route
|
|
r.Get("/check", func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
})
|
|
r.Mount("/auth", authHandler.Routes())
|
|
|
|
// Здесь будут добавлены другие маршруты:
|
|
// r.Mount("/users", userHandler.Routes())
|
|
// r.Mount("/events", eventHandler.Routes())
|
|
// r.Mount("/reviews", reviewHandler.Routes())
|
|
})
|
|
|
|
return r
|
|
}
|