- Rename Go module switchboard-core → armature (155+ files) - Rename Docker image → gobha/armature - Rename K8s resources, secrets, deployments - Rename Prometheus metrics switchboard_* → armature_* - Rename env vars SWITCHBOARD_ADMIN_* → ARMATURE_ADMIN_* - Rename DB names switchboard_core* → armature* - Update all frontend branding, notification templates, docs - Update CI scripts, e2e tests, Keycloak realm, nginx conf - Rename scripts/switchboard-ca.sh → scripts/armature-ca.sh - Rename k8s/switchboard.yaml → k8s/armature.yaml - Rename chart alerting/dashboard files - Fix: DockerHub push uses env: binding for secret injection - Helm chart updated (name, labels, template functions, dashboard, alerting) - Replace favicon/icon assets with Armature brand No functional changes. Pure mechanical rename + CI fix. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
73 lines
2.0 KiB
Go
73 lines
2.0 KiB
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"armature/models"
|
|
"armature/store"
|
|
"armature/workflow"
|
|
)
|
|
|
|
// ── Signoff Handlers ─────────────────
|
|
|
|
// WorkflowSignoffHandler manages signoff HTTP endpoints.
|
|
type WorkflowSignoffHandler struct {
|
|
engine *workflow.Engine
|
|
stores store.Stores
|
|
}
|
|
|
|
// NewWorkflowSignoffHandler creates a signoff handler.
|
|
func NewWorkflowSignoffHandler(engine *workflow.Engine, stores store.Stores) *WorkflowSignoffHandler {
|
|
return &WorkflowSignoffHandler{engine: engine, stores: stores}
|
|
}
|
|
|
|
// Submit records a signoff (approve/reject) for the current stage of an instance.
|
|
// POST /api/v1/instances/:iid/signoffs
|
|
func (h *WorkflowSignoffHandler) Submit(c *gin.Context) {
|
|
userID := c.GetString("user_id")
|
|
instanceID := c.Param("iid")
|
|
|
|
var body struct {
|
|
Decision string `json:"decision" binding:"required,oneof=approve reject"`
|
|
Comment string `json:"comment"`
|
|
}
|
|
if err := c.ShouldBindJSON(&body); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
so, err := h.engine.SubmitSignoff(c.Request.Context(), instanceID, userID, body.Decision, body.Comment)
|
|
if err != nil {
|
|
c.JSON(http.StatusConflict, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusCreated, so)
|
|
}
|
|
|
|
// List returns signoffs for the current stage of an instance.
|
|
// GET /api/v1/instances/:iid/signoffs
|
|
func (h *WorkflowSignoffHandler) List(c *gin.Context) {
|
|
instanceID := c.Param("iid")
|
|
|
|
// Get the instance to determine current stage
|
|
inst, err := h.stores.Workflows.GetInstance(c.Request.Context(), instanceID)
|
|
if err != nil {
|
|
c.JSON(http.StatusNotFound, gin.H{"error": "instance not found"})
|
|
return
|
|
}
|
|
|
|
signoffs, err := h.stores.Workflows.ListSignoffs(c.Request.Context(), instanceID, inst.CurrentStage)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "query failed"})
|
|
return
|
|
}
|
|
if signoffs == nil {
|
|
signoffs = []models.WorkflowSignoff{}
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"data": signoffs})
|
|
}
|