mirror of
https://github.com/twofas/2fas-server.git
synced 2024-12-12 04:00:15 +01:00
67 lines
1.7 KiB
Go
67 lines
1.7 KiB
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"github.com/2fas/api/config"
|
||
|
extension "github.com/2fas/api/internal/api/browser_extension/service"
|
||
|
health "github.com/2fas/api/internal/api/health/service"
|
||
|
icons "github.com/2fas/api/internal/api/icons/service"
|
||
|
mobile "github.com/2fas/api/internal/api/mobile/service"
|
||
|
support "github.com/2fas/api/internal/api/support/service"
|
||
|
"github.com/2fas/api/internal/common/api"
|
||
|
"github.com/2fas/api/internal/common/db"
|
||
|
"github.com/2fas/api/internal/common/redis"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"github.com/go-playground/validator/v10"
|
||
|
)
|
||
|
|
||
|
var validate *validator.Validate
|
||
|
|
||
|
type Module interface {
|
||
|
RegisterRoutes(router *gin.Engine)
|
||
|
}
|
||
|
|
||
|
type Application struct {
|
||
|
Addr string
|
||
|
|
||
|
Router *gin.Engine
|
||
|
|
||
|
Config config.Configuration
|
||
|
|
||
|
Modules []Module
|
||
|
}
|
||
|
|
||
|
func NewApplication(config config.Configuration) *Application {
|
||
|
validate = validator.New()
|
||
|
|
||
|
gorm := db.NewGormConnection(config)
|
||
|
database := db.NewDbConnection(config)
|
||
|
redisClient := redis.New(config.Redis.ServiceUrl, config.Redis.Port)
|
||
|
|
||
|
modules := []Module{
|
||
|
health.NewHealthModule(config, redisClient),
|
||
|
support.NewSupportModule(config, gorm, database, validate),
|
||
|
icons.NewIconsModule(config, gorm, database, validate),
|
||
|
extension.NewBrowserExtensionModule(config, gorm, database, redisClient),
|
||
|
mobile.NewMobileModule(config, gorm, database, validate, redisClient),
|
||
|
}
|
||
|
|
||
|
app := &Application{
|
||
|
Addr: config.App.ListenAddr,
|
||
|
Config: config,
|
||
|
Modules: modules,
|
||
|
}
|
||
|
|
||
|
return app
|
||
|
}
|
||
|
|
||
|
func (a *Application) RegisterRoutes(router *gin.Engine) {
|
||
|
router.NoRoute(func(c *gin.Context) {
|
||
|
c.JSON(404, api.NotFoundError(errors.New("URI not found")))
|
||
|
})
|
||
|
|
||
|
for _, module := range a.Modules {
|
||
|
module.RegisterRoutes(router)
|
||
|
}
|
||
|
}
|