Files
stackpilot/backend/services/image_status_store.py
T
menzeljandClaude Opus 5 51d1998307
CI / check (push) Successful in 7m17s
CI / build-and-push (push) Successful in 1m45s
Remove the remote-host (agent) integration (0.48.0)
StackPilot now manages exactly one Docker host: the one it runs on. The
stackpilot-agent sidecar and everything that proxied to it are gone — 4721
lines deleted against 657 added.

Deleted outright: agent/ (image, compose, env), agent_app.py, models/agent.py,
routers/agents.py (1200 lines), services/agent_service.py, the agent API client,
RemoteStackDetail, the host components and AgentStacksSection. That removes 57
API routes and the three /ws/agent-* proxies.

Threaded out everywhere else, which was the bulk of the work. Every API module
carried an optional agentId that switched the base path; every page that listed
Docker objects rendered one section per host behind a HostHeader; Files had a
host switcher; the New Stack editor and the template dialog had host selectors;
schedules, auto-update policies and stack summaries carried agent_id. All of it
is gone, and the typechecker drove the sweep — 85 files touched, tsc and the
build clean.

Two things the removal exposed as dead weight rather than merely unused:

compose_service kept an in-process busy set purely because the agent needed a
lock and has no database. With the agent gone that was a second source of truth
next to the real DB lock, so it is deleted; compute_status now reports only what
the containers say and the two callers that want "updating" overlay the lock.
StacksTable's linkBase prop only ever existed to point at /hosts/{id}/stacks.

The dashboard's "Hosts 1/1 online" KPI can no longer say anything else, so the
tile and the KPIs behind it are gone and the row is five wide.

Upgrading matters here. An existing install still has an agent table holding
each remote host's URL and bearer token — full Docker control of that host,
sitting in the database with nothing left to use it. _drop_removed_schema drops
it on first start, and drops the agent_id columns where the SQLite build
supports DROP COLUMN. Each statement runs in its own transaction on purpose: a
failed DDL poisons the transaction it is in, so sharing one would let an
unsupported column drop take the table drop down with it. test_agent_removal
covers both branches plus the fresh-install and idempotent cases, and an
end-to-end run against a seeded pre-0.48 database confirms the table is gone and
every /api/agents route answers 404.

Docstrings that justified a design by "shared with the agent, which has no
database" were rewritten rather than left lying: update_service's persistence
callback and image_status_store are still the right split (registry logic stays
testable without a database), but for that reason now, not the old one. The
README's multi-host sections are removed and an upgrade note explains what to do
with running agent containers; ROADMAP keeps its history behind a note saying
the feature it describes no longer exists.

CI no longer builds or pushes stackpilot-agent.

735 tests pass, ruff and tsc clean.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Dk43rmEeRfYi5wsLDbmfyG
2026-08-31 14:11:54 +02:00

81 lines
2.7 KiB
Python

"""Persistence for the image update cache.
``update_service`` holds the registry-digest results in a module dict and knows
nothing about storage — it is pure registry logic and stays unit-testable
without a database. This module is its persistence half: it seeds that dict at
startup and mirrors every write back into SQLite, wired up in ``main.lifespan``.
What it buys: after a restart the update badges are there immediately instead
of blank until the next background sweep (up to an hour), and the "already
notified" marks come back with them, so a restart no longer re-announces
updates the user has already seen.
"""
from __future__ import annotations
import logging
from sqlmodel import Session, select
from database import engine
from models.runtime_state import ImageStatus
from services import update_service
logger = logging.getLogger("stackpilot.image_status")
def _to_status(row: ImageStatus) -> update_service.UpdateStatus:
return update_service.UpdateStatus(
image=row.image,
update_available=row.update_available,
current_digest=row.current_digest,
remote_digest=row.remote_digest,
checked_at=row.checked_at,
error=row.error,
)
def save(status: update_service.UpdateStatus, notified: bool) -> None:
"""Upsert one image's status. Opens its own session — the caller is the
background loop, which has none."""
with Session(engine) as session:
row = session.get(ImageStatus, status.image)
if row is None:
row = ImageStatus(image=status.image)
row.update_available = status.update_available
row.current_digest = status.current_digest
row.remote_digest = status.remote_digest
row.checked_at = status.checked_at
row.error = status.error
row.notified = notified
session.add(row)
session.commit()
def install() -> int:
"""Seed the in-memory cache from the database and start mirroring writes.
Returns how many entries were restored.
"""
with Session(engine) as session:
rows = session.exec(select(ImageStatus)).all()
update_service.restore_cache([(_to_status(r), r.notified) for r in rows])
update_service.set_persist_callback(save, prune)
return len(rows)
def prune(keep: set[str]) -> int:
"""Drop rows for images that are no longer used by any stack.
Without this the table grows for the life of the install, one row per image
tag that was ever running.
"""
removed = 0
with Session(engine) as session:
for row in session.exec(select(ImageStatus)).all():
if row.image not in keep:
session.delete(row)
removed += 1
if removed:
session.commit()
return removed