02e4ef7544
Smoothes the rough edges that came up exercising a live deployment.
First-run bootstrap UI: /bootstrap renders a username + password form
that uses the in-memory token directly (operator no longer copies it
out of the log); /login redirects there while bootstrap is available.
Agent reliability: failJob synthetic envelopes so command.run early
returns no longer hang the server-side job; runtime probe of restic
restore --help drives --no-ownership instead of version sniffing
(0.18.x had it removed). Server unit re-shaped: ProtectSystem=full
plus ReadWritePaths=/etc/restic-manager, no ProtectHome — restore
can now write anywhere a user might want.
Restore wizard: default target is /root/rm-restore/<job-id>/ with
clearer help text. Re-init confirm input uses .field (was .input,
which doesn't exist — text was invisible).
NS-01 host delete: store DeleteHost, admin-band /hosts/{id}/delete
with hostname-confirm danger zone, audit, FK cascade, live WS close.
NS-02 enrollment-token recovery: outstanding-tokens panel on
/hosts/new, regenerate (preserves attachments) and revoke handlers
+ audit, store-level ListOutstandingEnrollmentTokens and
DeleteEnrollmentToken.
NS-03 repo init / probe surface: migration 0020 adds
hosts.repo_status + repo_status_error; WS handler projects every
init job's outcome onto the host row (idempotent already-initialised
collapses to ready); creds-save resets status and dispatches a fresh
probe; /hosts/{id}/repo/probe retry endpoint with banner.
NS-04 dashboard live + sort + filter: query-string filter
(q/status/repo_status/tag/sort/dir), 5s htmx live poll mirroring the
alerts pattern with a localStorage live toggle, sortable column
headers, filter row + clear.
Alerts page: ack'd-by line resolves user_id ULID to username.
Compose.yaml ignored — host-specific.
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
// ui_repo_probe.go — NS-03 retry-probe handler. Re-dispatches an init
|
|
// job against a host so the operator can re-test creds / connectivity
|
|
// without typing the hostname (no destructive shape: restic init is
|
|
// idempotent against a populated repo, so this is safe to spam).
|
|
//
|
|
// On success the WS handler's job.finished hook flips repo_status
|
|
// back to "ready" (or "init_failed" with a fresh error message).
|
|
package http
|
|
|
|
import (
|
|
"log/slog"
|
|
stdhttp "net/http"
|
|
)
|
|
|
|
func (s *Server) handleUIRepoProbe(w stdhttp.ResponseWriter, r *stdhttp.Request) {
|
|
u := s.requireUIUser(w, r)
|
|
if u == nil {
|
|
return
|
|
}
|
|
host, ok := s.loadHostForUI(w, r)
|
|
if !ok {
|
|
return
|
|
}
|
|
if s.deps.Hub == nil || !s.deps.Hub.Connected(host.ID) {
|
|
s.renderRepoPage(w, r, u, host,
|
|
"Host is offline — bring the agent back up before probing.",
|
|
"", "", "")
|
|
return
|
|
}
|
|
if err := s.dispatchInitJob(r.Context(), host.ID, "user", &u.ID); err != nil {
|
|
slog.Warn("ui repo probe: dispatch", "host_id", host.ID, "err", err)
|
|
s.renderRepoPage(w, r, u, host,
|
|
"Probe dispatch failed — check the agent logs and try again.",
|
|
"", "", "")
|
|
return
|
|
}
|
|
stdhttp.Redirect(w, r, "/hosts/"+host.ID+"/repo?saved=probe", stdhttp.StatusSeeOther)
|
|
}
|