Full project rename per m's call. Single atomic commit because the codebase rename is a coupled change — go module path, env vars, DB default, Docker artefact names, and on-disk mDock paths all flip together. - go.mod: module mgit.msbls.de/m/mcables → mgit.msbls.de/m/cablegui - cmd/mcables → cmd/cablegui (git mv) - All Go imports rewritten to the new module path - Env vars: MCABLES_ADDR/MCABLES_DB → CABLEGUI_ADDR/CABLEGUI_DB - DB default path: data/mcables.db → data/cablegui.db - Dockerfile + docker-compose.yml: image, container_name, env vars, bind-mount /home/m/stacks/mcables → /home/m/stacks/cablegui, secrets /home/m/secrets/mcables → /home/m/secrets/cablegui - Makefile: bin target + run/build commands point at cmd/cablegui - .gitignore + .dockerignore: /mcables → /cablegui - README, docs/design.md, CLAUDE.md: prose + paths + image name - web/static/index.html: <title> + brand - web/static/main.js + web/web.go: header comment - internal/exporter: Scene.Source "mcables" → "cablegui" - internal/server/export.go: error-detail secrets path - internal/db/migrations/*.sql: header comments (mCables vN → CableGUI vN) Memory group_id kept as "mcables" to preserve existing memory continuity. Documented as historical in CLAUDE.md. go build ./... clean; go test -race ./... green
196 lines
5.1 KiB
Go
196 lines
5.1 KiB
Go
package server
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"net/http"
|
|
|
|
"mgit.msbls.de/m/cablegui/internal/db"
|
|
)
|
|
|
|
type clampCreate struct {
|
|
X float64 `json:"x"`
|
|
Y float64 `json:"y"`
|
|
Label string `json:"label,omitempty"`
|
|
FrameID json.RawMessage `json:"frame_id,omitempty"`
|
|
}
|
|
|
|
type clampPatch struct {
|
|
X *float64 `json:"x,omitempty"`
|
|
Y *float64 `json:"y,omitempty"`
|
|
Label *string `json:"label,omitempty"`
|
|
FrameID json.RawMessage `json:"frame_id,omitempty"`
|
|
}
|
|
|
|
type cableClampAttach struct {
|
|
ClampID int64 `json:"clamp_id"`
|
|
Ord int `json:"ord,omitempty"`
|
|
}
|
|
|
|
type cableClampReorder struct {
|
|
ClampIDs []int64 `json:"clamp_ids"`
|
|
}
|
|
|
|
func (h *handlers) listClamps(w http.ResponseWriter, r *http.Request) {
|
|
pid, ok := parseInt64Path(r, "pid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "pid must be a positive integer")
|
|
return
|
|
}
|
|
cs, err := h.store.ListClamps(pid)
|
|
if err != nil {
|
|
writeError(w, err, nil)
|
|
return
|
|
}
|
|
writeJSON(w, http.StatusOK, cs)
|
|
}
|
|
|
|
func (h *handlers) createClamp(w http.ResponseWriter, r *http.Request) {
|
|
pid, ok := parseInt64Path(r, "pid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "pid must be a positive integer")
|
|
return
|
|
}
|
|
var body clampCreate
|
|
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
|
|
writeError(w, errors.Join(db.ErrInvalidInput, err), nil)
|
|
return
|
|
}
|
|
ref, err := parseFrameRef(body.FrameID)
|
|
if err != nil {
|
|
writeError(w, errors.Join(db.ErrInvalidInput, err), nil)
|
|
return
|
|
}
|
|
c, err := h.store.CreateClamp(pid, db.ClampCreate{
|
|
X: body.X, Y: body.Y, Label: body.Label, FrameID: ref.ID,
|
|
})
|
|
if err != nil {
|
|
writeError(w, err, nil)
|
|
return
|
|
}
|
|
writeJSON(w, http.StatusCreated, c)
|
|
}
|
|
|
|
func (h *handlers) patchClamp(w http.ResponseWriter, r *http.Request) {
|
|
pid, ok := parseInt64Path(r, "pid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "pid must be a positive integer")
|
|
return
|
|
}
|
|
id, ok := parseInt64Path(r, "id")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "id must be a positive integer")
|
|
return
|
|
}
|
|
var body clampPatch
|
|
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
|
|
writeError(w, errors.Join(db.ErrInvalidInput, err), nil)
|
|
return
|
|
}
|
|
ref, err := parseFrameRef(body.FrameID)
|
|
if err != nil {
|
|
writeError(w, errors.Join(db.ErrInvalidInput, err), nil)
|
|
return
|
|
}
|
|
c, err := h.store.UpdateClamp(pid, id, db.ClampUpdate{
|
|
X: body.X, Y: body.Y, Label: body.Label, FrameID: ref,
|
|
})
|
|
if err != nil {
|
|
writeError(w, err, nil)
|
|
return
|
|
}
|
|
writeJSON(w, http.StatusOK, c)
|
|
}
|
|
|
|
func (h *handlers) deleteClamp(w http.ResponseWriter, r *http.Request) {
|
|
pid, ok := parseInt64Path(r, "pid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "pid must be a positive integer")
|
|
return
|
|
}
|
|
id, ok := parseInt64Path(r, "id")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "id must be a positive integer")
|
|
return
|
|
}
|
|
if err := h.store.DeleteClamp(pid, id); err != nil {
|
|
writeError(w, err, nil)
|
|
return
|
|
}
|
|
w.WriteHeader(http.StatusNoContent)
|
|
}
|
|
|
|
// POST /api/projects/:pid/cables/:cid/clamps — attach a clamp to a cable.
|
|
func (h *handlers) attachClampToCable(w http.ResponseWriter, r *http.Request) {
|
|
pid, ok := parseInt64Path(r, "pid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "pid must be a positive integer")
|
|
return
|
|
}
|
|
cid, ok := parseInt64Path(r, "cid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "cid must be a positive integer")
|
|
return
|
|
}
|
|
var body cableClampAttach
|
|
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
|
|
writeError(w, errors.Join(db.ErrInvalidInput, err), nil)
|
|
return
|
|
}
|
|
cc, err := h.store.AttachClampToCable(pid, cid, body.ClampID, body.Ord)
|
|
if err != nil {
|
|
writeError(w, err, nil)
|
|
return
|
|
}
|
|
writeJSON(w, http.StatusCreated, cc)
|
|
}
|
|
|
|
// DELETE /api/projects/:pid/cables/:cid/clamps/:cmid — detach a clamp.
|
|
func (h *handlers) detachClampFromCable(w http.ResponseWriter, r *http.Request) {
|
|
pid, ok := parseInt64Path(r, "pid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "pid must be a positive integer")
|
|
return
|
|
}
|
|
cid, ok := parseInt64Path(r, "cid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "cid must be a positive integer")
|
|
return
|
|
}
|
|
cmid, ok := parseInt64Path(r, "cmid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "cmid must be a positive integer")
|
|
return
|
|
}
|
|
if err := h.store.DetachClampFromCable(pid, cid, cmid); err != nil {
|
|
writeError(w, err, nil)
|
|
return
|
|
}
|
|
w.WriteHeader(http.StatusNoContent)
|
|
}
|
|
|
|
// PUT /api/projects/:pid/cables/:cid/clamps — replace clamp sequence.
|
|
func (h *handlers) reorderCableClamps(w http.ResponseWriter, r *http.Request) {
|
|
pid, ok := parseInt64Path(r, "pid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "pid must be a positive integer")
|
|
return
|
|
}
|
|
cid, ok := parseInt64Path(r, "cid")
|
|
if !ok {
|
|
writeError(w, db.ErrInvalidInput, "cid must be a positive integer")
|
|
return
|
|
}
|
|
var body cableClampReorder
|
|
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
|
|
writeError(w, errors.Join(db.ErrInvalidInput, err), nil)
|
|
return
|
|
}
|
|
out, err := h.store.ReorderCableClamps(pid, cid, body.ClampIDs)
|
|
if err != nil {
|
|
writeError(w, err, nil)
|
|
return
|
|
}
|
|
writeJSON(w, http.StatusOK, out)
|
|
}
|