mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-15 19:53:58 +03:00
203 lines
6.0 KiB
Go
203 lines
6.0 KiB
Go
package bootstrap
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log/slog"
|
|
"time"
|
|
|
|
_ "github.com/golang-migrate/migrate/v4/source/file"
|
|
|
|
"github.com/italypaleale/go-kit/servicerunner"
|
|
"gorm.io/gorm"
|
|
|
|
"github.com/pocket-id/pocket-id/backend/internal/common"
|
|
"github.com/pocket-id/pocket-id/backend/internal/job"
|
|
"github.com/pocket-id/pocket-id/backend/internal/service"
|
|
"github.com/pocket-id/pocket-id/backend/internal/storage"
|
|
)
|
|
|
|
func Bootstrap(ctx context.Context) error {
|
|
// List of services to run
|
|
services := make([]servicerunner.Service, 0, 3)
|
|
shutdowns := &shutdownManager{
|
|
fns: make([]servicerunner.Service, 0, 4),
|
|
}
|
|
|
|
// Initialize the observability stack, including the logger, distributed tracing, and metrics
|
|
shutdownFns, httpClient, err := initObservability(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to initialize OpenTelemetry: %w", err)
|
|
}
|
|
shutdowns.Add(shutdownFns...)
|
|
|
|
slog.InfoContext(ctx, "Pocket ID is starting")
|
|
|
|
// Init database
|
|
db, pg, err := NewDatabase(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to initialize database: %w", err)
|
|
}
|
|
if pg != nil {
|
|
defer func() {
|
|
// Close the database connection pool only after the shutdown functions have run: some of them (e.g. releasing the application lock) still need to query the database.
|
|
pg.Close()
|
|
}()
|
|
}
|
|
|
|
// Init storage
|
|
fileStorage, err := InitStorage(ctx, db)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to initialize file storage (backend: %s): %w", common.EnvConfig.FileBackend, err)
|
|
}
|
|
|
|
// Init application images
|
|
imageExtensions, err := initApplicationImages(ctx, fileStorage)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to initialize application images: %w", err)
|
|
}
|
|
|
|
// Init the scheduler
|
|
scheduler, err := job.NewScheduler()
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create job scheduler: %w", err)
|
|
}
|
|
|
|
// Create all services
|
|
svc, err := initServices(ctx, db, httpClient, imageExtensions, fileStorage, scheduler)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to initialize services: %w", err)
|
|
}
|
|
services = append(services, svc.appLockService.RunRenewal)
|
|
|
|
// Acquire the lock from the app lock service
|
|
waitUntil, err := svc.appLockService.Acquire(ctx, false)
|
|
if errors.Is(err, service.ErrLockUnavailable) {
|
|
return errors.New("it appears that there's already one instance of Pocket ID running; running multiple replicas of Pocket ID is currently not supported")
|
|
} else if err != nil {
|
|
return fmt.Errorf("failed to acquire application lock: %w", err)
|
|
}
|
|
|
|
select {
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
case <-time.After(time.Until(waitUntil)):
|
|
}
|
|
|
|
shutdowns.Add(func(shutdownCtx context.Context) error {
|
|
sErr := svc.appLockService.Release(shutdownCtx)
|
|
if sErr != nil {
|
|
return fmt.Errorf("failed to release application lock: %w", sErr)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
// Init the actors
|
|
actorsOpts := NewActorsOpts{
|
|
Postgres: pg,
|
|
|
|
EnvConfig: &common.EnvConfig,
|
|
AppConfig: svc.appConfigService,
|
|
HttpClient: httpClient,
|
|
DB: db,
|
|
FileStorage: fileStorage,
|
|
}
|
|
if pg == nil {
|
|
actorsOpts.SQLite, err = db.DB()
|
|
if err != nil {
|
|
return fmt.Errorf("failed to get *sql.DB connection from Gorm: %w", err)
|
|
}
|
|
}
|
|
actors, rateLimitServices, err := NewActors(actorsOpts)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to initialize actors: %w", err)
|
|
}
|
|
services = append(services, actors.Run)
|
|
|
|
// Register scheduled jobs, only in non-test mode
|
|
if common.EnvConfig.AppEnv != "test" {
|
|
err = registerScheduledJobs(ctx, db, svc, scheduler)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to register scheduled jobs: %w", err)
|
|
}
|
|
services = append(services, scheduler.Run)
|
|
}
|
|
|
|
// Init the router
|
|
// The rate-limit middleware invokes the actor host with each request's own context, so the setup context is intentionally not threaded through the router
|
|
//nolint:contextcheck
|
|
router, err := initRouter(db, svc, rateLimitServices)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to initialize router: %w", err)
|
|
}
|
|
services = append(services, router)
|
|
|
|
// Run all background services
|
|
// This call blocks until the context is canceled
|
|
err = servicerunner.NewServiceRunner(services...).Run(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to run services: %w", err)
|
|
}
|
|
|
|
// Run all shutdown functions
|
|
shutdowns.Run(ctx)
|
|
|
|
return nil
|
|
}
|
|
|
|
func InitStorage(ctx context.Context, db *gorm.DB) (fileStorage storage.FileStorage, err error) {
|
|
switch common.EnvConfig.FileBackend {
|
|
case storage.TypeFileSystem:
|
|
fileStorage, err = storage.NewFilesystemStorage(common.EnvConfig.UploadPath)
|
|
case storage.TypeDatabase:
|
|
fileStorage, err = storage.NewDatabaseStorage(db)
|
|
case storage.TypeS3:
|
|
s3Cfg := storage.S3Config{
|
|
Bucket: common.EnvConfig.S3Bucket,
|
|
Region: common.EnvConfig.S3Region,
|
|
Endpoint: common.EnvConfig.S3Endpoint,
|
|
AccessKeyID: common.EnvConfig.S3AccessKeyID,
|
|
SecretAccessKey: common.EnvConfig.S3SecretAccessKey,
|
|
ForcePathStyle: common.EnvConfig.S3ForcePathStyle,
|
|
DisableDefaultIntegrityChecks: common.EnvConfig.S3DisableDefaultIntegrityChecks,
|
|
Root: common.EnvConfig.UploadPath,
|
|
}
|
|
fileStorage, err = storage.NewS3Storage(ctx, s3Cfg)
|
|
default:
|
|
err = fmt.Errorf("unknown file storage backend: %s", common.EnvConfig.FileBackend)
|
|
}
|
|
if err != nil {
|
|
return fileStorage, err
|
|
}
|
|
|
|
return fileStorage, nil
|
|
}
|
|
|
|
type shutdownManager struct {
|
|
fns []servicerunner.Service
|
|
}
|
|
|
|
func (s *shutdownManager) Add(fns ...servicerunner.Service) {
|
|
for _, fn := range fns {
|
|
if fn == nil {
|
|
continue
|
|
}
|
|
|
|
s.fns = append(s.fns, fn)
|
|
}
|
|
}
|
|
|
|
func (s *shutdownManager) Run(ctx context.Context) {
|
|
// Cleanup functions are one-shot and must each run to completion independently, so we set WaitAll to true
|
|
sr := servicerunner.NewServiceRunner(s.fns...)
|
|
sr.WaitAll = true
|
|
|
|
shutdownCtx, shutdownCancel := context.WithTimeout(context.WithoutCancel(ctx), 5*time.Second)
|
|
defer shutdownCancel()
|
|
err := sr.Run(shutdownCtx)
|
|
if err != nil {
|
|
slog.ErrorContext(ctx, "Error shutting down services", slog.Any("error", err))
|
|
}
|
|
}
|