blvm-node 0.1.2

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
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
//! REST API endpoints for Payment Pool operations
//!
//! Provides HTTP REST endpoints for pool management:
//! - Create pools
//! - Join pools
//! - Distribute from pools
//! - Get pool state

use crate::payment::state_machine::PaymentStateMachine;
use crate::rpc::rest::types::{
    error_response, rest_error_failed, rest_error_invalid, success_response,
};
use bytes::Bytes;
use http_body_util::Full;
use hyper::{Method, Response, StatusCode};
use serde_json::{json, Value};
use std::sync::Arc;
use tracing::debug;

/// Handle pool REST API requests
///
/// Routes:
/// - POST /api/v1/pools - Create pool
/// - POST /api/v1/pools/{id}/join - Join pool
/// - POST /api/v1/pools/{id}/distribute - Distribute from pool
/// - GET /api/v1/pools/{id} - Get pool state
#[cfg(feature = "ctv")]
pub async fn handle_pool_request(
    state_machine: Arc<PaymentStateMachine>,
    method: &Method,
    path: &str,
    body: Option<Value>,
    request_id: String,
) -> Response<Full<Bytes>> {
    debug!(
        "Pool REST request: {} {} (request_id: {})",
        method,
        path,
        &request_id[..8]
    );

    match (method, path) {
        (&Method::POST, "/api/v1/pools") => create_pool(state_machine, body, request_id).await,
        (method, path)
            if method == &Method::POST
                && path.starts_with("/api/v1/pools/")
                && path.ends_with("/join") =>
        {
            let pool_id = extract_id(path, "/api/v1/pools/", "/join");
            join_pool(state_machine, body, &pool_id, request_id).await
        }
        (method, path)
            if method == &Method::POST
                && path.starts_with("/api/v1/pools/")
                && path.ends_with("/distribute") =>
        {
            let pool_id = extract_id(path, "/api/v1/pools/", "/distribute");
            distribute_pool(state_machine, body, &pool_id, request_id).await
        }
        (&Method::GET, path) if path.starts_with("/api/v1/pools/") => {
            let pool_id = extract_id(path, "/api/v1/pools/", "");
            get_pool_state(state_machine, &pool_id, request_id).await
        }
        _ => error_response(
            StatusCode::NOT_FOUND,
            "NOT_FOUND",
            &format!("Pool endpoint not found: {} {}", method, path),
            request_id,
        ),
    }
}

#[cfg(feature = "ctv")]
fn extract_id(path: &str, prefix: &str, suffix: &str) -> String {
    path.strip_prefix(prefix)
        .and_then(|s| s.strip_suffix(suffix))
        .unwrap_or("")
        .to_string()
}

