Add adjustable probe area for OpenSky test connection
Let the OpenSky health probe run over a chosen bounding box without touching the saved default, so its credit cost (which scales with area) can be checked cheaply. - Backend: the plugin health endpoint (panel Check) and the OpenSky health endpoint (Web App Test connection) accept an optional ?bbox=, validated with validBBox and applied to a transient probe instance; both BFF and API forward it. Saved config is untouched. - API panel: a "Probe area" picker beside each bbox-capable plugin's Check button — saved default, all countries (grouped by continent), or Custom. Adds a compact pv-input-sm style. - Web App: a "Test area" picker beside Test connection, using the full country list (new countryGroups() helper) plus Custom. This is where the probe is authenticated and the credit cost is shown. Builds pass across both Go modules and both frontends. Panel picker verified live (186 options, defaults to saved default). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
763cc67081
commit
15bff7f517
@@ -93,9 +93,41 @@ func (s *Server) handleDeletePlugin(w http.ResponseWriter, r *http.Request) {
|
||||
writeJSON(w, http.StatusOK, map[string]any{"ok": true})
|
||||
}
|
||||
|
||||
// POST /api/admin/plugins/{name}/health — run a health check now.
|
||||
// POST /api/admin/plugins/{name}/health — run a health check now. An optional
|
||||
// ?bbox= overrides the plugin's stored bounding box for this probe only (used by
|
||||
// the panel to test-probe OpenSky over a smaller, cheaper area without changing
|
||||
// the saved default). Ignored by plugins that don't use a bbox.
|
||||
func (s *Server) handlePluginHealth(w http.ResponseWriter, r *http.Request) {
|
||||
h, err := s.plugins.HealthCheck(r.Context(), r.PathValue("name"))
|
||||
name := r.PathValue("name")
|
||||
|
||||
if bbox := strings.TrimSpace(r.URL.Query().Get("bbox")); bbox != "" {
|
||||
if !validBBox(bbox) {
|
||||
writeError(w, http.StatusBadRequest, "invalid bbox")
|
||||
return
|
||||
}
|
||||
cfg, _, ok := s.plugins.RawConfig(name)
|
||||
if !ok {
|
||||
writeError(w, http.StatusNotFound, "unknown plugin")
|
||||
return
|
||||
}
|
||||
if cfg == nil {
|
||||
cfg = map[string]string{}
|
||||
}
|
||||
cfg["bbox"] = bbox
|
||||
h, err := s.plugins.HealthCheckWith(r.Context(), name, cfg)
|
||||
if err != nil {
|
||||
if plugins.IsUnknown(err) {
|
||||
writeError(w, http.StatusNotFound, "unknown plugin")
|
||||
return
|
||||
}
|
||||
writeJSON(w, http.StatusBadGateway, map[string]any{"error": err.Error()})
|
||||
return
|
||||
}
|
||||
writeJSON(w, http.StatusOK, map[string]any{"health": h})
|
||||
return
|
||||
}
|
||||
|
||||
h, err := s.plugins.HealthCheck(r.Context(), name)
|
||||
if err != nil {
|
||||
if plugins.IsUnknown(err) {
|
||||
writeError(w, http.StatusNotFound, "unknown plugin")
|
||||
|
||||
Reference in New Issue
Block a user