mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 16:02:24 +00:00
5b7fa63bf1
* feat: add application-level heartbeat support for websocket triggers Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Update SQLx metadata * chore: regenerate auto-generated schema and skill files Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: handle missing heartbeat channel gracefully, fix TextInput props Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * refactor: only clone heartbeat sender when heartbeat is configured Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
146 lines
4.2 KiB
Rust
146 lines
4.2 KiB
Rust
use std::collections::HashMap;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_json::value::RawValue;
|
|
use sqlx::{types::Json as SqlxJson, FromRow};
|
|
use windmill_api_auth::ApiAuthed;
|
|
use windmill_common::{
|
|
error::{Error, Result},
|
|
jobs::JobTriggerKind,
|
|
triggers::{TriggerKind, TriggerMetadata},
|
|
worker::to_raw_value,
|
|
DB,
|
|
};
|
|
use windmill_queue::PushArgsOwned;
|
|
use windmill_trigger::trigger_helpers::{
|
|
trigger_runnable_and_wait_for_raw_result_with_error_ctx, TriggerJobArgs,
|
|
};
|
|
|
|
pub mod handler;
|
|
pub mod listener;
|
|
|
|
#[derive(Copy, Clone)]
|
|
pub struct WebsocketTrigger;
|
|
|
|
impl TriggerJobArgs for WebsocketTrigger {
|
|
type Payload = String;
|
|
const TRIGGER_KIND: TriggerKind = TriggerKind::Websocket;
|
|
fn v1_payload_fn(payload: &Self::Payload) -> HashMap<String, Box<RawValue>> {
|
|
HashMap::from([("msg".to_string(), to_raw_value(&payload))])
|
|
}
|
|
}
|
|
|
|
fn default_filter_logic() -> String {
|
|
"and".to_string()
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct WebsocketHeartbeat {
|
|
pub interval_secs: u64,
|
|
pub message: String,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub state_field: Option<String>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, FromRow, Serialize, Deserialize)]
|
|
pub struct WebsocketConfig {
|
|
pub url: String,
|
|
#[serde(default)]
|
|
pub filters: Vec<SqlxJson<Box<RawValue>>>,
|
|
#[serde(default = "default_filter_logic")]
|
|
pub filter_logic: String,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub initial_messages: Option<Vec<SqlxJson<Box<RawValue>>>>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub url_runnable_args: Option<SqlxJson<Box<RawValue>>>,
|
|
#[serde(default)]
|
|
pub can_return_message: bool,
|
|
#[serde(default)]
|
|
pub can_return_error_result: bool,
|
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
pub heartbeat: Option<SqlxJson<WebsocketHeartbeat>>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct WebsocketConfigRequest {
|
|
url: String,
|
|
filters: Vec<serde_json::Value>,
|
|
#[serde(default = "default_filter_logic")]
|
|
filter_logic: String,
|
|
initial_messages: Option<Vec<serde_json::Value>>,
|
|
url_runnable_args: Option<serde_json::Value>,
|
|
can_return_message: bool,
|
|
can_return_error_result: bool,
|
|
pub heartbeat: Option<WebsocketHeartbeat>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct TestWebsocketConfig {
|
|
url: String,
|
|
url_runnable_args: Option<serde_json::Value>,
|
|
}
|
|
|
|
pub fn value_to_args_hashmap(
|
|
args: Option<&Box<RawValue>>,
|
|
) -> Result<HashMap<String, Box<RawValue>>> {
|
|
let args = if let Some(args) = args {
|
|
let args_map: Option<HashMap<String, serde_json::Value>> = serde_json::from_str(args.get())
|
|
.map_err(|e| Error::BadRequest(format!("invalid json: {}", e)))?;
|
|
|
|
args_map
|
|
.unwrap_or_else(HashMap::new)
|
|
.into_iter()
|
|
.map(|(k, v)| {
|
|
let raw_value = serde_json::value::to_raw_value(&v).map_err(|e| {
|
|
Error::BadRequest(format!("failed to convert to raw value: {}", e))
|
|
})?;
|
|
Ok((k, raw_value))
|
|
})
|
|
.collect::<Result<HashMap<String, Box<RawValue>>>>()
|
|
} else {
|
|
Ok(HashMap::new())
|
|
}?;
|
|
Ok(args)
|
|
}
|
|
|
|
pub async fn get_url_from_runnable_value(
|
|
path: &str,
|
|
is_flow: bool,
|
|
db: &DB,
|
|
authed: ApiAuthed,
|
|
args: Option<&Box<RawValue>>,
|
|
workspace_id: &str,
|
|
) -> Result<String> {
|
|
tracing::info!(
|
|
"Running {} {} to get WebSocket URL",
|
|
if is_flow { "flow" } else { "script" },
|
|
path
|
|
);
|
|
|
|
let args = value_to_args_hashmap(args)?;
|
|
|
|
let result = trigger_runnable_and_wait_for_raw_result_with_error_ctx(
|
|
db,
|
|
None,
|
|
authed,
|
|
workspace_id,
|
|
path,
|
|
is_flow,
|
|
PushArgsOwned { args, extra: None },
|
|
None,
|
|
None,
|
|
None,
|
|
"".to_string(), // doesn't matter as no retry/error handler
|
|
TriggerMetadata::new(Some(path.to_owned()), JobTriggerKind::Websocket),
|
|
)
|
|
.await?;
|
|
|
|
serde_json::from_str::<String>(result.get()).map_err(|_| {
|
|
Error::BadConfig(format!(
|
|
"{} {} did not return a string",
|
|
if is_flow { "Flow" } else { "Script" },
|
|
path,
|
|
))
|
|
})
|
|
}
|