mirror of
https://github.com/mudler/LocalAI.git
synced 2026-07-30 01:48:06 -04:00
* feat(3d): add Generate3D RPC, FLAG_3D capability, and /v1/3d/generations endpoint Adds the plumbing for image-conditioned 3D asset generation (binary glTF / GLB output), modeled on the video generation path: - backend.proto: Generate3D RPC + Generate3DRequest (staged image src, glb dst, seed/step/cfg_scale/texture_steps, quality and background enums, params map for backend-specific extras) - pkg/grpc: thread Generate3D through client, server, embed, base and the backend interfaces; connection-evicting and distributed-node wrappers (in-flight tracking + file staging) included - core/config: FLAG_3D usecase (guessed only for the trellis2cpp backend), '3d' canonical usecase string mapped to the Generate3D method, and a '3d' output modality - REST: POST /v1/3d/generations (+ unversioned alias) returning OpenAIResponse with a /generated-3d URL or b64_json; conditioning image accepted as URL, base64, or data URI; quality/background validated at the edge; .glb served as model/gltf-binary - auth: '3d' route feature (default ON); /api/instructions entry Assisted-by: Claude:claude-fable-5 [Claude Code] Signed-off-by: Richard Palethorpe <io@richiejp.com> * feat(trellis2cpp): add the trellis2.cpp image-to-3D backend Wraps localai-org/trellis2cpp (C++/GGML port of Microsoft TRELLIS.2, pbr-textures branch) as a Go+purego backend, following the stablediffusion-ggml pattern: - backend/go/trellis2cpp: purego bindings to the flat C ABI (v9, asserted at startup), eager pipeline load with model-set validation (refuses non-trellis GGUFs; degrades coarse/geometry-only/textured exactly like the upstream demo), Generate3D via t2_generate + t2_bake_glb writing a binary glTF to dst. Weight-free unit tests cover resolution/validation/param mapping — CI never downloads the multi-GB GGUF set or runs inference. - CPU SIMD variants build into per-variant directories (the shared libggml sonames collide across variants, unlike sd-ggml's flat renamed-.so scheme); run.sh picks one via /proc/cpuinfo. - CI wiring: backend-matrix entries (cpu, cuda12/13, vulkan amd64+arm64, l4t, l4t-cuda13, darwin metal), index.yaml meta + latest/master image entries, bump_deps tracking of the pbr-textures branch, changed-backends.js mapping, top-level Makefile targets. - Importer: auto-detects trellis GGUF repos/URIs (registered before llama-cpp so the .gguf match isn't stolen) and expands any trellis URI to the full 10-file component set spanning the three LocalAI-io HF repos. - Gallery: trellis2-4b (full PBR + 1024 cascade) and trellis2-4b-geometry (512 untextured) with verified sha256s. Assisted-by: Claude:claude-fable-5 [Claude Code] Signed-off-by: Richard Palethorpe <io@richiejp.com> * feat(ui): 3D generation page with native GLB viewer and IndexedDB history Adds a Studio tab + /app/3d page for the new image-to-3D endpoint: - GlbViewer ports the trellis2cpp demo's dependency-free WebGL2 renderer (quaternion trackball, metallic-roughness PBR, ACES, hidden-line wireframe with a bounded index budget) and pairs it with a minimal GLB parser for the two forms t2_bake_glb emits — dense vertex-PBR (linear COLOR_0 + _METALLIC_ROUGHNESS, uploaded as normalized integers) and the opt-in UV-atlas textured form. Parsing happens before any GL so stats and errors render without WebGL2. - use3DHistory stores past generations (params, input thumbnail, and the GLB blob itself) in IndexedDB with keep-newest-20 eviction — GLBs are multi-MB binaries localStorage can't hold — and the page offers a download button for the active GLB. - Wiring: CAP_3D capability constant (FLAG_3D — the exact string /api/models/capabilities serves), threeDApi, router entries, Studio tab, vite dev proxy, en locale keys. - e2e: render-smoke entry plus a focused spec that feeds a real one-triangle vertex-PBR GLB through the parser/viewer and exercises IndexedDB persistence, selection, deletion, and API errors. Assisted-by: Claude:claude-fable-5 [Claude Code] Signed-off-by: Richard Palethorpe <io@richiejp.com> * fix(3d): address API correctness and UX issues Keep 3D generation on the LocalAI-specific /3d/generations route and ensure authentication and permissions cover it. Propagate distributed transfer failures, publish a portable ARM64 backend image, honor importer overrides, and align discovery, upload validation, and touch controls. Assisted-by: Codex:gpt-5 Signed-off-by: Richard Palethorpe <io@richiejp.com> * feat(3d): add previewable print remeshing Add a single-detail CGAL Alpha Wrap workflow for existing Trellis GLBs, including PBR reprojection, API documentation, tracing, and an in-browser preview before download. Allow the remesh route to enforce its 512 MiB upload cap independently of the smaller global default so generated high-resolution meshes can be processed. Assisted-by: Codex:gpt-5 Signed-off-by: Richard Palethorpe <io@richiejp.com> * build(trellis2cpp): centralize remesh dependency pins Assisted-by: Codex:GPT-5 [apply_patch] [exec_command] Signed-off-by: Richard Palethorpe <io@richiejp.com> * fix(kokoros): implement Generate3D stub for new proto RPC The Generate3D RPC added to backend.proto for the trellis2cpp backend made tonic's generated Backend trait require generate3_d, breaking the kokoros-grpc build. Return unimplemented like the other unsupported modalities. Assisted-by: Claude Code:claude-fable-5 Signed-off-by: Richard Palethorpe <io@richiejp.com> --------- Signed-off-by: Richard Palethorpe <io@richiejp.com> Co-authored-by: localai-org-maint-bot <bot-opensource@localaisrl.com>
435 lines
15 KiB
Go
435 lines
15 KiB
Go
//go:build auth
|
|
|
|
package auth_test
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/mudler/LocalAI/core/config"
|
|
"github.com/mudler/LocalAI/core/http/auth"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var _ = Describe("Auth Middleware", func() {
|
|
|
|
Context("auth disabled, no API keys", func() {
|
|
var app *echo.Echo
|
|
|
|
BeforeEach(func() {
|
|
appConfig := config.NewApplicationConfig()
|
|
app = newAuthTestApp(nil, appConfig)
|
|
})
|
|
|
|
It("passes through all requests", func() {
|
|
rec := doRequest(app, http.MethodGet, "/v1/models")
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("passes through POST requests", func() {
|
|
rec := doRequest(app, http.MethodPost, "/v1/chat/completions")
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
})
|
|
|
|
Context("auth disabled, API keys configured", func() {
|
|
var app *echo.Echo
|
|
const validKey = "sk-test-key-123"
|
|
|
|
BeforeEach(func() {
|
|
appConfig := config.NewApplicationConfig()
|
|
appConfig.ApiKeys = []string{validKey}
|
|
app = newAuthTestApp(nil, appConfig)
|
|
})
|
|
|
|
It("returns 401 for request without key", func() {
|
|
rec := doRequest(app, http.MethodGet, "/v1/models")
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("passes with valid Bearer token", func() {
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withBearerToken(validKey))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("passes with valid x-api-key header", func() {
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withXApiKey(validKey))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("passes with valid token cookie", func() {
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withTokenCookie(validKey))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("returns 401 for invalid key", func() {
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withBearerToken("wrong-key"))
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
})
|
|
|
|
Context("auth enabled with database", func() {
|
|
var (
|
|
db *gorm.DB
|
|
app *echo.Echo
|
|
appConfig *config.ApplicationConfig
|
|
user *auth.User
|
|
)
|
|
|
|
BeforeEach(func() {
|
|
db = testDB()
|
|
appConfig = config.NewApplicationConfig()
|
|
app = newAuthTestApp(db, appConfig)
|
|
user = createTestUser(db, "user@example.com", auth.RoleUser, auth.ProviderGitHub)
|
|
})
|
|
|
|
It("allows requests with valid session cookie", func() {
|
|
sessionID := createTestSession(db, user.ID)
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("allows requests with valid session as Bearer token", func() {
|
|
sessionID := createTestSession(db, user.ID)
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withBearerToken(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("allows requests with valid user API key as Bearer token", func() {
|
|
plaintext, _, err := auth.CreateAPIKey(db, user.ID, "test", auth.RoleUser, "", nil)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withBearerToken(plaintext))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("allows requests with legacy API_KEY as admin bypass", func() {
|
|
appConfig.ApiKeys = []string{"legacy-key-123"}
|
|
app = newAuthTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withBearerToken("legacy-key-123"))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("returns 401 for expired session", func() {
|
|
sessionID := createTestSession(db, user.ID)
|
|
// Manually expire (session ID in DB is the hash)
|
|
hash := auth.HashAPIKey(sessionID, "")
|
|
db.Model(&auth.Session{}).Where("id = ?", hash).
|
|
Update("expires_at", "2020-01-01")
|
|
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("returns 401 for invalid session ID", func() {
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withSessionCookie("invalid-session-id"))
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("returns 401 for revoked API key", func() {
|
|
plaintext, record, err := auth.CreateAPIKey(db, user.ID, "to revoke", auth.RoleUser, "", nil)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
err = auth.RevokeAPIKey(db, record.ID, user.ID)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
rec := doRequest(app, http.MethodGet, "/v1/models", withBearerToken(plaintext))
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("skips auth for /api/auth/* paths", func() {
|
|
rec := doRequest(app, http.MethodGet, "/api/auth/status")
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("skips auth for PathWithoutAuth paths", func() {
|
|
rec := doRequest(app, http.MethodGet, "/healthz")
|
|
// healthz is not registered in our test app, so it'll be 404/405 but NOT 401
|
|
Expect(rec.Code).ToNot(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("returns 401 for unauthenticated API requests", func() {
|
|
rec := doRequest(app, http.MethodGet, "/v1/models")
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("returns 401 for unauthenticated 3D generation requests", func() {
|
|
rec := doRequest(app, http.MethodPost, "/3d/generations")
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("returns 401 for unauthenticated 3D remesh requests", func() {
|
|
rec := doRequest(app, http.MethodPost, "/3d/remesh")
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("allows unauthenticated access to non-API paths when no legacy keys", func() {
|
|
rec := doRequest(app, http.MethodGet, "/app")
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
})
|
|
|
|
Describe("RequireAdmin", func() {
|
|
var (
|
|
db *gorm.DB
|
|
appConfig *config.ApplicationConfig
|
|
)
|
|
|
|
BeforeEach(func() {
|
|
db = testDB()
|
|
appConfig = config.NewApplicationConfig()
|
|
})
|
|
|
|
It("passes for admin user", func() {
|
|
admin := createTestUser(db, "admin@example.com", auth.RoleAdmin, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, admin.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodPost, "/api/settings", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("returns 403 for user role", func() {
|
|
user := createTestUser(db, "user@example.com", auth.RoleUser, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, user.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodPost, "/api/settings", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusForbidden))
|
|
})
|
|
|
|
It("returns 401 when no user in context", func() {
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodPost, "/api/settings")
|
|
Expect(rec.Code).To(Equal(http.StatusUnauthorized))
|
|
})
|
|
|
|
It("allows admin to access model management", func() {
|
|
admin := createTestUser(db, "admin@example.com", auth.RoleAdmin, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, admin.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodPost, "/models/apply", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("blocks user from model management", func() {
|
|
user := createTestUser(db, "user@example.com", auth.RoleUser, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, user.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodPost, "/models/apply", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusForbidden))
|
|
})
|
|
|
|
It("allows user to access regular inference endpoints", func() {
|
|
user := createTestUser(db, "user@example.com", auth.RoleUser, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, user.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodPost, "/v1/chat/completions", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("allows legacy API key (admin bypass) on admin routes", func() {
|
|
appConfig.ApiKeys = []string{"admin-key"}
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodPost, "/api/settings", withBearerToken("admin-key"))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("allows admin to access trace endpoints", func() {
|
|
admin := createTestUser(db, "admin2@example.com", auth.RoleAdmin, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, admin.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodGet, "/api/traces", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
|
|
rec = doRequest(app, http.MethodGet, "/api/backend-logs", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("blocks non-admin from trace endpoints", func() {
|
|
user := createTestUser(db, "user2@example.com", auth.RoleUser, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, user.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodGet, "/api/traces", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusForbidden))
|
|
|
|
rec = doRequest(app, http.MethodGet, "/api/backend-logs", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusForbidden))
|
|
})
|
|
|
|
It("allows admin to access agent job endpoints", func() {
|
|
admin := createTestUser(db, "admin3@example.com", auth.RoleAdmin, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, admin.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodGet, "/api/agent/tasks", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
|
|
rec = doRequest(app, http.MethodGet, "/api/agent/jobs", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
})
|
|
|
|
It("blocks non-admin from agent job endpoints", func() {
|
|
user := createTestUser(db, "user3@example.com", auth.RoleUser, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, user.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
rec := doRequest(app, http.MethodGet, "/api/agent/tasks", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusForbidden))
|
|
|
|
rec = doRequest(app, http.MethodGet, "/api/agent/jobs", withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusForbidden))
|
|
})
|
|
|
|
It("blocks non-admin from system/management endpoints", func() {
|
|
user := createTestUser(db, "user4@example.com", auth.RoleUser, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, user.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
for _, path := range []string{"/api/operations", "/api/models", "/api/backends", "/api/resources", "/api/p2p/workers", "/system", "/backend/monitor"} {
|
|
rec := doRequest(app, http.MethodGet, path, withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusForbidden), "expected 403 for path: "+path)
|
|
}
|
|
})
|
|
|
|
It("allows admin to access system/management endpoints", func() {
|
|
admin := createTestUser(db, "admin4@example.com", auth.RoleAdmin, auth.ProviderGitHub)
|
|
sessionID := createTestSession(db, admin.ID)
|
|
app := newAdminTestApp(db, appConfig)
|
|
|
|
for _, path := range []string{"/api/operations", "/api/models", "/api/backends", "/api/resources", "/api/p2p/workers", "/system", "/backend/monitor"} {
|
|
rec := doRequest(app, http.MethodGet, path, withSessionCookie(sessionID))
|
|
Expect(rec.Code).To(Equal(http.StatusOK), "expected 200 for path: "+path)
|
|
}
|
|
})
|
|
})
|
|
|
|
Describe("auth context plumbing for usage source", func() {
|
|
// probeApp builds a minimal echo app with the auth middleware and a single
|
|
// "/probe" route that captures the user, source, and apikey from context.
|
|
type probe struct {
|
|
user *auth.User
|
|
source string
|
|
key *auth.UserAPIKey
|
|
}
|
|
probeApp := func(db *gorm.DB, appConfig *config.ApplicationConfig, p *probe) *echo.Echo {
|
|
e := echo.New()
|
|
e.Use(auth.Middleware(db, appConfig))
|
|
e.GET("/probe", func(c echo.Context) error {
|
|
p.user = auth.GetUser(c)
|
|
p.source = auth.GetSource(c)
|
|
p.key = auth.GetAPIKey(c)
|
|
return c.NoContent(http.StatusOK)
|
|
})
|
|
return e
|
|
}
|
|
|
|
It("session cookie sets source=web, apikey=nil", func() {
|
|
db := testDB()
|
|
appConfig := config.NewApplicationConfig()
|
|
user := createTestUser(db, "alice@example.com", auth.RoleUser, auth.ProviderLocal)
|
|
token := createTestSession(db, user.ID)
|
|
|
|
var p probe
|
|
app := probeApp(db, appConfig, &p)
|
|
rec := doRequest(app, http.MethodGet, "/probe", withSessionCookie(token))
|
|
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
Expect(p.user).ToNot(BeNil())
|
|
Expect(p.user.ID).To(Equal(user.ID))
|
|
Expect(p.source).To(Equal(auth.UsageSourceWeb))
|
|
Expect(p.key).To(BeNil())
|
|
})
|
|
|
|
It("Bearer session token sets source=web, apikey=nil", func() {
|
|
db := testDB()
|
|
appConfig := config.NewApplicationConfig()
|
|
user := createTestUser(db, "alice@example.com", auth.RoleUser, auth.ProviderLocal)
|
|
token := createTestSession(db, user.ID)
|
|
|
|
var p probe
|
|
app := probeApp(db, appConfig, &p)
|
|
rec := doRequest(app, http.MethodGet, "/probe", withBearerToken(token))
|
|
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
Expect(p.user).ToNot(BeNil())
|
|
Expect(p.user.ID).To(Equal(user.ID))
|
|
Expect(p.source).To(Equal(auth.UsageSourceWeb))
|
|
Expect(p.key).To(BeNil())
|
|
})
|
|
|
|
It("Bearer API key sets source=apikey and exposes the resolved *UserAPIKey", func() {
|
|
db := testDB()
|
|
appConfig := config.NewApplicationConfig()
|
|
user := createTestUser(db, "alice@example.com", auth.RoleUser, auth.ProviderLocal)
|
|
plaintext, key, err := auth.CreateAPIKey(db, user.ID, "ci", auth.RoleUser, appConfig.Auth.APIKeyHMACSecret, nil)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
var p probe
|
|
app := probeApp(db, appConfig, &p)
|
|
rec := doRequest(app, http.MethodGet, "/probe", withBearerToken(plaintext))
|
|
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
Expect(p.source).To(Equal(auth.UsageSourceAPIKey))
|
|
Expect(p.key).ToNot(BeNil())
|
|
Expect(p.key.ID).To(Equal(key.ID))
|
|
})
|
|
|
|
It("x-api-key header sets source=apikey", func() {
|
|
db := testDB()
|
|
appConfig := config.NewApplicationConfig()
|
|
user := createTestUser(db, "alice@example.com", auth.RoleUser, auth.ProviderLocal)
|
|
plaintext, _, err := auth.CreateAPIKey(db, user.ID, "ci", auth.RoleUser, appConfig.Auth.APIKeyHMACSecret, nil)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
var p probe
|
|
app := probeApp(db, appConfig, &p)
|
|
rec := doRequest(app, http.MethodGet, "/probe", withXApiKey(plaintext))
|
|
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
Expect(p.source).To(Equal(auth.UsageSourceAPIKey))
|
|
Expect(p.key).ToNot(BeNil())
|
|
})
|
|
|
|
It("token cookie sets source=apikey", func() {
|
|
db := testDB()
|
|
appConfig := config.NewApplicationConfig()
|
|
user := createTestUser(db, "alice@example.com", auth.RoleUser, auth.ProviderLocal)
|
|
plaintext, _, err := auth.CreateAPIKey(db, user.ID, "ci", auth.RoleUser, appConfig.Auth.APIKeyHMACSecret, nil)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
var p probe
|
|
app := probeApp(db, appConfig, &p)
|
|
rec := doRequest(app, http.MethodGet, "/probe", withTokenCookie(plaintext))
|
|
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
Expect(p.source).To(Equal(auth.UsageSourceAPIKey))
|
|
Expect(p.key).ToNot(BeNil())
|
|
})
|
|
|
|
It("legacy env key sets source=legacy, apikey=nil", func() {
|
|
db := testDB()
|
|
appConfig := config.NewApplicationConfig()
|
|
appConfig.ApiKeys = []string{"legacy-secret"}
|
|
|
|
var p probe
|
|
app := probeApp(db, appConfig, &p)
|
|
rec := doRequest(app, http.MethodGet, "/probe", withBearerToken("legacy-secret"))
|
|
|
|
Expect(rec.Code).To(Equal(http.StatusOK))
|
|
Expect(p.source).To(Equal(auth.UsageSourceLegacy))
|
|
Expect(p.key).To(BeNil())
|
|
})
|
|
})
|
|
})
|