60 lines
2.1 KiB
Go
60 lines
2.1 KiB
Go
package http
|
|
|
|
import (
|
|
"fmt"
|
|
"trustcontact/internal/config"
|
|
"trustcontact/internal/controllers"
|
|
httpmw "trustcontact/internal/http/middleware"
|
|
"trustcontact/internal/services"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
"github.com/gofiber/fiber/v2/middleware/session"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func RegisterRoutes(app *fiber.App, store *session.Store, database *gorm.DB, cfg *config.Config) error {
|
|
app.Use(httpmw.SessionStoreMiddleware(store))
|
|
app.Use(httpmw.CurrentUserMiddleware(store, database))
|
|
app.Use(httpmw.ConsumeFlash())
|
|
|
|
authService, err := services.NewAuthService(database, cfg)
|
|
if err != nil {
|
|
return fmt.Errorf("init auth service: %w", err)
|
|
}
|
|
authController := controllers.NewAuthController(authService)
|
|
usersService := services.NewUsersService(database)
|
|
usersController := controllers.NewUsersController(usersService)
|
|
adminController := controllers.NewAdminController(usersService)
|
|
|
|
app.Get("/healthz", func(c *fiber.Ctx) error {
|
|
return c.SendStatus(fiber.StatusOK)
|
|
})
|
|
|
|
app.Get("/", authController.ShowHome)
|
|
app.Get("/signup", authController.ShowSignup)
|
|
app.Post("/signup", authController.Signup)
|
|
app.Get("/login", authController.ShowLogin)
|
|
app.Post("/login", authController.Login)
|
|
app.Post("/logout", authController.Logout)
|
|
app.Get("/verify-email", authController.VerifyEmail)
|
|
app.Get("/verify-notice", authController.ShowVerifyNotice)
|
|
app.Get("/forgot-password", authController.ShowForgotPassword)
|
|
app.Post("/forgot-password", authController.ForgotPassword)
|
|
app.Get("/reset-password", authController.ShowResetPassword)
|
|
app.Post("/reset-password", authController.ResetPassword)
|
|
app.Get("/users", httpmw.RequireAuth(), usersController.Index)
|
|
app.Get("/users/table", httpmw.RequireAuth(), usersController.Table)
|
|
app.Get("/users/:id/modal", httpmw.RequireAuth(), usersController.Modal)
|
|
|
|
private := app.Group("/private", httpmw.RequireAuth())
|
|
private.Get("/", func(c *fiber.Ctx) error {
|
|
return c.Redirect("/users")
|
|
})
|
|
|
|
admin := app.Group("/admin", httpmw.RequireAuth(), httpmw.RequireAdmin())
|
|
admin.Get("/", adminController.Dashboard)
|
|
admin.Get("/users", adminController.Users)
|
|
|
|
return nil
|
|
}
|