#[cfg(feature = "ctv")]
async fn create_pool(
    state_machine: Arc<PaymentStateMachine>,
    body: Option<Value>,
    request_id: String,
) -> Response<Full<Bytes>> {
    let body = match body {
        Some(b) => b,
        None => {
            return error_response(
                StatusCode::BAD_REQUEST,
                "BAD_REQUEST",
                "Request body required",
                request_id,
            );
        }
    };

    match state_machine.pool_engine() {
        Some(pool_engine) => {
            let pool_id = match body["pool_id"].as_str() {
                Some(id) => id.to_string(),
                None => {
                    return error_response(
                        StatusCode::BAD_REQUEST,
                        "BAD_REQUEST",
                        "pool_id required",
                        request_id,
                    );
                }
            };

            let initial_participants_json = match body["initial_participants"].as_array() {
                Some(arr) => arr,
                None => {
                    return error_response(
                        StatusCode::BAD_REQUEST,
                        "BAD_REQUEST",
                        "initial_participants array required",
                        request_id,
                    );
                }
            };

            let mut initial_participants = Vec::new();
            for p in initial_participants_json {
                let participant_id = match p["participant_id"].as_str() {
                    Some(id) => id.to_string(),
                    None => {
                        return error_response(
                            StatusCode::BAD_REQUEST,
                            "BAD_REQUEST",
                            "participant_id required",
                            request_id,
                        );
                    }
                };
                let contribution = match p["contribution"].as_u64() {
                    Some(c) => c,
                    None => {
                        return error_response(
                            StatusCode::BAD_REQUEST,
                            "BAD_REQUEST",
                            "contribution required",
                            request_id,
                        );
                    }
                };
                let script_hex = match p["script_pubkey"].as_str() {
                    Some(s) => s,
                    None => {
                        return error_response(
                            StatusCode::BAD_REQUEST,
                            "BAD_REQUEST",
                            "script_pubkey required",
                            request_id,
                        );
                    }
                };
                let script = match hex::decode(script_hex) {
                    Ok(s) => s,
                    Err(e) => {
                        return error_response(
                            StatusCode::BAD_REQUEST,
                            "BAD_REQUEST",
                            &format!("Invalid script_pubkey: {}", e),
                            request_id,
                        );
                    }
                };
                initial_participants.push((participant_id, contribution, script));
            }

            let config = if body["config"].is_object() {
                serde_json::from_value(body["config"].clone())
                    .unwrap_or_else(|_| crate::payment::pool::PoolConfig::default())
            } else {
                crate::payment::pool::PoolConfig::default()
            };

            match pool_engine.create_pool(&pool_id, initial_participants, config) {
                Ok(pool_state) => {
                    let response_data = json!({
                        "pool_id": pool_state.pool_id,
                        "pool_state": serde_json::to_value(&pool_state)
                            .unwrap_or_else(|_| json!(null)),
                    });
                    success_response(response_data, request_id)
                }
                Err(e) => error_response(
                    StatusCode::INTERNAL_SERVER_ERROR,
                    "POOL_CREATION_FAILED",
                    &rest_error_failed("create pool", e),
                    request_id,
                ),
            }
        }
        None => error_response(
            StatusCode::SERVICE_UNAVAILABLE,
            "SERVICE_UNAVAILABLE",
            "Pool engine not available",
            request_id,
        ),
    }
}

#[cfg(feature = "ctv")]
async fn join_pool(
    state_machine: Arc<PaymentStateMachine>,
    body: Option<Value>,
    pool_id: &str,
    request_id: String,
) -> Response<Full<Bytes>> {
    use serde_json::json;

    let pool_engine = match state_machine.pool_engine() {
        Some(engine) => engine,
        None => {
            return error_response(
                StatusCode::INTERNAL_SERVER_ERROR,
                "INTERNAL_ERROR",
                "Pool engine not available",
                request_id,
            );
        }
    };

    // Get current pool state
    let pool_state = match pool_engine.get_pool(pool_id) {
        Ok(Some(state)) => state,
        Ok(None) => {
            return error_response(
                StatusCode::NOT_FOUND,
                "NOT_FOUND",
                &format!("Pool {} not found", pool_id),
                request_id,
            );
        }
        Err(e) => {
            return error_response(
                StatusCode::INTERNAL_SERVER_ERROR,
                "INTERNAL_ERROR",
                &rest_error_failed("get pool state", e),
                request_id,
            );
        }
    };

    // Parse join request from body
    let body = match body.as_ref() {
        Some(b) => b,
        None => {
            return error_response(
                StatusCode::BAD_REQUEST,
                "BAD_REQUEST",
                "Request body required",
                request_id,
            );
        }
    };
    let participant_id = body
        .get("participant_id")
        .and_then(|id| id.as_str())
        .unwrap_or("unknown")
        .to_string();

    let contribution = body
        .get("contribution")
        .and_then(|c| c.as_u64())
        .unwrap_or(0);

    // Validate contribution meets minimum
    if contribution < pool_state.config.min_contribution {
        return error_response(
            StatusCode::BAD_REQUEST,
            "BAD_REQUEST",
            &format!(
                "Contribution {} below minimum {}",
                contribution, pool_state.config.min_contribution
            ),
            request_id,
        );
    }

    success_response(
        json!({
            "pool_id": pool_id,
            "participant_id": participant_id,
            "contribution": contribution,
            "message": "Join pool request received (full implementation pending)"
        }),
        request_id,
    )
}

