-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
258 lines (231 loc) · 10.3 KB
/
Copy pathlib.rs
File metadata and controls
258 lines (231 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
//! Wire types for Animus notifier plugins.
//!
//! Notifiers are the outbound counterpart to triggers: a trigger plugin
//! converts an external event into a daemon event; a notifier plugin
//! takes a daemon event record and forwards it to an external system
//! (HTTP webhook, Slack, email, PagerDuty, ...).
//!
//! The kernel publishes daemon events; this crate defines the wire shape
//! the daemon uses to hand each event to every installed notifier plugin.
//! Notifier plugins are advisory: the daemon does not block on them, and
//! the daemon refuses to start without a notifier plugin only if an
//! operator explicitly wires that policy. The default daemon policy
//! treats `notifier` as an optional role.
//!
//! Plugin authors typically depend on this crate alongside
//! [`animus-plugin-runtime`], register the [`METHOD_NOTIFIER_NOTIFY`]
//! handler (and optionally [`METHOD_NOTIFIER_FLUSH`]) on a `Plugin`
//! builder, and run it.
#![warn(missing_docs)]
use animus_plugin_protocol::{error_codes, RpcError};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use serde_json::Value;
// =====================================================================
// Plugin-kind wire literal
// =====================================================================
/// Plugin-kind wire literal for notifier plugins.
///
/// Plugin manifests (`plugin.toml`) and discovery filters compare against
/// this exact string.
pub const PLUGIN_KIND_NOTIFIER: &str = "notifier";
// =====================================================================
// Method-name constants
// =====================================================================
/// `notifier/notify` — hand one [`NotifierNotifyParams`] payload to the
/// plugin. The plugin SHOULD enqueue and best-effort flush; backends
/// that need to retry MUST persist their outbox internally.
pub const METHOD_NOTIFIER_NOTIFY: &str = "notifier/notify";
/// `notifier/flush` — request that the plugin drain any pending
/// deliveries from its internal outbox. Optional: backends without
/// background retry MAY return [`error_codes::METHOD_NOT_SUPPORTED`].
pub const METHOD_NOTIFIER_FLUSH: &str = "notifier/flush";
/// `notifier/schema` — capability declaration; returns
/// [`NotifierSchema`].
pub const METHOD_NOTIFIER_SCHEMA: &str = "notifier/schema";
// =====================================================================
// Request / response shapes
// =====================================================================
/// Wire shape of one daemon event record forwarded to notifiers.
///
/// Mirrors `protocol::DaemonEventRecord` from `animus-cli` so the daemon
/// can hand its native event record over the wire without translation.
/// Kept in this crate (rather than imported from the main protocol
/// crate) so notifier plugin authors only need to depend on this crate
/// + `animus-plugin-runtime`.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
pub struct DaemonEventRecord {
/// Schema URI for the event payload (e.g. `"animus.daemon-event.v1"`).
pub schema: String,
/// Globally-unique event id.
pub id: String,
/// Monotonic sequence number assigned by the daemon for this run.
#[serde(default)]
pub seq: u64,
/// RFC3339 timestamp the daemon stamped at emission.
pub timestamp: String,
/// Event kind (e.g. `"workflow_completed"`, `"task-state-change"`).
pub event_type: String,
/// Optional project root path this event is about.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub project_root: Option<String>,
/// Free-form event payload.
pub data: Value,
}
/// Parameters for [`METHOD_NOTIFIER_NOTIFY`].
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
pub struct NotifierNotifyParams {
/// One daemon event record to forward.
pub event: DaemonEventRecord,
}
/// Result for [`METHOD_NOTIFIER_NOTIFY`].
///
/// `accepted` reports whether the plugin took ownership of the event for
/// at-least-one configured connector. `delivered` reports the number of
/// successful synchronous deliveries (useful for telemetry; backends that
/// only enqueue MUST set this to `0`). `lifecycle_events` carries
/// best-effort lifecycle reporting (enqueued / sent / failed /
/// dead-lettered) that the daemon can fan out into `events.jsonl` for
/// operator visibility.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default, JsonSchema)]
pub struct NotifierNotifyResult {
/// `true` iff at least one connector accepted the event for delivery.
pub accepted: bool,
/// Number of deliveries the plugin completed synchronously.
#[serde(default)]
pub delivered: u32,
/// Optional lifecycle records (delivery-enqueued / sent / failed /
/// dead-lettered) the daemon can fan out into `events.jsonl`.
#[serde(default)]
pub lifecycle_events: Vec<NotifierLifecycleEvent>,
}
/// Lifecycle record emitted by a notifier plugin so the daemon can mirror
/// it into operator-visible logs.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
pub struct NotifierLifecycleEvent {
/// Event-type label, e.g. `"notification-delivery-enqueued"`.
pub event_type: String,
/// Project root the underlying event belonged to, if known.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub project_root: Option<String>,
/// Free-form payload mirrored verbatim into `DaemonEventRecord.data`.
pub data: Value,
}
/// Parameters for [`METHOD_NOTIFIER_FLUSH`].
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default, JsonSchema)]
pub struct NotifierFlushParams {
/// Optional project-root scoping. `None` means flush every project
/// the plugin tracks.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub project_root: Option<String>,
}
/// Result for [`METHOD_NOTIFIER_FLUSH`].
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default, JsonSchema)]
pub struct NotifierFlushResult {
/// Lifecycle records produced by the flush. Same shape as
/// [`NotifierNotifyResult::lifecycle_events`].
#[serde(default)]
pub lifecycle_events: Vec<NotifierLifecycleEvent>,
}
/// Capability declaration returned by [`METHOD_NOTIFIER_SCHEMA`].
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default, JsonSchema)]
pub struct NotifierSchema {
/// Free-form connector kinds this plugin can route to (e.g.
/// `["webhook", "slack_webhook"]`). Workflows may use this to
/// surface which transports are available.
pub connector_kinds: Vec<String>,
/// Whether the plugin maintains its own outbox + background retry
/// loop. When `true`, the daemon SHOULD call [`METHOD_NOTIFIER_FLUSH`]
/// on its tick boundary; when `false`, the daemon should skip flush.
pub supports_flush: bool,
}
// =====================================================================
// Errors
// =====================================================================
/// Errors a notifier backend may return.
#[derive(Debug, thiserror::Error)]
pub enum NotifierBackendError {
/// Backend recognized the call but does not implement it (e.g.
/// `notifier/flush` on a fire-and-forget plugin).
#[error("not supported: {0}")]
NotSupported(String),
/// Request was malformed at the domain level.
#[error("invalid request: {0}")]
InvalidRequest(String),
/// Backend (or its upstream) is temporarily unavailable.
#[error("backend unavailable: {0}")]
Unavailable(String),
/// Anything else.
#[error(transparent)]
Other(#[from] anyhow::Error),
}
impl From<NotifierBackendError> for RpcError {
fn from(error: NotifierBackendError) -> Self {
match error {
NotifierBackendError::NotSupported(message) => RpcError {
code: error_codes::METHOD_NOT_SUPPORTED,
message,
data: Some(serde_json::json!({"category": "not_supported"})),
},
NotifierBackendError::InvalidRequest(message) => RpcError {
code: error_codes::INVALID_PARAMS,
message,
data: Some(serde_json::json!({"category": "invalid_request"})),
},
NotifierBackendError::Unavailable(message) => RpcError {
code: error_codes::INTERNAL_ERROR,
message: format!("backend unavailable: {message}"),
data: Some(serde_json::json!({"category": "unavailable"})),
},
NotifierBackendError::Other(error) => RpcError {
code: error_codes::INTERNAL_ERROR,
message: error.to_string(),
data: Some(serde_json::json!({"category": "other"})),
},
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn notify_params_round_trip() {
let params = NotifierNotifyParams {
event: DaemonEventRecord {
schema: "animus.daemon-event.v1".into(),
id: "evt-1".into(),
seq: 7,
timestamp: "2026-05-31T00:00:00Z".into(),
event_type: "workflow_completed".into(),
project_root: Some("/repo".into()),
data: serde_json::json!({"workflow_id": "wf-1"}),
},
};
let v = serde_json::to_value(¶ms).unwrap();
let back: NotifierNotifyParams = serde_json::from_value(v).unwrap();
assert_eq!(back, params);
}
#[test]
fn notify_result_defaults_are_empty() {
let v = serde_json::to_value(NotifierNotifyResult::default()).unwrap();
let back: NotifierNotifyResult = serde_json::from_value(v).unwrap();
assert!(!back.accepted);
assert_eq!(back.delivered, 0);
assert!(back.lifecycle_events.is_empty());
}
#[test]
fn schema_round_trip() {
let s = NotifierSchema {
connector_kinds: vec!["webhook".into(), "slack_webhook".into()],
supports_flush: true,
};
let v = serde_json::to_value(&s).unwrap();
let back: NotifierSchema = serde_json::from_value(v).unwrap();
assert_eq!(back, s);
}
#[test]
fn backend_error_not_supported_maps_to_method_not_supported() {
let rpc: RpcError = NotifierBackendError::NotSupported("notifier/flush".into()).into();
assert_eq!(rpc.code, error_codes::METHOD_NOT_SUPPORTED);
}
}