- Wire face service into main.go with FACE_SERVICE_ENABLED toggle - Add integration tests for AWS Rekognition (build tag: integration) - Add performance benchmarks for face operations (build tag: performance) - Fix PhotoRepository interface to use store types directly - Remove duplicate PhotoInfo/FaceEmbeddingInfo types from face package - Add go.mod replace directive for local module resolution Integration tests: go test -tags=integration ./internal/face/... Performance tests: go test -tags=performance -bench=. ./internal/face/... Standard tests: go test ./...
101 lines
2.5 KiB
Go
101 lines
2.5 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/config"
|
|
"github.com/elfoundation/hatch/internal/face"
|
|
"github.com/elfoundation/hatch/internal/handler"
|
|
"github.com/elfoundation/hatch/internal/store"
|
|
"github.com/go-chi/chi/v5"
|
|
)
|
|
|
|
func main() {
|
|
// CLI mode: if a subcommand is provided, handle it and exit.
|
|
if cliMain() {
|
|
return
|
|
}
|
|
|
|
// Server mode: start the HTTP server.
|
|
port := os.Getenv("PORT")
|
|
if port == "" {
|
|
port = "8080"
|
|
}
|
|
dbPath := os.Getenv("HATCH_DB_PATH")
|
|
repo, err := store.Open(dbPath)
|
|
if err != nil {
|
|
log.Fatalf("hatch: open store: %v", err)
|
|
}
|
|
defer repo.Close()
|
|
|
|
// Initialize face service if enabled
|
|
var faceService *face.Service
|
|
if os.Getenv("FACE_SERVICE_ENABLED") == "true" {
|
|
cfg, err := config.LoadDefaultConfig(context.Background())
|
|
if err != nil {
|
|
log.Printf("warning: failed to load AWS config: %v", err)
|
|
} else {
|
|
collectionID := os.Getenv("REKOGNITION_COLLECTION")
|
|
if collectionID == "" {
|
|
collectionID = "hatch-faces"
|
|
}
|
|
rekognitionClient := face.NewRekognitionClient(cfg, collectionID)
|
|
faceConfig := face.DefaultConfig()
|
|
faceCache := face.NewMemoryCache()
|
|
faceService = face.NewService(rekognitionClient, repo, faceCache, faceConfig)
|
|
log.Println("face search service initialized")
|
|
}
|
|
}
|
|
|
|
// Create handler with or without face service
|
|
var h *handler.Handler
|
|
if faceService != nil {
|
|
h = handler.NewWithFaceService(repo, faceService)
|
|
} else {
|
|
h = handler.New(repo)
|
|
}
|
|
h.Debug = os.Getenv("HATCH_DEBUG") != ""
|
|
r := chi.NewRouter()
|
|
|
|
// Security and performance middleware
|
|
r.Use(handler.SecurityHeaders)
|
|
r.Use(handler.NewRateLimiter(100, time.Minute).Limit)
|
|
|
|
h.RegisterRoutes(r)
|
|
|
|
addr := fmt.Sprintf(":%s", port)
|
|
srv := &http.Server{
|
|
Addr: addr,
|
|
Handler: r,
|
|
}
|
|
|
|
// Start server in a goroutine.
|
|
go func() {
|
|
log.Printf("hatch starting on %s", addr)
|
|
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
|
log.Fatalf("hatch server error: %v", err)
|
|
}
|
|
}()
|
|
|
|
// Wait for interrupt signal for graceful shutdown.
|
|
quit := make(chan os.Signal, 1)
|
|
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
|
|
<-quit
|
|
log.Println("shutting down server...")
|
|
|
|
// Create a deadline for shutdown.
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancel()
|
|
if err := srv.Shutdown(ctx); err != nil {
|
|
log.Fatalf("server forced to shutdown: %v", err)
|
|
}
|
|
|
|
log.Println("server exited")
|
|
} |