#[cfg(feature = "ctv")]
async fn distribute_pool(
    state_machine: Arc<PaymentStateMachine>,
    body: Option<Value>,
    pool_id: &str,
    request_id: String,
) -> Response<Full<Bytes>> {
    use serde_json::json;

    let pool_engine = match state_machine.pool_engine() {
        Some(engine) => engine,
        None => {
            return error_response(
                StatusCode::INTERNAL_SERVER_ERROR,
                "INTERNAL_ERROR",
                "Pool engine not available",
                request_id,
            );
        }
    };

    // Get current pool state
    let pool_state = match pool_engine.get_pool(pool_id) {
        Ok(Some(state)) => state,
        Ok(None) => {
            return error_response(
                StatusCode::NOT_FOUND,
                "NOT_FOUND",
                &format!("Pool {} not found", pool_id),
                request_id,
            );
        }
        Err(e) => {
            return error_response(
                StatusCode::INTERNAL_SERVER_ERROR,
                "INTERNAL_ERROR",
                &rest_error_failed("get pool state", e),
                request_id,
            );
        }
    };

    // Parse distribution from body
    let distribution = body
        .and_then(|v| {
            v.get("distribution").and_then(|d| d.as_array()).map(|arr| {
                arr.iter()
                    .filter_map(|item| {
                        if let (Some(id), Some(amount)) = (
                            item.get("participant_id").and_then(|i| i.as_str()),
                            item.get("amount").and_then(|a| a.as_u64()),
                        ) {
                            Some((id.to_string(), amount))
                        } else {
                            None
                        }
                    })
                    .collect::<Vec<_>>()
            })
        })
        .unwrap_or_default();

    if distribution.is_empty() {
        return error_response(
            StatusCode::BAD_REQUEST,
            "BAD_REQUEST",
            "Distribution list is empty",
            request_id,
        );
    }

    success_response(
        json!({
            "pool_id": pool_id,
            "distribution": distribution,
            "total_balance": pool_state.total_balance,
            "message": "Distribute pool request received (full implementation pending)"
        }),
        request_id,
    )
}

#[cfg(feature = "ctv")]
async fn get_pool_state(
    state_machine: Arc<PaymentStateMachine>,
    pool_id: &str,
    request_id: String,
) -> Response<Full<Bytes>> {
    #[cfg(not(feature = "ctv"))]
    {
        return error_response(
            StatusCode::NOT_IMPLEMENTED,
            "NOT_IMPLEMENTED",
            "Payment pools require CTV feature",
            request_id,
        );
    }

    #[cfg(feature = "ctv")]
    {
        match state_machine.pool_engine() {
            Some(pool_engine) => match pool_engine.get_pool(pool_id) {
                Ok(Some(pool_state)) => {
                    let response_data = json!({
                        "pool_id": pool_state.pool_id,
                        "pool_state": serde_json::to_value(&pool_state)
                            .unwrap_or_else(|_| json!(null)),
                    });
                    success_response(response_data, request_id)
                }
                Ok(None) => error_response(
                    StatusCode::NOT_FOUND,
                    "NOT_FOUND",
                    &format!("Pool {} not found", pool_id),
                    request_id,
                ),
                Err(e) => error_response(
                    StatusCode::INTERNAL_SERVER_ERROR,
                    "POOL_LOAD_FAILED",
                    &rest_error_failed("load pool", e),
                    request_id,
                ),
            },
            None => error_response(
                StatusCode::SERVICE_UNAVAILABLE,
                "SERVICE_UNAVAILABLE",
                "Pool engine not available",
                request_id,
            ),
        }
    }
}