mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 00:03:07 +00:00
* feat(pipelines): parse duckdb macro-library annotations (// macros, // use) * feat(pipelines): duckdb macro registry tables + deploy-path validation and writes * feat(pipelines): inject workspace duckdb macros into consumer jobs at run time * feat(pipelines): surface macro libraries and lib-consumer edges in asset graph api * feat(frontend): macro-library nodes, lib-consumer edges and scaffold in pipeline graph * docs: mark dbt gap #7 (packages/macros) shipped via workspace macro libraries * fix(pipelines): review fixes - char-safe parsing, local macros win, fork clone, trust-model docs * feat(frontend): duckdb macro autocomplete + workspace macro explorer drawer * fix(pipelines): address CI review - use-setup retention, splice past local defs, orphan filter, full consumer rescan, index-keyed strip * fix(pipelines): inject provider library setup for implicitly-called macros too * fix(pipelines): rls-gate macro listing + honor library-level // use transitively * fix(pipelines): weave injected macros around local definitions by bind order * fix(pipelines): injected library setup always runs before user blocks * perf(pipelines): cache macro registry per workspace with notify-event invalidation * perf(pipelines): disable macro registry cache on cloud
1313 lines
49 KiB
Rust
1313 lines
49 KiB
Rust
use axum::{
|
|
extract::{Path, Query},
|
|
routing::{get, post},
|
|
Extension, Json, Router,
|
|
};
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_json::Value;
|
|
use sqlx::Row;
|
|
use windmill_common::{
|
|
assets::{parse_asset_trigger_ref, AssetKind, AssetUsageKind},
|
|
db::UserDB,
|
|
error::JsonResult,
|
|
utils::escape_ilike_pattern,
|
|
};
|
|
|
|
use windmill_api_auth::{build_scope_path_predicate, ApiAuthed};
|
|
|
|
// Partition-range backfill preview. The logic (producer resolution, range
|
|
// enumeration, status join) is enterprise: the `private` build compiles the
|
|
// EE module, the public build a stub that errors.
|
|
#[cfg(feature = "private")]
|
|
mod backfill_ee;
|
|
#[cfg(feature = "private")]
|
|
use backfill_ee as backfill;
|
|
#[cfg(not(feature = "private"))]
|
|
mod backfill_oss;
|
|
#[cfg(not(feature = "private"))]
|
|
use backfill_oss as backfill;
|
|
|
|
pub fn workspaced_service() -> Router {
|
|
Router::new()
|
|
.route("/list", get(list_assets))
|
|
.route("/list_by_usages", post(list_assets_by_usages))
|
|
.route("/list_favorites", get(list_favorites))
|
|
.route("/graph", get(asset_graph))
|
|
.route("/pipelines", get(list_pipeline_folders))
|
|
.route("/partitions", get(list_partitions))
|
|
.route("/partitions_in_range", get(list_partitions_in_range))
|
|
.route("/asset_schemas", get(list_asset_schemas))
|
|
.route("/record_materialization", post(record_materialization))
|
|
.route("/macros", get(list_macros))
|
|
}
|
|
|
|
// One registry macro, with its full definition — drives the macro-explorer
|
|
// drawer (body preview) and the DuckDB editor autocomplete (signatures).
|
|
#[derive(Serialize)]
|
|
struct MacroListItem {
|
|
name: String,
|
|
params: String,
|
|
body: String,
|
|
is_table: bool,
|
|
provider_path: String,
|
|
}
|
|
|
|
// Every workspace macro (`// macros` libraries), grouped client-side by
|
|
// provider. Small by construction — one row per macro definition. The rows
|
|
// copy script body text, so visibility must match reading the provider
|
|
// script itself: the EXISTS join runs under the user_db transaction (script
|
|
// RLS filters libraries the caller can't read) and the scope predicate
|
|
// covers path-scoped tokens, mirroring `list_scripts`.
|
|
async fn list_macros(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
) -> JsonResult<Vec<MacroListItem>> {
|
|
let scope_allowed = build_scope_path_predicate(&authed, "scripts", "read");
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
let rows = sqlx::query!(
|
|
r#"SELECT m.name AS "name!", m.params AS "params!", m.body AS "body!",
|
|
m.is_table_macro AS "is_table_macro!", m.provider_path AS "provider_path!"
|
|
FROM macro_definition m
|
|
WHERE m.workspace_id = $1
|
|
AND EXISTS (
|
|
SELECT 1 FROM script s
|
|
WHERE s.workspace_id = m.workspace_id
|
|
AND s.path = m.provider_path
|
|
AND s.archived = false
|
|
AND s.deleted = false
|
|
)
|
|
ORDER BY m.provider_path, m.name"#,
|
|
&w_id,
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
tx.commit().await?;
|
|
Ok(Json(
|
|
rows.into_iter()
|
|
.filter(|r| scope_allowed(&r.provider_path))
|
|
.map(|r| MacroListItem {
|
|
name: r.name,
|
|
params: r.params,
|
|
body: r.body,
|
|
is_table: r.is_table_macro,
|
|
provider_path: r.provider_path,
|
|
})
|
|
.collect(),
|
|
))
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
struct PartitionsQuery {
|
|
// The materialized asset path (`<ducklake>/<table>`).
|
|
path: String,
|
|
}
|
|
|
|
// Per-partition materialization status for a ducklake asset — drives the
|
|
// partition-status grid and the backfill worklist. Materialization targets are
|
|
// ducklake-only in v1, so the kind is fixed.
|
|
async fn list_partitions(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Query(q): Query<PartitionsQuery>,
|
|
) -> JsonResult<Vec<windmill_common::materialization::MaterializedPartition>> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
let rows = windmill_common::materialization::list_materialized_partitions(
|
|
&mut *tx,
|
|
&w_id,
|
|
AssetKind::Ducklake,
|
|
&q.path,
|
|
)
|
|
.await?;
|
|
tx.commit().await?;
|
|
Ok(Json(rows))
|
|
}
|
|
|
|
// Only the EE `backfill` module reads the fields; the OSS stub errors without
|
|
// touching them.
|
|
#[cfg_attr(not(feature = "private"), allow(dead_code))]
|
|
#[derive(Deserialize)]
|
|
struct PartitionsInRangeQuery {
|
|
// The materialized ducklake asset path (`<ducklake>/<table>`).
|
|
path: String,
|
|
// Inclusive calendar-day range (YYYY-MM-DD), local to the producer's
|
|
// partition tz.
|
|
from: chrono::NaiveDate,
|
|
to: chrono::NaiveDate,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct PartitionInRange {
|
|
partition: String,
|
|
// `missing` | `running` | `materialized` | `failed` — `missing` means no
|
|
// materialization was ever recorded for the slice.
|
|
status: &'static str,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct PartitionsInRangeResponse {
|
|
// The pipeline script that materializes the asset (managed `// materialize`
|
|
// target, or a partitioned writer using the SDK helpers) — the runnable a
|
|
// backfill launches (with an explicit `partition` arg per slice).
|
|
producer_path: String,
|
|
partition_kind: String,
|
|
partitions: Vec<PartitionInRange>,
|
|
}
|
|
|
|
// Backfill range preview: every partition the producer's `// partitioned` spec
|
|
// expects in `[from, to]`, joined with what `materialized_partition` records —
|
|
// the missing/failed subset is the backfill worklist. The logic is in the
|
|
// `backfill` module pair: EE resolves and enumerates, the OSS stub errors
|
|
// (single-partition runs stay available everywhere; fanning out over a range
|
|
// is enterprise).
|
|
async fn list_partitions_in_range(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Query(q): Query<PartitionsInRangeQuery>,
|
|
) -> JsonResult<PartitionsInRangeResponse> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
let res = backfill::partitions_in_range(&mut tx, &w_id, &q).await?;
|
|
tx.commit().await?;
|
|
Ok(Json(res))
|
|
}
|
|
|
|
// Per-asset captured output schema versions for a ducklake asset (gap #2a) —
|
|
// the schema-evolution history persisted after each managed `// materialize`.
|
|
// Newest version first; materialization targets are ducklake-only in v1, so the
|
|
// kind is fixed.
|
|
async fn list_asset_schemas(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Query(q): Query<PartitionsQuery>,
|
|
) -> JsonResult<Vec<windmill_common::materialization::AssetSchemaVersion>> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
let rows = windmill_common::materialization::list_asset_schemas(
|
|
&mut *tx,
|
|
&w_id,
|
|
AssetKind::Ducklake,
|
|
&q.path,
|
|
)
|
|
.await?;
|
|
tx.commit().await?;
|
|
Ok(Json(rows))
|
|
}
|
|
|
|
// Record a materialization outcome from a polyglot (Python/TS) `wmill.ducklake`
|
|
// helper running as a pipeline step. The DuckDB `// materialize` engine records
|
|
// this itself; the SDK helpers post here instead so SDK-materialized slices show
|
|
// up in the grid identically. When the helper also captured the output schema,
|
|
// that schema version is upserted too. RLS-scoped to the caller's workspace.
|
|
async fn record_materialization(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Json(req): Json<windmill_common::materialization::RecordMaterializationRequest>,
|
|
) -> JsonResult<()> {
|
|
let mut tx = user_db.clone().begin(&authed).await?;
|
|
windmill_common::materialization::record_materialization(
|
|
&mut *tx,
|
|
&w_id,
|
|
req.asset_kind,
|
|
&req.asset_path,
|
|
&req.partition,
|
|
req.status,
|
|
req.snapshot_id,
|
|
req.row_count,
|
|
req.job_id,
|
|
req.error.as_deref(),
|
|
)
|
|
.await?;
|
|
tx.commit().await?;
|
|
// Schema capture is independently best-effort (its own transaction for the
|
|
// per-asset advisory lock) and must never roll back the partition record
|
|
// above — mirroring the worker's `record_mat`. A lost schema version
|
|
// degrades the history, not the run. Only a successful (`Materialized`) write
|
|
// advances the recorded schema — a failed/running write must not (and a
|
|
// client shouldn't be able to bump the history by attaching a schema to one).
|
|
let is_materialized = matches!(
|
|
req.status,
|
|
windmill_common::materialization::MaterializationStatus::Materialized
|
|
);
|
|
if let (true, Some(columns)) = (is_materialized, req.schema.as_ref()) {
|
|
let res: windmill_common::error::Result<()> = async {
|
|
let mut tx = user_db.clone().begin(&authed).await?;
|
|
windmill_common::materialization::record_asset_schema(
|
|
&mut tx,
|
|
&w_id,
|
|
req.asset_kind,
|
|
&req.asset_path,
|
|
columns,
|
|
req.snapshot_id,
|
|
req.job_id,
|
|
)
|
|
.await?;
|
|
tx.commit().await?;
|
|
Ok(())
|
|
}
|
|
.await;
|
|
if let Err(e) = res {
|
|
tracing::warn!("failed to record captured asset schema: {e:#}");
|
|
}
|
|
}
|
|
Ok(Json(()))
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
struct ListAssetsQuery {
|
|
#[serde(default = "default_per_page")]
|
|
per_page: i64,
|
|
cursor_created_at: Option<chrono::DateTime<chrono::Utc>>,
|
|
cursor_id: Option<i64>,
|
|
pub asset_path: Option<String>,
|
|
pub usage_path: Option<String>,
|
|
pub asset_kinds: Option<String>,
|
|
// Exact path match filter
|
|
pub path: Option<String>,
|
|
// Filter by matching a subset of the columns using base64 encoded json subset
|
|
pub columns: Option<String>,
|
|
pub broad_filter: Option<String>,
|
|
}
|
|
|
|
fn default_per_page() -> i64 {
|
|
50
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct ListAssetsResponse {
|
|
assets: Vec<Value>,
|
|
next_cursor: Option<AssetCursor>,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct AssetCursor {
|
|
created_at: chrono::DateTime<chrono::Utc>,
|
|
id: i64,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
struct AssetRow {
|
|
result: Value,
|
|
max_created_at: chrono::DateTime<chrono::Utc>,
|
|
max_id: i64,
|
|
}
|
|
|
|
async fn list_assets(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Query(query): Query<ListAssetsQuery>,
|
|
) -> JsonResult<ListAssetsResponse> {
|
|
let per_page = query.per_page.min(1000).max(1);
|
|
let limit = per_page + 1;
|
|
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
|
|
// Build dynamic filter SQL
|
|
let mut asset_summary_filters = vec![
|
|
"asset.workspace_id = $1".to_string(),
|
|
"(asset.usage_kind <> 'flow' OR asset.usage_path = ANY(SELECT path FROM flow WHERE workspace_id = $1))".to_string(),
|
|
"(asset.usage_kind <> 'script' OR asset.usage_path = ANY(SELECT path FROM script WHERE workspace_id = $1))".to_string(),
|
|
];
|
|
|
|
let mut param_count = 2; // $1 = workspace_id, $2 = limit
|
|
|
|
// Asset path filter (ILIKE pattern match)
|
|
if query.asset_path.is_some() {
|
|
param_count += 1;
|
|
asset_summary_filters.push(format!("asset.path ILIKE ${}", param_count));
|
|
}
|
|
|
|
// Exact path filter
|
|
if query.path.is_some() {
|
|
param_count += 1;
|
|
asset_summary_filters.push(format!("asset.path = ${}", param_count));
|
|
}
|
|
|
|
// Columns filter (check if JSONB has all specified keys)
|
|
if query.columns.is_some() {
|
|
param_count += 1;
|
|
asset_summary_filters.push(format!("asset.columns ?& ${}", param_count));
|
|
}
|
|
|
|
// Usage path filter - for jobs, also check runnable_path
|
|
let needs_job_join_in_cte = query.usage_path.is_some();
|
|
if query.usage_path.is_some() {
|
|
param_count += 1;
|
|
asset_summary_filters.push(format!(
|
|
"(asset.usage_path ILIKE ${} OR (asset.usage_kind = 'job' AND job_cte.runnable_path ILIKE ${}))",
|
|
param_count, param_count
|
|
));
|
|
}
|
|
|
|
// Asset kinds filter
|
|
let asset_kinds = query
|
|
.asset_kinds
|
|
.map(|kinds_str| {
|
|
kinds_str
|
|
.split(',')
|
|
.map(|kind_str| {
|
|
serde_json::from_str::<AssetKind>(&format!("\"{}\"", kind_str.trim()))
|
|
})
|
|
.collect::<Result<Vec<_>, _>>()
|
|
})
|
|
.transpose()
|
|
.map_err(|_| {
|
|
windmill_common::error::Error::BadRequest("Invalid asset_kinds parameter".to_string())
|
|
})?;
|
|
let has_asset_kinds = asset_kinds.as_ref().map(|v| !v.is_empty()).unwrap_or(false);
|
|
if has_asset_kinds {
|
|
param_count += 1;
|
|
asset_summary_filters.push(format!("asset.kind = ANY(${})", param_count));
|
|
}
|
|
|
|
if query.broad_filter.is_some() {
|
|
param_count += 1;
|
|
asset_summary_filters.push(format!(
|
|
"(asset.path ILIKE ${p} OR asset.kind::text ILIKE ${p})",
|
|
p = param_count
|
|
));
|
|
}
|
|
|
|
let asset_summary_where = asset_summary_filters.join(" AND ");
|
|
|
|
// Build cursor condition
|
|
let cursor_having = if query.cursor_created_at.is_some() && query.cursor_id.is_some() {
|
|
param_count += 2;
|
|
format!("HAVING MAX(asset.created_at) < ${} OR (MAX(asset.created_at) = ${} AND MAX(asset.id) < ${})",
|
|
param_count - 1, param_count - 1, param_count)
|
|
} else {
|
|
String::new()
|
|
};
|
|
|
|
// Build FROM clause for CTE with optional job join
|
|
let cte_from = if needs_job_join_in_cte {
|
|
format!(
|
|
r#"FROM asset
|
|
LEFT JOIN v2_job job_cte ON asset.usage_kind = 'job'
|
|
AND job_cte.id = CASE WHEN asset.usage_kind = 'job' THEN asset.usage_path::uuid END
|
|
AND job_cte.workspace_id = $1"#
|
|
)
|
|
} else {
|
|
"FROM asset".to_string()
|
|
};
|
|
|
|
let sql = format!(
|
|
r#"
|
|
WITH asset_summary AS (
|
|
SELECT
|
|
asset.path,
|
|
asset.kind,
|
|
MAX(asset.created_at) as max_created_at,
|
|
MAX(asset.id) as max_id
|
|
{}
|
|
WHERE {}
|
|
GROUP BY asset.path, asset.kind
|
|
{}
|
|
ORDER BY max_created_at DESC, max_id DESC
|
|
LIMIT $2
|
|
)
|
|
SELECT
|
|
jsonb_strip_nulls(jsonb_build_object(
|
|
'path', asset.path,
|
|
'kind', asset.kind,
|
|
'usages', ARRAY_AGG(
|
|
jsonb_strip_nulls(jsonb_build_object(
|
|
'path', asset.usage_path,
|
|
'kind', asset.usage_kind,
|
|
'access_type', asset.usage_access_type,
|
|
'columns', asset.columns,
|
|
'created_at', asset.created_at,
|
|
'metadata', (CASE
|
|
WHEN asset.usage_kind = 'job' THEN
|
|
jsonb_build_object('runnable_path', job.runnable_path, 'job_kind', job.kind)
|
|
ELSE
|
|
NULL
|
|
END
|
|
)
|
|
))
|
|
ORDER BY asset.created_at DESC
|
|
),
|
|
'metadata', (CASE
|
|
WHEN asset.kind = 'resource' THEN
|
|
jsonb_build_object('resource_type', resource.resource_type)
|
|
ELSE
|
|
NULL
|
|
END
|
|
)
|
|
)) as result,
|
|
asset_summary.max_created_at,
|
|
asset_summary.max_id
|
|
FROM asset
|
|
INNER JOIN asset_summary ON asset.path = asset_summary.path AND asset.kind = asset_summary.kind
|
|
LEFT JOIN resource ON asset.kind = 'resource'
|
|
AND (
|
|
-- Extract base path before '?' for ?table= syntax
|
|
CASE
|
|
WHEN asset.path LIKE '%?%' THEN split_part(asset.path, '?', 1)
|
|
ELSE asset.path
|
|
END
|
|
) = resource.path
|
|
AND resource.workspace_id = $1
|
|
LEFT JOIN v2_job job ON asset.usage_kind = 'job'
|
|
AND job.id = CASE WHEN asset.usage_kind = 'job' THEN asset.usage_path::uuid END
|
|
AND job.workspace_id = $1
|
|
WHERE asset.workspace_id = $1
|
|
AND (asset.kind <> 'resource' OR resource.path IS NOT NULL)
|
|
AND (asset.usage_kind <> 'job' OR job.id IS NOT NULL)
|
|
GROUP BY asset.path, asset.kind, resource.resource_type, asset_summary.max_created_at, asset_summary.max_id
|
|
ORDER BY asset_summary.max_created_at DESC, asset_summary.max_id DESC
|
|
"#,
|
|
cte_from, asset_summary_where, cursor_having
|
|
);
|
|
|
|
// Build query with dynamic parameters
|
|
let mut query_builder = sqlx::query(&sql).bind(&w_id).bind(limit);
|
|
|
|
if let Some(ref asset_path) = query.asset_path {
|
|
query_builder = query_builder.bind(format!("%{}%", escape_ilike_pattern(asset_path)));
|
|
}
|
|
|
|
if let Some(ref path) = query.path {
|
|
query_builder = query_builder.bind(path);
|
|
}
|
|
|
|
if let Some(ref columns) = query.columns {
|
|
// Columns is a comma-separated string, split into array for ?& operator
|
|
let columns_array: Vec<String> = columns
|
|
.split(',')
|
|
.map(|s| s.trim().to_string())
|
|
.filter(|s| !s.is_empty())
|
|
.collect();
|
|
query_builder = query_builder.bind(columns_array);
|
|
}
|
|
|
|
if let Some(ref usage_path) = query.usage_path {
|
|
query_builder = query_builder.bind(format!("%{}%", escape_ilike_pattern(usage_path)));
|
|
}
|
|
|
|
if let Some(ref asset_kinds) = asset_kinds {
|
|
if !asset_kinds.is_empty() {
|
|
query_builder = query_builder.bind(asset_kinds);
|
|
}
|
|
}
|
|
|
|
if let Some(ref broad_filter) = query.broad_filter {
|
|
query_builder = query_builder.bind(format!("%{}%", escape_ilike_pattern(broad_filter)));
|
|
}
|
|
|
|
if let (Some(cursor_created_at), Some(cursor_id)) = (query.cursor_created_at, query.cursor_id) {
|
|
query_builder = query_builder.bind(cursor_created_at).bind(cursor_id);
|
|
}
|
|
|
|
let db_rows = query_builder.fetch_all(&mut *tx).await?;
|
|
|
|
let rows: Vec<AssetRow> = db_rows
|
|
.iter()
|
|
.map(|row| AssetRow {
|
|
result: row.try_get("result").unwrap_or(Value::Null),
|
|
max_created_at: row.try_get("max_created_at").unwrap(),
|
|
max_id: row.try_get("max_id").unwrap(),
|
|
})
|
|
.collect();
|
|
|
|
let assets: Vec<Value> = rows
|
|
.iter()
|
|
.take(per_page as usize)
|
|
.map(|r| r.result.clone())
|
|
.collect();
|
|
|
|
let next_cursor = if rows.len() as i64 > per_page {
|
|
let last = &rows[per_page as usize - 1];
|
|
Some(AssetCursor { created_at: last.max_created_at, id: last.max_id })
|
|
} else {
|
|
None
|
|
};
|
|
|
|
Ok(Json(ListAssetsResponse { assets, next_cursor }))
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct ListAssetsByUsagesBodyInner {
|
|
kind: AssetUsageKind,
|
|
path: String,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
struct ListAssetsByUsagesBody {
|
|
usages: Vec<ListAssetsByUsagesBodyInner>,
|
|
}
|
|
|
|
async fn list_assets_by_usages(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Json(body): Json<ListAssetsByUsagesBody>,
|
|
) -> JsonResult<Vec<Vec<Value>>> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
let mut assets_vec = vec![];
|
|
for usage in body.usages {
|
|
let assets = sqlx::query_scalar!(
|
|
r#"SELECT
|
|
jsonb_strip_nulls(jsonb_build_object(
|
|
'path', path,
|
|
'kind', kind,
|
|
'access_type', usage_access_type,
|
|
'columns', columns
|
|
)) as "list!: _"
|
|
FROM asset
|
|
WHERE workspace_id = $1 AND usage_path = $2 AND usage_kind = $3
|
|
ORDER BY path, kind"#,
|
|
w_id,
|
|
usage.path,
|
|
usage.kind as AssetUsageKind
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
assets_vec.push(assets);
|
|
}
|
|
Ok(Json(assets_vec))
|
|
}
|
|
|
|
async fn list_favorites(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
) -> JsonResult<Vec<Value>> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
|
|
let favorites = sqlx::query_scalar!(
|
|
r#"SELECT
|
|
jsonb_strip_nulls(jsonb_build_object(
|
|
'path', favorite.path
|
|
)) as "favorite_asset!: _"
|
|
FROM favorite
|
|
WHERE favorite.workspace_id = $1
|
|
AND favorite.usr = $2
|
|
AND favorite_kind = 'asset'
|
|
"#,
|
|
&w_id,
|
|
&authed.username
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
Ok(Json(favorites))
|
|
}
|
|
|
|
// ------------------------------------------------------------------
|
|
// GET /w/:workspace/assets/graph
|
|
// ------------------------------------------------------------------
|
|
// Workspace-wide asset ↔ runnable graph. One row per unique
|
|
// (asset_kind, asset_path, usage_kind, usage_path, access_type) — the
|
|
// frontend aggregates into nodes and edges.
|
|
|
|
#[derive(Deserialize)]
|
|
struct GraphQuery {
|
|
pub asset_kinds: Option<String>,
|
|
pub folder: Option<String>,
|
|
}
|
|
|
|
#[derive(Serialize, Debug)]
|
|
struct GraphAssetNode {
|
|
kind: AssetKind,
|
|
path: String,
|
|
}
|
|
|
|
#[derive(Serialize, Debug)]
|
|
struct GraphRunnableNode {
|
|
path: String,
|
|
usage_kind: AssetUsageKind,
|
|
// True iff the script was deployed with `// pipeline` — drives the
|
|
// pipeline-member visual state on the frontend.
|
|
#[serde(skip_serializing_if = "std::ops::Not::not", default)]
|
|
in_pipeline: bool,
|
|
// Annotation badges parsed from the deployed script body, so the canvas
|
|
// shows partition/freshness/tag/retry/data-test chips on *deployed* nodes
|
|
// (not only on live-edited drafts, which the frontend parses itself). Kept
|
|
// in lockstep with the TS `AssetGraphRunnableNode` fields the node renders.
|
|
#[serde(skip_serializing_if = "Option::is_none", default)]
|
|
partition_kind: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none", default)]
|
|
freshness: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none", default)]
|
|
tag: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none", default)]
|
|
retry: Option<windmill_common::assets::RetrySpec>,
|
|
#[serde(skip_serializing_if = "Vec::is_empty", default)]
|
|
data_tests: Vec<windmill_common::assets::DataTest>,
|
|
// `// column <out> <- <src>.<col>` declared column-level lineage, surfaced
|
|
// so the canvas can draw the column-lineage view on deployed nodes (not
|
|
// only live drafts). Lockstep with TS `AssetGraphRunnableNode.column_lineage`.
|
|
#[serde(skip_serializing_if = "Vec::is_empty", default)]
|
|
column_lineage: Vec<windmill_common::assets::ColumnLineage>,
|
|
// `// materialize <asset>` target — the asset this script's `column_lineage`
|
|
// describes. Lets the column-graph anchor lineage to the exact output asset
|
|
// instead of guessing a ducklake write-edge (a multi-output script writes
|
|
// several). Absent for scripts with no `// materialize` annotation.
|
|
#[serde(skip_serializing_if = "Option::is_none", default)]
|
|
materialize_target: Option<MaterializeTargetNode>,
|
|
// Managed `// materialize` write strategy (`replace` | `append` | `merge`),
|
|
// absent for non-materializing or `manual` scripts. Surfaced so the asset
|
|
// panel can tell whether the captured schema can evolve: only whole-table
|
|
// `replace` (CREATE OR REPLACE) can change columns run-to-run; `append` /
|
|
// `merge` / any partitioned write INSERTs into a fixed-schema table.
|
|
#[serde(skip_serializing_if = "Option::is_none", default)]
|
|
materialize_strategy: Option<String>,
|
|
// Macros this script provides to the workspace registry (deployed
|
|
// `// macros` library). Drives the library node state + details-pane
|
|
// signature list. Lockstep with TS `AssetGraphRunnableNode.macros`.
|
|
#[serde(skip_serializing_if = "Vec::is_empty", default)]
|
|
macros: Vec<MacroInfo>,
|
|
}
|
|
|
|
// One macro of a `// macros` library, as surfaced on its graph node.
|
|
#[derive(Serialize, Debug, Clone)]
|
|
struct MacroInfo {
|
|
name: String,
|
|
// Verbatim parameter list, for the `name(params)` signature display.
|
|
params: String,
|
|
is_table: bool,
|
|
}
|
|
|
|
// A macro-library → consumer edge: the consumer calls `macro_names` of
|
|
// `lib_path`'s macros (deploy-recorded detection), or pulls in the whole
|
|
// library via `// use` (`via_use`, in which case `macro_names` lists all of
|
|
// the library's macros).
|
|
#[derive(Serialize, Debug)]
|
|
struct MacroEdge {
|
|
lib_path: String,
|
|
consumer_path: String,
|
|
macro_names: Vec<String>,
|
|
via_use: bool,
|
|
}
|
|
|
|
// The output asset a producer's column lineage belongs to (the `// materialize`
|
|
// target). Kept minimal — the column graph only needs (kind, path) to anchor.
|
|
#[derive(Serialize, Debug)]
|
|
struct MaterializeTargetNode {
|
|
kind: windmill_common::assets::AssetKind,
|
|
path: String,
|
|
}
|
|
|
|
// The partition's kind word for the node badge (the full PartitionSpec carries
|
|
// tz/format/start, which the badge doesn't need).
|
|
fn partition_kind_word(kind: &windmill_common::assets::PartitionKind) -> &'static str {
|
|
use windmill_common::assets::PartitionKind::*;
|
|
match kind {
|
|
Daily => "daily",
|
|
Hourly => "hourly",
|
|
Weekly => "weekly",
|
|
Monthly => "monthly",
|
|
Dynamic { .. } => "dynamic",
|
|
}
|
|
}
|
|
|
|
// Lineage edge from parsed r/w usages. One per (runnable, asset, access_type)
|
|
// tuple. Informational — not the DAG execution edges.
|
|
#[derive(Serialize, Debug)]
|
|
struct GraphEdge {
|
|
runnable_path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
asset_kind: AssetKind,
|
|
asset_path: String,
|
|
access_type: Option<String>,
|
|
}
|
|
|
|
// Declared `// on <trigger>` trigger edge — the actual execution DAG.
|
|
// Asset edges come from `script_trigger`; the eight native variants
|
|
// (Schedule/Email/Kafka/…/Gcp) come from the per-kind trigger tables joined
|
|
// on `script_path`. Each native variant carries just the trigger row's path;
|
|
// the config (cron, broker, topic, auth, …) lives in its own UI.
|
|
//
|
|
// `webhook` is parsed as an annotation marker but has no dedicated trigger
|
|
// table — every script gets an implicit webhook endpoint — so no variant
|
|
// here. The frontend renders the marker from the source annotations alone.
|
|
#[derive(Serialize, Debug)]
|
|
#[serde(tag = "trigger_kind", rename_all = "lowercase")]
|
|
enum TriggerEdge {
|
|
Asset {
|
|
asset_kind: AssetKind,
|
|
asset_path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
Schedule {
|
|
path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
Email {
|
|
path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
Kafka {
|
|
path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
Mqtt {
|
|
path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
Nats {
|
|
path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
Postgres {
|
|
path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
Sqs {
|
|
path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
Gcp {
|
|
path: String,
|
|
runnable_kind: AssetUsageKind,
|
|
runnable_path: String,
|
|
},
|
|
}
|
|
|
|
#[derive(Serialize, Debug)]
|
|
struct AssetGraphResponse {
|
|
assets: Vec<GraphAssetNode>,
|
|
runnables: Vec<GraphRunnableNode>,
|
|
edges: Vec<GraphEdge>,
|
|
triggers: Vec<TriggerEdge>,
|
|
#[serde(skip_serializing_if = "Vec::is_empty", default)]
|
|
macro_edges: Vec<MacroEdge>,
|
|
}
|
|
|
|
async fn asset_graph(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Query(q): Query<GraphQuery>,
|
|
) -> JsonResult<AssetGraphResponse> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
|
|
let kind_filter: Option<Vec<AssetKind>> = q.asset_kinds.as_ref().map(|s| {
|
|
s.split(',')
|
|
.filter_map(|k| {
|
|
serde_json::from_value::<AssetKind>(Value::String(k.trim().into())).ok()
|
|
})
|
|
.collect()
|
|
});
|
|
let kind_filter_ref = kind_filter.as_deref();
|
|
|
|
let folder_filter = q.folder.as_deref().map(|f| format!("f/{}/%", f));
|
|
|
|
// One row per (asset_kind, asset_path, usage_kind, usage_path, access_type).
|
|
// The `usage_kind IN ('script','flow')` clause excludes `job`-kind usage rows
|
|
// (runtime-detected, ephemeral) so the graph stays stable.
|
|
let rows = sqlx::query!(
|
|
r#"
|
|
SELECT
|
|
asset.kind AS "asset_kind!: AssetKind",
|
|
asset.path AS "asset_path!",
|
|
asset.usage_kind AS "usage_kind!: AssetUsageKind",
|
|
asset.usage_path AS "usage_path!",
|
|
asset.usage_access_type::text AS "access_type"
|
|
FROM asset
|
|
WHERE asset.workspace_id = $1
|
|
AND asset.usage_kind IN ('script', 'flow')
|
|
AND ($2::asset_kind[] IS NULL OR asset.kind = ANY($2))
|
|
AND ($3::text IS NULL OR asset.usage_path LIKE $3)
|
|
GROUP BY asset.kind, asset.path, asset.usage_kind, asset.usage_path, asset.usage_access_type
|
|
"#,
|
|
&w_id,
|
|
kind_filter_ref as Option<&[AssetKind]>,
|
|
folder_filter.as_deref(),
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
// Pipeline asset trigger edges, fetched separately so we can widen the
|
|
// runnable_set for trigger-only endpoints (e.g. an asset trigger whose
|
|
// asset has no usage in the pipeline yet). Native trigger kinds
|
|
// (schedule, kafka, mqtt, …) are *not* in `script_trigger` — they're
|
|
// discovered below by querying each native trigger table directly.
|
|
let trigger_rows = sqlx::query!(
|
|
r#"
|
|
SELECT
|
|
runnable_kind AS "runnable_kind!: AssetUsageKind",
|
|
runnable_path AS "runnable_path!",
|
|
trigger_kind::text AS "trigger_kind!",
|
|
trigger_ref AS "trigger_ref!"
|
|
FROM script_trigger
|
|
WHERE workspace_id = $1
|
|
AND trigger_kind = 'asset'
|
|
AND ($2::text IS NULL OR runnable_path LIKE $2)
|
|
"#,
|
|
&w_id,
|
|
folder_filter.as_deref(),
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
// Native triggers in scope. Each native trigger table stores its
|
|
// single-destination `script_path` directly, so we resolve attachment by
|
|
// joining on that field rather than via `script_trigger`. UNION ALL keeps
|
|
// it a single round trip; the `kind` column drives the TriggerEdge ctor
|
|
// below. `schedule` lives in the `schedule` table, which has its own
|
|
// shape (no workspace_id-only filter — it shares `is_flow` like the
|
|
// others), but the columns we need line up.
|
|
let native_trigger_rows = sqlx::query!(
|
|
r#"
|
|
SELECT kind, path, script_path, is_flow FROM (
|
|
SELECT 'schedule' AS kind, path, script_path, is_flow FROM schedule
|
|
WHERE workspace_id = $1
|
|
AND script_path IS NOT NULL
|
|
UNION ALL
|
|
SELECT 'email', path, script_path, is_flow FROM email_trigger
|
|
WHERE workspace_id = $1
|
|
UNION ALL
|
|
SELECT 'kafka', path, script_path, is_flow FROM kafka_trigger
|
|
WHERE workspace_id = $1
|
|
UNION ALL
|
|
SELECT 'mqtt', path, script_path, is_flow FROM mqtt_trigger
|
|
WHERE workspace_id = $1
|
|
UNION ALL
|
|
SELECT 'nats', path, script_path, is_flow FROM nats_trigger
|
|
WHERE workspace_id = $1
|
|
UNION ALL
|
|
SELECT 'postgres', path, script_path, is_flow FROM postgres_trigger
|
|
WHERE workspace_id = $1
|
|
UNION ALL
|
|
SELECT 'sqs', path, script_path, is_flow FROM sqs_trigger
|
|
WHERE workspace_id = $1
|
|
UNION ALL
|
|
SELECT 'gcp', path, script_path, is_flow FROM gcp_trigger
|
|
WHERE workspace_id = $1
|
|
) t
|
|
WHERE ($2::text IS NULL OR script_path LIKE $2)
|
|
"#,
|
|
&w_id,
|
|
folder_filter.as_deref(),
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
// Which scripts in scope are pipeline members (have `// pipeline`).
|
|
// Pipeline members + their latest deployed body, so the graph can surface
|
|
// annotation badges (partition/freshness/tag/retry/data_test) on deployed
|
|
// nodes. `DISTINCT ON (path) … ORDER BY created_at DESC` picks the newest
|
|
// non-archived version per path (a redeploy archives the prior one, but be
|
|
// defensive against transient overlaps).
|
|
let pipeline_member_paths = sqlx::query!(
|
|
r#"
|
|
SELECT DISTINCT ON (path) path AS "path!", content AS "content!",
|
|
language AS "language!: windmill_common::scripts::ScriptLang"
|
|
FROM script
|
|
WHERE workspace_id = $1
|
|
AND auto_kind = 'pipeline'
|
|
AND archived = false
|
|
AND deleted = false
|
|
AND ($2::text IS NULL OR path LIKE $2)
|
|
ORDER BY path, created_at DESC
|
|
"#,
|
|
&w_id,
|
|
folder_filter.as_deref(),
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
// Existing scripts / flows in the workspace. Used to filter out
|
|
// orphan trigger rows whose `script_path` no longer resolves — those
|
|
// would otherwise be added to `runnable_set` below and surface as
|
|
// phantom "deployed" runnables on the canvas (matching what the user
|
|
// can deploy a new trigger against: nothing).
|
|
let existing_script_paths = sqlx::query_scalar!(
|
|
r#"SELECT path AS "path!" FROM script
|
|
WHERE workspace_id = $1
|
|
AND archived = false
|
|
AND deleted = false"#,
|
|
&w_id,
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
let existing_flow_paths = sqlx::query_scalar!(
|
|
r#"SELECT path AS "path!" FROM flow WHERE workspace_id = $1 AND archived = false"#,
|
|
&w_id,
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
// Workspace macro registry + deploy-recorded call edges. Definitions are
|
|
// fetched unfiltered so an out-of-folder library still appears as the
|
|
// provider endpoint of in-scope consumers' edges; consumers honor the
|
|
// folder filter like every other runnable query.
|
|
let macro_def_rows = sqlx::query!(
|
|
r#"SELECT name AS "name!", provider_path AS "provider_path!",
|
|
params AS "params!", is_table_macro AS "is_table_macro!"
|
|
FROM macro_definition
|
|
WHERE workspace_id = $1
|
|
ORDER BY provider_path, name"#,
|
|
&w_id,
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
let macro_usage_rows = sqlx::query!(
|
|
r#"SELECT consumer_path AS "consumer_path!", macro_name AS "macro_name!"
|
|
FROM macro_usage
|
|
WHERE workspace_id = $1
|
|
AND ($2::text IS NULL OR consumer_path LIKE $2)"#,
|
|
&w_id,
|
|
folder_filter.as_deref(),
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
|
|
// Parse each pipeline member's body once into its badge annotations, keyed
|
|
// by path, for the runnable-node construction below.
|
|
let annotations_by_path: std::collections::HashMap<
|
|
String,
|
|
windmill_common::assets::PipelineAnnotations,
|
|
> = pipeline_member_paths
|
|
.iter()
|
|
.map(|r| {
|
|
(
|
|
r.path.clone(),
|
|
windmill_common::assets::parse_pipeline_annotations(&r.content),
|
|
)
|
|
})
|
|
.collect();
|
|
// Column-level lineage per member. The annotation-only lineage (already
|
|
// parsed above) is the baseline. For DuckDB scripts we additionally run the
|
|
// full SQL asset parser to infer output→input column edges from the AST; it
|
|
// merges them with the `// column` annotations (annotation wins). If the SQL
|
|
// can't be parsed (DuckDB accepts grammar `sqlparser` rejects), we fall back
|
|
// to the annotation-only baseline rather than dropping explicit annotations.
|
|
let column_lineage_by_path: std::collections::HashMap<
|
|
String,
|
|
Vec<windmill_common::assets::ColumnLineage>,
|
|
> = pipeline_member_paths
|
|
.iter()
|
|
.map(|r| {
|
|
let annotated = || {
|
|
annotations_by_path
|
|
.get(&r.path)
|
|
.map(|a| a.column_lineage.clone())
|
|
.unwrap_or_default()
|
|
};
|
|
let lineage = if r.language == windmill_common::scripts::ScriptLang::DuckDb {
|
|
windmill_parser_sql_asset::parse_assets(&r.content)
|
|
.map(|o| o.column_lineage)
|
|
.unwrap_or_else(|_| annotated())
|
|
} else {
|
|
annotated()
|
|
};
|
|
(r.path.clone(), lineage)
|
|
})
|
|
.collect();
|
|
let pipeline_member_script_paths: std::collections::HashSet<String> =
|
|
pipeline_member_paths.into_iter().map(|r| r.path).collect();
|
|
let existing_script_paths: std::collections::HashSet<String> =
|
|
existing_script_paths.into_iter().collect();
|
|
let existing_flow_paths: std::collections::HashSet<String> =
|
|
existing_flow_paths.into_iter().collect();
|
|
let runnable_exists = |kind: AssetUsageKind, path: &str| match kind {
|
|
AssetUsageKind::Script => existing_script_paths.contains(path),
|
|
AssetUsageKind::Flow => existing_flow_paths.contains(path),
|
|
// `Job` is a runtime-detected ephemeral runnable (asset usage rows
|
|
// only), never a target of a stored trigger row. Treat as existing
|
|
// so we don't accidentally drop ephemeral lineage edges.
|
|
AssetUsageKind::Job => true,
|
|
};
|
|
|
|
let mut edges = Vec::with_capacity(rows.len());
|
|
let mut asset_set: std::collections::HashSet<(AssetKind, String)> = Default::default();
|
|
let mut runnable_set: std::collections::HashSet<(AssetUsageKind, String)> = Default::default();
|
|
|
|
// Every pipeline member in scope goes into the graph, even when the parser
|
|
// didn't detect any asset r/w and the script has no triggers yet. Without
|
|
// this, a freshly-saved pipeline script whose template body hasn't been
|
|
// filled in would vanish from the pipeline view on graph refetch.
|
|
for path in &pipeline_member_script_paths {
|
|
runnable_set.insert((AssetUsageKind::Script, path.clone()));
|
|
}
|
|
|
|
for r in rows {
|
|
// Drop asset usage rows whose runnable target was archived/deleted
|
|
// but whose row in `asset` is still around — those would otherwise
|
|
// surface as a phantom "deployed" runnable on the canvas with no
|
|
// way to interact with it, since the underlying script/flow no
|
|
// longer exists.
|
|
if !runnable_exists(r.usage_kind, &r.usage_path) {
|
|
continue;
|
|
}
|
|
asset_set.insert((r.asset_kind, r.asset_path.clone()));
|
|
runnable_set.insert((r.usage_kind, r.usage_path.clone()));
|
|
edges.push(GraphEdge {
|
|
runnable_path: r.usage_path,
|
|
runnable_kind: r.usage_kind,
|
|
asset_kind: r.asset_kind,
|
|
asset_path: r.asset_path,
|
|
access_type: r.access_type,
|
|
});
|
|
}
|
|
|
|
let mut triggers: Vec<TriggerEdge> =
|
|
Vec::with_capacity(trigger_rows.len() + native_trigger_rows.len());
|
|
for t in trigger_rows {
|
|
// Drop orphan asset-trigger rows — their target runnable no longer
|
|
// exists (script/flow archived or deleted, or was never deployed).
|
|
// Without this, an orphan row would surface as a phantom "deployed"
|
|
// runnable on the canvas (no `unsaved` flag, can't actually be
|
|
// run / re-targeted by a new trigger).
|
|
if !runnable_exists(t.runnable_kind, &t.runnable_path) {
|
|
continue;
|
|
}
|
|
runnable_set.insert((t.runnable_kind, t.runnable_path.clone()));
|
|
if t.trigger_kind.as_str() == "asset" {
|
|
// trigger_ref is `<prefix><path>` — parse back out so both
|
|
// endpoints match what the frontend uses for node ids.
|
|
if let Some((asset_kind, asset_path)) = parse_asset_trigger_ref(&t.trigger_ref) {
|
|
// Make sure the source asset has a node even if nothing
|
|
// reads/writes it in this folder.
|
|
asset_set.insert((asset_kind, asset_path.clone()));
|
|
triggers.push(TriggerEdge::Asset {
|
|
asset_kind,
|
|
asset_path,
|
|
runnable_kind: t.runnable_kind,
|
|
runnable_path: t.runnable_path,
|
|
});
|
|
}
|
|
}
|
|
// Native kinds (schedule, kafka, mqtt, …) come from per-kind trigger
|
|
// tables below.
|
|
}
|
|
|
|
// Native trigger attachments — one TriggerEdge per row, the kind chosen
|
|
// from the discriminator. Add the runnable to the set so a script with
|
|
// no asset edges but a kafka/schedule attachment still renders on the
|
|
// canvas.
|
|
for t in native_trigger_rows {
|
|
let kind = t.kind.unwrap_or_default();
|
|
let path = t.path.unwrap_or_default();
|
|
let script_path = t.script_path.unwrap_or_default();
|
|
let runnable_kind = if t.is_flow.unwrap_or(false) {
|
|
AssetUsageKind::Flow
|
|
} else {
|
|
AssetUsageKind::Script
|
|
};
|
|
// Same orphan filter as the asset-trigger loop above — drop trigger
|
|
// rows whose target script/flow no longer exists so the graph
|
|
// doesn't synthesize a phantom deployed runnable.
|
|
if !runnable_exists(runnable_kind, &script_path) {
|
|
continue;
|
|
}
|
|
runnable_set.insert((runnable_kind, script_path.clone()));
|
|
let edge = match kind.as_str() {
|
|
"schedule" => TriggerEdge::Schedule { path, runnable_kind, runnable_path: script_path },
|
|
"email" => TriggerEdge::Email { path, runnable_kind, runnable_path: script_path },
|
|
"kafka" => TriggerEdge::Kafka { path, runnable_kind, runnable_path: script_path },
|
|
"mqtt" => TriggerEdge::Mqtt { path, runnable_kind, runnable_path: script_path },
|
|
"nats" => TriggerEdge::Nats { path, runnable_kind, runnable_path: script_path },
|
|
"postgres" => TriggerEdge::Postgres { path, runnable_kind, runnable_path: script_path },
|
|
"sqs" => TriggerEdge::Sqs { path, runnable_kind, runnable_path: script_path },
|
|
"gcp" => TriggerEdge::Gcp { path, runnable_kind, runnable_path: script_path },
|
|
_ => continue,
|
|
};
|
|
triggers.push(edge);
|
|
}
|
|
|
|
// Macro libraries + lib→consumer edges. Group per-provider macro lists,
|
|
// resolve each usage row's name to its provider (names are
|
|
// workspace-unique), and merge `// use` whole-lib edges from the parsed
|
|
// member annotations. Both endpoints are forced into the runnable set so
|
|
// an out-of-folder library still renders as the edge's provider node.
|
|
let mut macros_by_provider: std::collections::HashMap<String, Vec<MacroInfo>> =
|
|
Default::default();
|
|
let mut provider_by_name: std::collections::HashMap<String, String> = Default::default();
|
|
for r in macro_def_rows {
|
|
provider_by_name.insert(r.name.clone(), r.provider_path.clone());
|
|
macros_by_provider
|
|
.entry(r.provider_path)
|
|
.or_default()
|
|
.push(MacroInfo { name: r.name, params: r.params, is_table: r.is_table_macro });
|
|
}
|
|
let mut macro_edge_map: std::collections::BTreeMap<
|
|
(String, String),
|
|
(std::collections::BTreeSet<String>, bool),
|
|
> = Default::default();
|
|
for u in macro_usage_rows {
|
|
// Same orphan filter as the other edge loops.
|
|
if !runnable_exists(AssetUsageKind::Script, &u.consumer_path) {
|
|
continue;
|
|
}
|
|
let Some(lib) = provider_by_name.get(&u.macro_name) else {
|
|
continue;
|
|
};
|
|
let e = macro_edge_map
|
|
.entry((lib.clone(), u.consumer_path))
|
|
.or_default();
|
|
e.0.insert(u.macro_name);
|
|
}
|
|
for (path, ann) in &annotations_by_path {
|
|
for lib in &ann.use_libs {
|
|
// An undeployed `// use` target has no registry rows — the live
|
|
// draft overlay is the only surface that can render it.
|
|
let Some(lib_macros) = macros_by_provider.get(lib) else {
|
|
continue;
|
|
};
|
|
let e = macro_edge_map
|
|
.entry((lib.clone(), path.clone()))
|
|
.or_default();
|
|
e.1 = true;
|
|
e.0.extend(lib_macros.iter().map(|m| m.name.clone()));
|
|
}
|
|
}
|
|
let macro_edges: Vec<MacroEdge> = macro_edge_map
|
|
.into_iter()
|
|
// Same orphan filter as the other edge families: a registry row whose
|
|
// provider script no longer exists must not synthesize a phantom
|
|
// library node (consumers were filtered above, but the `// use` pass
|
|
// re-adds them, so re-check both endpoints).
|
|
.filter(|((lib_path, consumer_path), _)| {
|
|
runnable_exists(AssetUsageKind::Script, lib_path)
|
|
&& runnable_exists(AssetUsageKind::Script, consumer_path)
|
|
})
|
|
.map(|((lib_path, consumer_path), (names, via_use))| MacroEdge {
|
|
lib_path,
|
|
consumer_path,
|
|
macro_names: names.into_iter().collect(),
|
|
via_use,
|
|
})
|
|
.collect();
|
|
for e in ¯o_edges {
|
|
runnable_set.insert((AssetUsageKind::Script, e.lib_path.clone()));
|
|
runnable_set.insert((AssetUsageKind::Script, e.consumer_path.clone()));
|
|
}
|
|
|
|
let mut assets: Vec<GraphAssetNode> = asset_set
|
|
.into_iter()
|
|
.map(|(kind, path)| GraphAssetNode { kind, path })
|
|
.collect();
|
|
assets.sort_by(|a, b| a.path.cmp(&b.path));
|
|
|
|
let mut runnables: Vec<GraphRunnableNode> = runnable_set
|
|
.into_iter()
|
|
.map(|(usage_kind, path)| {
|
|
let in_pipeline = usage_kind == AssetUsageKind::Script
|
|
&& pipeline_member_script_paths.contains(&path);
|
|
// Annotation badges, only for pipeline-member scripts (the only
|
|
// bodies we parsed). Gate on the runnable kind too: a flow sharing a
|
|
// path with a pipeline script must not inherit its badges.
|
|
let ann = (usage_kind == AssetUsageKind::Script)
|
|
.then(|| annotations_by_path.get(&path))
|
|
.flatten();
|
|
GraphRunnableNode {
|
|
in_pipeline,
|
|
partition_kind: ann
|
|
.and_then(|a| a.partition.as_ref())
|
|
.map(|p| partition_kind_word(&p.kind).to_string()),
|
|
freshness: ann
|
|
.and_then(|a| a.freshness.as_ref())
|
|
.map(|f| f.duration.clone()),
|
|
tag: ann.and_then(|a| a.tag.clone()),
|
|
retry: ann.and_then(|a| a.retry.clone()),
|
|
data_tests: ann.map(|a| a.data_tests.clone()).unwrap_or_default(),
|
|
// Inferred (DuckDB AST) + annotation column lineage, gated to
|
|
// scripts like the badges above.
|
|
column_lineage: (usage_kind == AssetUsageKind::Script)
|
|
.then(|| column_lineage_by_path.get(&path))
|
|
.flatten()
|
|
.cloned()
|
|
.unwrap_or_default(),
|
|
materialize_target: ann.and_then(|a| a.materialize.as_ref()).map(|m| {
|
|
MaterializeTargetNode {
|
|
kind: windmill_common::assets::asset_kind_from_parser(m.target_kind),
|
|
path: m.target_path.clone(),
|
|
}
|
|
}),
|
|
materialize_strategy: ann.and_then(|a| a.materialize.as_ref()).and_then(|m| {
|
|
if m.manual {
|
|
None
|
|
} else if m.append {
|
|
Some("append".to_string())
|
|
} else if m.unique_key.is_some() {
|
|
Some("merge".to_string())
|
|
} else {
|
|
Some("replace".to_string())
|
|
}
|
|
}),
|
|
macros: (usage_kind == AssetUsageKind::Script)
|
|
.then(|| macros_by_provider.get(&path))
|
|
.flatten()
|
|
.cloned()
|
|
.unwrap_or_default(),
|
|
path,
|
|
usage_kind,
|
|
}
|
|
})
|
|
.collect();
|
|
runnables.sort_by(|a, b| a.path.cmp(&b.path));
|
|
|
|
Ok(Json(AssetGraphResponse {
|
|
assets,
|
|
runnables,
|
|
edges,
|
|
triggers,
|
|
macro_edges,
|
|
}))
|
|
}
|
|
|
|
// ------------------------------------------------------------------
|
|
// GET /w/:workspace/assets/pipelines
|
|
// ------------------------------------------------------------------
|
|
// Distinct folder names that contain at least one pipeline-member script
|
|
// (auto_kind='pipeline'). Used by the pipeline-editor folder picker and
|
|
// the "Pipeline" entry in folder views. Keyed by the partial index on
|
|
// `script (workspace_id, path) WHERE auto_kind='pipeline' ...` so this
|
|
// is effectively O(matches).
|
|
|
|
#[derive(Serialize, Debug)]
|
|
struct PipelineFolder {
|
|
folder: String,
|
|
script_count: i64,
|
|
}
|
|
|
|
async fn list_pipeline_folders(
|
|
authed: ApiAuthed,
|
|
Path(w_id): Path<String>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
) -> JsonResult<Vec<PipelineFolder>> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
let rows = sqlx::query!(
|
|
r#"
|
|
SELECT
|
|
substring(path from '^f/([^/]+)/') AS "folder!",
|
|
COUNT(*) AS "script_count!"
|
|
FROM script
|
|
WHERE workspace_id = $1
|
|
AND auto_kind = 'pipeline'
|
|
AND archived = false
|
|
AND deleted = false
|
|
AND path LIKE 'f/%'
|
|
GROUP BY substring(path from '^f/([^/]+)/')
|
|
ORDER BY substring(path from '^f/([^/]+)/')
|
|
"#,
|
|
&w_id,
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
tx.commit().await?;
|
|
|
|
Ok(Json(
|
|
rows.into_iter()
|
|
.map(|r| PipelineFolder { folder: r.folder, script_count: r.script_count })
|
|
.collect(),
|
|
))
|
|
}
|