butterflow-state 0.1.1

A self-hostable workflow engine for code transformations
Documentation
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
use std::collections::HashMap;

use async_trait::async_trait;
use reqwest::{header, Client};
use serde::{Deserialize, Serialize};
use serde_json::Value;
use uuid::Uuid;

use butterflow_models::{
    DiffOperation, Error, FieldDiff, Result, StateDiff, Task, TaskDiff, WorkflowRun,
    WorkflowRunDiff,
};

use crate::StateAdapter;

/// API request for the sync endpoint
#[derive(Serialize)]
struct SyncRequest {
    #[serde(rename = "type")]
    request_type: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    workflow_run_id: Option<Uuid>,
    #[serde(skip_serializing_if = "Option::is_none")]
    task_id: Option<Uuid>,
    fields: HashMap<String, SyncField>,
}

/// Field for the sync request
#[derive(Serialize)]
struct SyncField {
    operation: DiffOperation,
    #[serde(skip_serializing_if = "Option::is_none")]
    value: Option<Value>,
}

/// API response for sync endpoint
#[derive(Deserialize)]
struct SyncResponse {
    success: bool,
    #[serde(default)]
    error: Option<String>,
}

/// API state adapter (sends state updates to an API)
pub struct CloudStateAdapter {
    /// API endpoint
    endpoint: String,

    /// Authentication token
    auth_token: String,

    /// HTTP client
    client: Client,
}

impl CloudStateAdapter {
    /// Create a new API state adapter
    pub fn new(endpoint: String, auth_token: String) -> Self {
        Self {
            endpoint,
            auth_token,
            client: Client::new(),
        }
    }

    /// Get the base URL for the API
    fn get_base_url(&self) -> String {
        self.endpoint.clone() + "/api/butterflow/v1"
    }

    /// Get the authorization header
    fn get_auth_header(&self) -> String {
        format!("Bearer {}", self.auth_token)
    }

    /// Build the sync endpoint URL
    fn get_sync_url(&self) -> String {
        format!("{}/sync", self.get_base_url())
    }

    /// Build a workflow run URL
    fn get_workflow_run_url(&self, workflow_run_id: Uuid) -> String {
        format!("{}/runs/{}", self.get_base_url(), workflow_run_id)
    }

    /// Build a workflow runs list URL
    fn get_workflow_runs_url(&self) -> String {
        format!("{}/runs", self.get_base_url())
    }

    /// Build a task URL
    fn get_task_url(&self, task_id: Uuid) -> String {
        format!("{}/tasks/{}", self.get_base_url(), task_id)
    }

    /// Build a tasks URL for a workflow run
    fn get_tasks_for_workflow_url(&self, workflow_run_id: Uuid) -> String {
        format!("{}/runs/{}/tasks", self.get_base_url(), workflow_run_id)
    }

    /// Build a state URL for a workflow run
    fn get_state_url(&self, workflow_run_id: Uuid) -> String {
        format!("{}/runs/{}/state", self.get_base_url(), workflow_run_id)
    }

    /// Convert FieldDiff to SyncField
    fn convert_field_diff(&self, field_diff: &FieldDiff) -> SyncField {
        SyncField {
            operation: field_diff.operation.clone(),
            value: field_diff.value.clone(),
        }
    }
}

#[async_trait]
impl StateAdapter for CloudStateAdapter {
    async fn save_workflow_run(&mut self, workflow_run: &WorkflowRun) -> Result<()> {
        let workflow_run_value = serde_json::to_value(workflow_run)?;

        if let Value::Object(obj) = workflow_run_value {
            let mut fields = HashMap::new();

            for (key, value) in obj {
                fields.insert(
                    key,
                    SyncField {
                        operation: DiffOperation::Add,
                        value: Some(value),
                    },
                );
            }

            let request = SyncRequest {
                request_type: "workflow_run".to_string(),
                workflow_run_id: Some(workflow_run.id),
                task_id: None,
                fields,
            };

            let response = self
                .client
                .post(self.get_sync_url())
                .header(header::AUTHORIZATION, self.get_auth_header())
                .json(&request)
                .send()
                .await?;

            if !response.status().is_success() {
                let error_text = response
                    .text()
                    .await
                    .unwrap_or_else(|_| "Unknown error".to_string());
                return Err(Error::Other(format!(
                    "Failed to save workflow run: {}",
                    error_text
                )));
            }

            let sync_response: SyncResponse = response.json().await?;
            if !sync_response.success {
                return Err(Error::Other(format!(
                    "Failed to save workflow run: {}",
                    sync_response
                        .error
                        .unwrap_or_else(|| "Unknown error".to_string())
                )));
            }

            Ok(())
        } else {
            Err(Error::Other("Failed to serialize workflow run".to_string()))
        }
    }

