chrly/internal/di/handlers.go

126 lines
3.4 KiB
Go
Raw Normal View History

2020-04-16 22:12:38 +05:30
package di
import (
"net/http"
"slices"
"strings"
2023-12-13 21:59:12 +05:30
"github.com/defval/di"
"github.com/etherlabsio/healthcheck/v2"
2020-04-16 22:12:38 +05:30
"github.com/gorilla/mux"
"github.com/spf13/viper"
2024-02-14 05:26:48 +05:30
"go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux"
2020-04-16 22:12:38 +05:30
. "ely.by/chrly/internal/http"
"ely.by/chrly/internal/security"
2020-04-16 22:12:38 +05:30
)
const ModuleSkinsystem = "skinsystem"
const ModuleProfiles = "profiles"
var handlersDiOptions = di.Options(
di.Provide(newHandlerFactory, di.As(new(http.Handler))),
di.Provide(newSkinsystemHandler, di.WithName(ModuleSkinsystem)),
di.Provide(newProfilesApiHandler, di.WithName(ModuleProfiles)),
2020-04-16 22:12:38 +05:30
)
func newHandlerFactory(
container *di.Container,
config *viper.Viper,
) (*mux.Router, error) {
enabledModules := config.GetStringSlice("modules")
// gorilla.mux has no native way to combine multiple routers.
// The hack used later in the code works for prefixes in addresses, but leads to misbehavior
// if you set an empty prefix. Since the main application should be mounted at the root prefix,
// we use it as the base router
var router *mux.Router
if slices.Contains(enabledModules, ModuleSkinsystem) {
if err := container.Resolve(&router, di.Name(ModuleSkinsystem)); err != nil {
return nil, err
}
} else {
router = mux.NewRouter()
}
router.StrictSlash(true)
2024-02-14 05:26:48 +05:30
router.Use(otelmux.Middleware("chrly"))
2024-02-07 23:03:06 +05:30
router.NotFoundHandler = http.HandlerFunc(NotFoundHandler)
if slices.Contains(enabledModules, ModuleProfiles) {
var profilesApiRouter *mux.Router
if err := container.Resolve(&profilesApiRouter, di.Name(ModuleProfiles)); err != nil {
return nil, err
}
var authenticator Authenticator
if err := container.Resolve(&authenticator); err != nil {
return nil, err
}
profilesApiRouter.Use(NewAuthenticationMiddleware(authenticator, security.ProfilesScope))
mount(router, "/api/profiles", profilesApiRouter)
}
// Resolve health checkers last, because all the services required by the application
// must first be initialized and each of them can publish its own checkers
var healthCheckers []*namedHealthChecker
2023-12-13 21:59:12 +05:30
if has, _ := container.Has(&healthCheckers); has {
if err := container.Resolve(&healthCheckers); err != nil {
return nil, err
}
checkersOptions := make([]healthcheck.Option, len(healthCheckers))
for i, checker := range healthCheckers {
checkersOptions[i] = healthcheck.WithChecker(checker.Name, checker.Checker)
}
router.Handle("/healthcheck", healthcheck.Handler(checkersOptions...)).Methods("GET")
}
return router, nil
}
2020-04-16 22:12:38 +05:30
func newSkinsystemHandler(
config *viper.Viper,
profilesProvider ProfilesProvider,
) (*mux.Router, error) {
2020-04-20 18:10:20 +05:30
config.SetDefault("textures.extra_param_name", "chrly")
config.SetDefault("textures.extra_param_value", "how do you tame a horse in Minecraft?")
skinsystem, err := NewSkinsystemApi(
profilesProvider,
config.GetString("textures.extra_param_name"),
config.GetString("textures.extra_param_value"),
)
if err != nil {
return nil, err
}
return skinsystem.Handler(), nil
}
2020-04-16 22:12:38 +05:30
func newProfilesApiHandler(profilesManager ProfilesManager) (*mux.Router, error) {
profilesApi, err := NewProfilesApi(profilesManager)
if err != nil {
return nil, err
}
return profilesApi.Handler(), nil
2020-04-16 22:12:38 +05:30
}
func mount(router *mux.Router, path string, handler http.Handler) {
router.PathPrefix(path).Handler(
http.StripPrefix(
strings.TrimSuffix(path, "/"),
handler,
),
)
}
type namedHealthChecker struct {
Name string
Checker healthcheck.Checker
}