refactor: migrate DI to Wire, replace startup registries with on-demand DB queries
- Add google/wire; generate wire_gen.go from wire.go injector - Move all constructor wiring out of main.go into providers.go / wire.go - Export recognition.IngredientRepository (was unexported, blocked Wire binding) - Delete units/cuisine/tag registry.go files (global state + unused NameFor helpers) - Replace List handlers with NewListHandler(pool) using COALESCE SQL queries - Remove units/cuisine/tag LoadFromDB from server startup; locale.LoadFromDB kept (locale.Supported is used by language middleware on every request) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -2,9 +2,11 @@ package cuisine
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"log/slog"
|
||||
"net/http"
|
||||
|
||||
"github.com/food-ai/backend/internal/locale"
|
||||
"github.com/jackc/pgx/v5/pgxpool"
|
||||
)
|
||||
|
||||
type cuisineItem struct {
|
||||
@@ -12,17 +14,47 @@ type cuisineItem struct {
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
// List handles GET /cuisines — returns cuisines with names in the requested language.
|
||||
func List(w http.ResponseWriter, r *http.Request) {
|
||||
lang := locale.FromContext(r.Context())
|
||||
items := make([]cuisineItem, 0, len(Records))
|
||||
for _, c := range Records {
|
||||
name, ok := c.Translations[lang]
|
||||
if !ok {
|
||||
name = c.Name
|
||||
// NewListHandler returns an http.HandlerFunc for GET /cuisines.
|
||||
// It queries the database directly, resolving translations via COALESCE.
|
||||
func NewListHandler(pool *pgxpool.Pool) http.HandlerFunc {
|
||||
return func(responseWriter http.ResponseWriter, request *http.Request) {
|
||||
lang := locale.FromContext(request.Context())
|
||||
|
||||
rows, queryError := pool.Query(request.Context(), `
|
||||
SELECT c.slug, COALESCE(ct.name, c.name) AS name
|
||||
FROM cuisines c
|
||||
LEFT JOIN cuisine_translations ct ON ct.cuisine_slug = c.slug AND ct.lang = $1
|
||||
ORDER BY c.sort_order`, lang)
|
||||
if queryError != nil {
|
||||
slog.Error("list cuisines", "err", queryError)
|
||||
writeErrorJSON(responseWriter, http.StatusInternalServerError, "failed to load cuisines")
|
||||
return
|
||||
}
|
||||
items = append(items, cuisineItem{Slug: c.Slug, Name: name})
|
||||
defer rows.Close()
|
||||
|
||||
items := make([]cuisineItem, 0)
|
||||
for rows.Next() {
|
||||
var item cuisineItem
|
||||
if scanError := rows.Scan(&item.Slug, &item.Name); scanError != nil {
|
||||
slog.Error("scan cuisine row", "err", scanError)
|
||||
writeErrorJSON(responseWriter, http.StatusInternalServerError, "failed to load cuisines")
|
||||
return
|
||||
}
|
||||
items = append(items, item)
|
||||
}
|
||||
if rowsError := rows.Err(); rowsError != nil {
|
||||
slog.Error("iterate cuisine rows", "err", rowsError)
|
||||
writeErrorJSON(responseWriter, http.StatusInternalServerError, "failed to load cuisines")
|
||||
return
|
||||
}
|
||||
|
||||
responseWriter.Header().Set("Content-Type", "application/json")
|
||||
_ = json.NewEncoder(responseWriter).Encode(map[string]any{"cuisines": items})
|
||||
}
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
_ = json.NewEncoder(w).Encode(map[string]any{"cuisines": items})
|
||||
}
|
||||
|
||||
func writeErrorJSON(responseWriter http.ResponseWriter, status int, message string) {
|
||||
responseWriter.Header().Set("Content-Type", "application/json")
|
||||
responseWriter.WriteHeader(status)
|
||||
_ = json.NewEncoder(responseWriter).Encode(map[string]string{"error": message})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user