mirror of
https://github.com/elyby/accounts-profiles-endpoint.git
synced 2024-11-26 08:42:16 +05:30
83 lines
2.0 KiB
Go
83 lines
2.0 KiB
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/etherlabsio/healthcheck/v2"
|
|
"github.com/getsentry/sentry-go"
|
|
sentrygin "github.com/getsentry/sentry-go/gin"
|
|
"github.com/gin-contrib/pprof"
|
|
"github.com/gin-gonic/gin"
|
|
"go.uber.org/multierr"
|
|
|
|
db "ely.by/accounts-profiles-endpoint/internal/db/mysql"
|
|
"ely.by/accounts-profiles-endpoint/internal/http"
|
|
sentryLogging "ely.by/accounts-profiles-endpoint/internal/logging/sentry"
|
|
"ely.by/accounts-profiles-endpoint/internal/services/chrly"
|
|
"ely.by/accounts-profiles-endpoint/internal/services/signer"
|
|
)
|
|
|
|
func Serve() error {
|
|
config := initConfig()
|
|
|
|
ctx := context.Background()
|
|
ctx, _ = signal.NotifyContext(ctx, os.Interrupt, syscall.SIGTERM, os.Kill)
|
|
|
|
var errors, err error
|
|
err = sentryLogging.InitWithConfig(config)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to initialize Sentry: %w", err)
|
|
}
|
|
|
|
mysql, err := db.NewWithConfig(config)
|
|
errors = multierr.Append(errors, err)
|
|
|
|
texturesProvider, err := chrly.NewWithConfig(config)
|
|
errors = multierr.Append(errors, err)
|
|
|
|
signerService, err := signer.NewWithConfig(config)
|
|
errors = multierr.Append(errors, err)
|
|
|
|
if errors != nil {
|
|
return errors
|
|
}
|
|
|
|
if config.GetBool("debug") {
|
|
gin.SetMode(gin.DebugMode)
|
|
} else {
|
|
gin.SetMode(gin.ReleaseMode)
|
|
}
|
|
|
|
r := gin.Default()
|
|
pprof.Register(r)
|
|
r.Use(sentrygin.New(sentrygin.Options{Repanic: true}))
|
|
r.Use(sentryLogging.ErrorMiddleware())
|
|
r.Use(http.ErrorMiddleware())
|
|
|
|
r.GET("/healthcheck", gin.WrapH(healthcheck.Handler(
|
|
healthcheck.WithChecker("mysql", healthcheck.CheckerFunc(mysql.Ping)),
|
|
)))
|
|
|
|
sessionserver := http.NewMojangApi(mysql, texturesProvider, signerService)
|
|
sessionserver.DefineRoutes(r)
|
|
|
|
server, err := http.NewServerWithConfig(config, r)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to create a server: %w", err)
|
|
}
|
|
|
|
err = http.StartServer(ctx, server)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to start a server: %w", err)
|
|
}
|
|
|
|
sentry.Flush(2 * time.Second)
|
|
|
|
return nil
|
|
}
|