    async fn apply_workflow_run_diff(&mut self, diff: &WorkflowRunDiff) -> Result<()> {
        let mut fields = HashMap::new();
        for (key, field_diff) in &diff.fields {
            fields.insert(key.clone(), self.convert_field_diff(field_diff));
        }

        let request = SyncRequest {
            request_type: "workflow_run".to_string(),
            workflow_run_id: Some(diff.workflow_run_id),
            task_id: None,
            fields,
        };

        let response = self
            .client
            .post(self.get_sync_url())
            .header(header::AUTHORIZATION, self.get_auth_header())
            .json(&request)
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!(
                "Failed to apply workflow run diff: {}",
                error_text
            )));
        }

        let sync_response: SyncResponse = response.json().await?;
        if !sync_response.success {
            return Err(Error::Other(format!(
                "Failed to apply workflow run diff: {}",
                sync_response
                    .error
                    .unwrap_or_else(|| "Unknown error".to_string())
            )));
        }

        Ok(())
    }

    async fn get_workflow_run(&self, workflow_run_id: Uuid) -> Result<WorkflowRun> {
        let response = self
            .client
            .get(self.get_workflow_run_url(workflow_run_id))
            .header(header::AUTHORIZATION, self.get_auth_header())
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!(
                "Failed to get workflow run: {}",
                error_text
            )));
        }

        let workflow_run = response.json().await?;
        Ok(workflow_run)
    }

    async fn list_workflow_runs(&self, limit: usize) -> Result<Vec<WorkflowRun>> {
        let response = self
            .client
            .get(self.get_workflow_runs_url())
            .header(header::AUTHORIZATION, self.get_auth_header())
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!(
                "Failed to list workflow runs: {}",
                error_text
            )));
        }

        let workflow_runs: Vec<WorkflowRun> = response.json().await?;

        let limited_runs = if workflow_runs.len() > limit {
            workflow_runs.into_iter().take(limit).collect()
        } else {
            workflow_runs
        };

        Ok(limited_runs)
    }

    async fn save_task(&mut self, task: &Task) -> Result<()> {
        let task_value = serde_json::to_value(task)?;

        if let Value::Object(obj) = task_value {
            let mut fields = HashMap::new();

            for (key, value) in obj {
                fields.insert(
                    key,
                    SyncField {
                        operation: DiffOperation::Add,
                        value: Some(value),
                    },
                );
            }

            let request = SyncRequest {
                request_type: "task".to_string(),
                workflow_run_id: None,
                task_id: Some(task.id),
                fields,
            };

            let response = self
                .client
                .post(self.get_sync_url())
                .header(header::AUTHORIZATION, self.get_auth_header())
                .json(&request)
                .send()
                .await?;

            if !response.status().is_success() {
                let error_text = response
                    .text()
                    .await
                    .unwrap_or_else(|_| "Unknown error".to_string());
                return Err(Error::Other(format!("Failed to save task: {}", error_text)));
            }

            let sync_response: SyncResponse = response.json().await?;
            if !sync_response.success {
                return Err(Error::Other(format!(
                    "Failed to save task: {}",
                    sync_response
                        .error
                        .unwrap_or_else(|| "Unknown error".to_string())
                )));
            }

            Ok(())
        } else {
            Err(Error::Other("Failed to serialize task".to_string()))
        }
    }

    async fn apply_task_diff(&mut self, diff: &TaskDiff) -> Result<()> {
        let mut fields = HashMap::new();
        for (key, field_diff) in &diff.fields {
            fields.insert(key.clone(), self.convert_field_diff(field_diff));
        }

        let request = SyncRequest {
            request_type: "task".to_string(),
            workflow_run_id: None,
            task_id: Some(diff.task_id),
            fields,
        };

        let response = self
            .client
            .post(self.get_sync_url())
            .header(header::AUTHORIZATION, self.get_auth_header())
            .json(&request)
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!(
                "Failed to apply task diff: {}",
                error_text
            )));
        }

        let sync_response: SyncResponse = response.json().await?;
        if !sync_response.success {
            return Err(Error::Other(format!(
                "Failed to apply task diff: {}",
                sync_response
                    .error
                    .unwrap_or_else(|| "Unknown error".to_string())
            )));
        }

        Ok(())
    }

    async fn get_task(&self, task_id: Uuid) -> Result<Task> {
        let response = self
            .client
            .get(self.get_task_url(task_id))
            .header(header::AUTHORIZATION, self.get_auth_header())
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!("Failed to get task: {}", error_text)));
        }

        let task = response.json().await?;
        Ok(task)
    }

    async fn get_tasks(&self, workflow_run_id: Uuid) -> Result<Vec<Task>> {
        let response = self
            .client
            .get(self.get_tasks_for_workflow_url(workflow_run_id))
            .header(header::AUTHORIZATION, self.get_auth_header())
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!("Failed to get tasks: {}", error_text)));
        }

        let tasks: Vec<Task> = response.json().await?;
        Ok(tasks)
    }

    async fn update_state(
        &mut self,
        workflow_run_id: Uuid,
        state: HashMap<String, Value>,
    ) -> Result<()> {
        let mut fields = HashMap::new();
        for (key, value) in &state {
            fields.insert(
                key.clone(),
                SyncField {
                    operation: DiffOperation::Update,
                    value: Some(value.clone()),
                },
            );
        }

        let request = SyncRequest {
            request_type: "state".to_string(),
            workflow_run_id: Some(workflow_run_id),
            task_id: None,
            fields,
        };

        let response = self
            .client
            .post(self.get_sync_url())
            .header(header::AUTHORIZATION, self.get_auth_header())
            .json(&request)
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!(
                "Failed to update state: {}",
                error_text
            )));
        }

        let sync_response: SyncResponse = response.json().await?;
        if !sync_response.success {
            return Err(Error::Other(format!(
                "Failed to update state: {}",
                sync_response
                    .error
                    .unwrap_or_else(|| "Unknown error".to_string())
            )));
        }

        Ok(())
    }

    async fn apply_state_diff(&mut self, diff: &StateDiff) -> Result<()> {
        let mut fields = HashMap::new();
        for (key, field_diff) in &diff.fields {
            fields.insert(key.clone(), self.convert_field_diff(field_diff));
        }

        let request = SyncRequest {
            request_type: "state".to_string(),
            workflow_run_id: Some(diff.workflow_run_id),
            task_id: None,
            fields,
        };

        let response = self
            .client
            .post(self.get_sync_url())
            .header(header::AUTHORIZATION, self.get_auth_header())
            .json(&request)
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!(
                "Failed to apply state diff: {}",
                error_text
            )));
        }

        let sync_response: SyncResponse = response.json().await?;
        if !sync_response.success {
            return Err(Error::Other(format!(
                "Failed to apply state diff: {}",
                sync_response
                    .error
                    .unwrap_or_else(|| "Unknown error".to_string())
            )));
        }

        Ok(())
    }

    async fn get_state(&self, workflow_run_id: Uuid) -> Result<HashMap<String, Value>> {
        let response = self
            .client
            .get(self.get_state_url(workflow_run_id))
            .header(header::AUTHORIZATION, self.get_auth_header())
            .send()
            .await?;

        if !response.status().is_success() {
            let error_text = response
                .text()
                .await
                .unwrap_or_else(|_| "Unknown error".to_string());
            return Err(Error::Other(format!("Failed to get state: {}", error_text)));
        }

        let state: HashMap<String, Value> = response.json().await?;
        Ok(state)
    }
}