Files
clawmates/crates/cm-api/src/routes/tailscale.rs
T
Omar SobhandClaude Opus 4.8 3554a3aaf2
ci / gates (push) Successful in 5s
ci / frontend (push) Successful in 23s
ci / rust (push) Failing after 27s
ci / e2e (push) Has been skipped
CI: remove k8s stages, fix the Docker-level pipeline green
Survey + fixes so the pipeline passes at the Docker level (no k8s).

- Remove k8s: drop the `sandbox-k8s` job (kind/Calico/--features k8s-tests) and the
  "Helm chart lints" gate step. release.yml was already k8s-clean.
- Rust job:
  - `cargo fmt --all` — fix pre-existing formatting drift (fmt --check was failing).
  - clippy -D warnings: fix 3 lib warnings (cm-brain sort_by_key→Reverse, cm-api
    fleet.rs doc list indentation, node_rules map_or→is_none_or).
  - Regenerate the .sqlx offline cache (was missing the cm-runtime run_loop test
    query → offline compile failed). DB-backed tests use testcontainers at runtime.
  - Set SQLX_OFFLINE=true on the rust + e2e jobs so query! macros compile against
    the committed cache deterministically (no DB needed at compile time).
- Frontend job:
  - Fix the 1 ESLint error (useAgentTelemetry: no setState-synchronously-in-effect;
    tag the slice with agentId + derive null on mismatch).
  - Fix 2 stale panel-params tests (`terminal` is a valid app id now; assert the
    current APP_IDS + use a genuinely-unknown id for the reject case).

Verified locally: fmt clean, clippy --all-targets -D warnings clean (offline),
frontend lint 0 errors, tsc clean, 86/86 frontend tests pass, build OK.

Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
2026-06-26 18:15:31 -07:00

143 lines
5.1 KiB
Rust

//! Bring-your-own Tailscale: connect a workspace's tailnet (store its API key)
//! and proxy the Tailscale device list for fleet network metrics. The API key is
//! used server-side only (never returned to the client).
use axum::extract::State;
use axum::Json;
use cm_db::repo::{fleet_tailscale, nodes, workspace_placement};
use cm_domain::NodeId;
use serde::Deserialize;
use serde_json::{json, Value};
use uuid::Uuid;
use crate::{ApiError, AppState, Authed};
/// `GET /api/fleet/placement` — the workspace's default placement node (or null).
pub async fn placement_get(
State(state): State<AppState>,
Authed(user): Authed,
) -> Result<Json<Value>, ApiError> {
let node = workspace_placement::get(&state.pool, user.workspace_id).await?;
Ok(Json(json!({ "node": node })))
}
#[derive(Deserialize)]
pub struct PlacementReq {
pub node: String,
}
/// `PUT /api/fleet/placement` — set where new agent sandboxes provision. "local"
/// (or empty) reverts to the gateway host; a node id must belong to the caller.
pub async fn placement_set(
State(state): State<AppState>,
Authed(user): Authed,
Json(req): Json<PlacementReq>,
) -> Result<Json<Value>, ApiError> {
let node = req.node.trim();
if node.is_empty() || node == "local" {
workspace_placement::clear(&state.pool, user.workspace_id).await?;
return Ok(Json(json!({ "ok": true, "node": "local" })));
}
let nid = NodeId::from(node.parse::<Uuid>().map_err(|_| ApiError::NotFound)?);
nodes::get(&state.pool, nid, user.workspace_id)
.await?
.ok_or(ApiError::NotFound)?;
workspace_placement::set(&state.pool, user.workspace_id, node).await?;
Ok(Json(json!({ "ok": true, "node": node })))
}
#[derive(Deserialize)]
pub struct ConnectReq {
#[serde(rename = "apiKey")]
pub api_key: String,
pub tailnet: String,
}
/// `POST /api/fleet/tailscale` — store the workspace's Tailscale API key + tailnet.
pub async fn connect(
State(state): State<AppState>,
Authed(user): Authed,
Json(req): Json<ConnectReq>,
) -> Result<Json<Value>, ApiError> {
let api_key = req.api_key.trim();
let tailnet = req.tailnet.trim();
if api_key.is_empty() || tailnet.is_empty() {
return Ok(Json(
json!({ "ok": false, "error": "apiKey and tailnet are required" }),
));
}
fleet_tailscale::set(&state.pool, user.workspace_id, api_key, tailnet).await?;
Ok(Json(json!({ "ok": true, "tailnet": tailnet })))
}
/// `GET /api/fleet/tailscale` — whether Tailscale is connected (+ the tailnet).
pub async fn status(
State(state): State<AppState>,
Authed(user): Authed,
) -> Result<Json<Value>, ApiError> {
let conn = fleet_tailscale::get(&state.pool, user.workspace_id).await?;
Ok(Json(
json!({ "connected": conn.is_some(), "tailnet": conn.map(|(_, t)| t) }),
))
}
/// `DELETE /api/fleet/tailscale` — disconnect Tailscale.
pub async fn disconnect(
State(state): State<AppState>,
Authed(user): Authed,
) -> Result<Json<Value>, ApiError> {
fleet_tailscale::delete(&state.pool, user.workspace_id).await?;
Ok(Json(json!({ "ok": true })))
}
/// `GET /api/fleet/tailscale/devices` — proxy the Tailscale tailnet device list
/// (online/last-seen/IP/version) for the Fleet network overview.
pub async fn devices(
State(state): State<AppState>,
Authed(user): Authed,
) -> Result<Json<Value>, ApiError> {
let Some((api_key, tailnet)) = fleet_tailscale::get(&state.pool, user.workspace_id).await?
else {
return Ok(Json(json!({ "connected": false, "devices": [] })));
};
let url = format!("https://api.tailscale.com/api/v2/tailnet/{tailnet}/devices");
let resp = reqwest::Client::new()
.get(&url)
.bearer_auth(&api_key)
.send()
.await;
let body = match resp {
Ok(r) if r.status().is_success() => r.json::<Value>().await.unwrap_or_else(|_| json!({})),
Ok(r) => {
return Ok(Json(
json!({ "connected": true, "tailnet": tailnet, "error": format!("tailscale api {}", r.status()), "devices": [] }),
));
}
Err(e) => {
return Ok(Json(
json!({ "connected": true, "tailnet": tailnet, "error": e.to_string(), "devices": [] }),
));
}
};
let devices: Vec<Value> = body
.get("devices")
.and_then(Value::as_array)
.map(|arr| {
arr.iter()
.map(|d| {
json!({
"name": d.get("hostname").or_else(|| d.get("name")).and_then(Value::as_str),
"addr": d.get("addresses").and_then(Value::as_array).and_then(|a| a.first()).and_then(Value::as_str),
"os": d.get("os").and_then(Value::as_str),
"version": d.get("clientVersion").and_then(Value::as_str),
"lastSeen": d.get("lastSeen").and_then(Value::as_str),
})
})
.collect()
})
.unwrap_or_default();
Ok(Json(
json!({ "connected": true, "tailnet": tailnet, "devices": devices }),
))
}