b46c116f6b
ci/woodpecker/tag/docker Pipeline was successful
Complete rewrite of ArtifactAPI from Python/FastAPI to Go as a single binary. Core engine: - 10 package providers: generic, docker, helm, pypi, npm, rpm, alpine, puppet, terraform, goproxy — each with built-in mutable patterns - Content-addressable storage (SHA256 dedup across all remotes) - Three-tier caching: Redis (TTL/locks) → S3/MinIO (blobs) → upstream - Classifier with allowlist/blocklist per-remote (empty = allow all) - Circuit breaker, conditional revalidation, stale-on-error - Background garbage collection for orphaned blobs - Access logging to PostgreSQL API: - v1 proxy endpoints (backwards compatible) - v2 management API: CRUD remotes/virtuals, object browser, stats, health, SSE events, probe/test endpoint - Virtual repos with index merging (Helm YAML + PyPI HTML) Frontend (React + Vite, separate Dockerfile): - Dashboard with stats, health indicators, top remotes - Remotes list with type filter, remote detail with config/patterns - Object browser with pagination and evict - Test Remote page: probe any remote path, see headers/size/timing - Virtuals page with expandable member lists TUI (Bubble Tea): - Dashboard, remotes list/detail, object browser, virtuals - Vim-style navigation, artifactapi tui --endpoint <url> Infrastructure: - S3 client supports MinIO, Ceph RGW, AWS S3 (minio-go) - PostgreSQL schema with migrations - Docker Compose: API + UI + Postgres 17 + Redis 7 + MinIO - Makefile with Go version check, build/test/lint/fmt/e2e targets - Distroless Docker image (~15MB) Testing: - Unit tests for models, classifier, providers, mergers - E2E tests with testcontainers-go (real Postgres/Redis/MinIO) Terraform config: - All 40 production remotes + helm virtual as HCL - Provider repo: terraform-provider-artifactapi v0.0.1 (separate) --------- Co-authored-by: Ben Vincent <ben@unkin.net> Reviewed-on: #47
141 lines
3.7 KiB
Go
141 lines
3.7 KiB
Go
package tui
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"git.unkin.net/unkin/artifactapi/internal/tui/views"
|
|
"git.unkin.net/unkin/artifactapi/pkg/models"
|
|
)
|
|
|
|
func (m *model) viewDashboard() string {
|
|
return titleStyle.Render("ArtifactAPI Dashboard") + "\n\n" +
|
|
views.RenderDashboard(m.stats, len(m.remotes), len(m.virtuals)) +
|
|
"\n\n" + mutedStyle.Render("Press [2] for remotes, [3] for virtuals")
|
|
}
|
|
|
|
func (m *model) viewRemotesList() string {
|
|
var sb strings.Builder
|
|
sb.WriteString(titleStyle.Render("Remotes") + "\n\n")
|
|
|
|
if len(m.remotes) == 0 {
|
|
sb.WriteString(mutedStyle.Render("No remotes configured"))
|
|
return sb.String()
|
|
}
|
|
|
|
for i, r := range m.remotes {
|
|
line := fmt.Sprintf(" %-25s %-12s %s", r.Name, r.PackageType, r.Description)
|
|
if i == m.cursor {
|
|
sb.WriteString(selStyle.Render(line))
|
|
} else {
|
|
sb.WriteString(line)
|
|
}
|
|
sb.WriteString("\n")
|
|
}
|
|
|
|
sb.WriteString("\n" + mutedStyle.Render("j/k navigate · enter detail · esc back"))
|
|
return sb.String()
|
|
}
|
|
|
|
func (m *model) viewRemoteDetail() string {
|
|
var r *remoteView
|
|
for i := range m.remotes {
|
|
if m.remotes[i].Name == m.selectedRemote {
|
|
r = &remoteView{m.remotes[i]}
|
|
break
|
|
}
|
|
}
|
|
if r == nil {
|
|
return mutedStyle.Render("Remote not found")
|
|
}
|
|
|
|
var sb strings.Builder
|
|
sb.WriteString(titleStyle.Render(r.Name) + "\n\n")
|
|
sb.WriteString(fmt.Sprintf(" Type: %s\n", r.PackageType))
|
|
sb.WriteString(fmt.Sprintf(" Base URL: %s\n", r.BaseURL))
|
|
sb.WriteString(fmt.Sprintf(" Description: %s\n", r.Description))
|
|
sb.WriteString(fmt.Sprintf(" Immutable TTL: %s\n", ttlStr(r.ImmutableTTL)))
|
|
sb.WriteString(fmt.Sprintf(" Mutable TTL: %ds\n", r.MutableTTL))
|
|
sb.WriteString(fmt.Sprintf(" Revalidation: %v\n", r.CheckMutable))
|
|
sb.WriteString(fmt.Sprintf(" Stale on Error: %v\n", r.StaleOnError))
|
|
|
|
if len(r.Patterns) > 0 {
|
|
sb.WriteString(fmt.Sprintf(" Patterns: %s\n", strings.Join(r.Patterns, ", ")))
|
|
}
|
|
if len(r.Blocklist) > 0 {
|
|
sb.WriteString(fmt.Sprintf(" Blocklist: %s\n", strings.Join(r.Blocklist, ", ")))
|
|
}
|
|
if r.ManagedBy != "" {
|
|
sb.WriteString(fmt.Sprintf(" Managed by: %s\n", r.ManagedBy))
|
|
}
|
|
|
|
sb.WriteString("\n" + mutedStyle.Render("enter → browse objects · esc back"))
|
|
return sb.String()
|
|
}
|
|
|
|
func (m *model) viewObjectsList() string {
|
|
var sb strings.Builder
|
|
sb.WriteString(titleStyle.Render(fmt.Sprintf("Objects: %s (page %d)", m.selectedRemote, m.page)) + "\n\n")
|
|
|
|
if len(m.objects) == 0 {
|
|
sb.WriteString(mutedStyle.Render("No cached objects"))
|
|
return sb.String()
|
|
}
|
|
|
|
for i, a := range m.objects {
|
|
size := views.FormatBytes(a.SizeBytes)
|
|
line := fmt.Sprintf(" %-50s %10s %5d hits", truncate(a.Path, 50), size, a.AccessCount)
|
|
if i == m.cursor {
|
|
sb.WriteString(selStyle.Render(line))
|
|
} else {
|
|
sb.WriteString(line)
|
|
}
|
|
sb.WriteString("\n")
|
|
}
|
|
|
|
sb.WriteString("\n" + mutedStyle.Render("j/k navigate · esc back"))
|
|
return sb.String()
|
|
}
|
|
|
|
func (m *model) viewVirtualsList() string {
|
|
var sb strings.Builder
|
|
sb.WriteString(titleStyle.Render("Virtual Repositories") + "\n\n")
|
|
|
|
if len(m.virtuals) == 0 {
|
|
sb.WriteString(mutedStyle.Render("No virtual repositories configured"))
|
|
return sb.String()
|
|
}
|
|
|
|
for i, v := range m.virtuals {
|
|
line := fmt.Sprintf(" %-25s %-12s %d members %s",
|
|
v.Name, v.PackageType, len(v.Members), v.Description)
|
|
if i == m.cursor {
|
|
sb.WriteString(selStyle.Render(line))
|
|
} else {
|
|
sb.WriteString(line)
|
|
}
|
|
sb.WriteString("\n")
|
|
}
|
|
|
|
sb.WriteString("\n" + mutedStyle.Render("j/k navigate · esc back"))
|
|
return sb.String()
|
|
}
|
|
|
|
type remoteView struct {
|
|
models.Remote
|
|
}
|
|
|
|
func ttlStr(ttl int) string {
|
|
if ttl == 0 {
|
|
return "forever"
|
|
}
|
|
return fmt.Sprintf("%ds", ttl)
|
|
}
|
|
|
|
func truncate(s string, max int) string {
|
|
if len(s) <= max {
|
|
return s
|
|
}
|
|
return s[:max-3] + "..."
|
|
}
|