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
//! REST API endpoints for Vault operations
//!
//! Provides HTTP REST endpoints for vault management:
//! - Create vaults
//! - Unvault funds
//! - Withdraw from vaults
//! - Get vault 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, error};
use uuid::Uuid;

/// Handle vault REST API requests
///
/// Routes:
/// - POST /api/v1/vaults - Create vault
/// - POST /api/v1/vaults/{id}/unvault - Unvault funds
/// - POST /api/v1/vaults/{id}/withdraw - Withdraw from vault
/// - GET /api/v1/vaults/{id} - Get vault state
#[cfg(feature = "ctv")]
pub async fn handle_vault_request(
    state_machine: Arc<PaymentStateMachine>,
    method: &Method,
    path: &str,
    body: Option<Value>,
    request_id: String,
) -> Response<Full<Bytes>> {
    debug!(
        "Vault REST request: {} {} (request_id: {})",
        method,
        path,
        &request_id[..8]
    );

    // Parse path: /api/v1/vaults/{id}/...
    let path_parts: Vec<&str> = path.split('/').filter(|s| !s.is_empty()).collect();

    match (method, path_parts.as_slice()) {
        // POST /api/v1/vaults - Create vault
        (&Method::POST, ["api", "v1", "vaults"]) => {
            create_vault(state_machine, body, request_id).await
        }
        // POST /api/v1/vaults/{id}/unvault - Unvault funds
        (&Method::POST, ["api", "v1", "vaults", vault_id, "unvault"]) => {
            unvault_vault(state_machine, body, vault_id, request_id).await
        }
        // POST /api/v1/vaults/{id}/withdraw - Withdraw from vault
        (&Method::POST, ["api", "v1", "vaults", vault_id, "withdraw"]) => {
            withdraw_from_vault(state_machine, body, vault_id, request_id).await
        }
        // GET /api/v1/vaults/{id} - Get vault state
        (&Method::GET, ["api", "v1", "vaults", vault_id]) => {
            get_vault_state(state_machine, vault_id, request_id).await
        }
        _ => error_response(
            StatusCode::NOT_FOUND,
            "NOT_FOUND",
            &format!("Vault endpoint not found: {} {}", method, path),
            request_id,
        ),
    }
}

/// Create a new vault
async fn create_vault(
    state_machine: Arc<PaymentStateMachine>,
    body: Option<Value>,
    request_id: String,
) -> Response<Full<Bytes>> {
    #[cfg(not(feature = "ctv"))]
    {
        return error_response(
            StatusCode::NOT_IMPLEMENTED,
            "NOT_IMPLEMENTED",
            "Vaults require CTV feature",
            request_id,
        );
    }

    #[cfg(feature = "ctv")]
    {
        let body = match body {
            Some(b) => b,
            None => {
                return error_response(
                    StatusCode::BAD_REQUEST,
                    "BAD_REQUEST",
                    "Request body required",
                    request_id,
                );
            }
        };
        let vault_engine = match state_machine.vault_engine() {
            Some(engine) => engine,
            None => {
                return error_response(
                    StatusCode::SERVICE_UNAVAILABLE,
                    "SERVICE_UNAVAILABLE",
                    "Vault engine not available",
                    request_id,
                );
            }
        };

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

        let deposit_amount = match body["deposit_amount"].as_u64() {
            Some(amount) => amount,
            None => {
                return error_response(
                    StatusCode::BAD_REQUEST,
                    "BAD_REQUEST",
                    "deposit_amount required",
                    request_id,
                );
            }
        };

        let withdrawal_script_hex = match body["withdrawal_script"].as_str() {
            Some(script) => script,
            None => {
                return error_response(
                    StatusCode::BAD_REQUEST,
                    "BAD_REQUEST",
                    "withdrawal_script required",
                    request_id,
                );
            }
        };
        let withdrawal_script = match hex::decode(withdrawal_script_hex) {
            Ok(script) => script,
            Err(e) => {
                return error_response(
                    StatusCode::BAD_REQUEST,
                    "BAD_REQUEST",
                    &rest_error_invalid("withdrawal_script", e),
                    request_id,
                );
            }
        };

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

        match vault_engine.create_vault(vault_id, deposit_amount, withdrawal_script, config) {
            Ok(vault_state) => {
                let response_data = json!({
                    "vault_id": vault_state.vault_id,
                    "vault_state": serde_json::to_value(&vault_state)
                        .unwrap_or_else(|_| json!(null)),
                });
                success_response(response_data, request_id)
            }
            Err(e) => {
                error!("Failed to create vault: {}", e);
                error_response(
                    StatusCode::INTERNAL_SERVER_ERROR,
                    "VAULT_CREATION_FAILED",
                    &format!("Failed to create vault: {}", e),
                    request_id,
                )
            }
        }
    }
}

/// Unvault funds (first step of withdrawal)
async fn unvault_vault(
    state_machine: Arc<PaymentStateMachine>,
    body: Option<Value>,
    vault_id: &str,
    request_id: String,
) -> Response<Full<Bytes>> {
    #[cfg(not(feature = "ctv"))]
    {
        return error_response(
            StatusCode::NOT_IMPLEMENTED,
            "NOT_IMPLEMENTED",
            "Vaults require CTV feature",
            request_id,
        );
    }

    #[cfg(feature = "ctv")]
    {
        use serde_json::json;

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

        // Get vault state from storage
        let vault_state = match vault_engine.get_vault(vault_id) {
            Ok(Some(state)) => state,
            Ok(None) => {
                return error_response(
                    StatusCode::NOT_FOUND,
                    "NOT_FOUND",
                    &format!("Vault {} not found", vault_id),
                    request_id,
                );
            }
            Err(e) => {
                return error_response(
                    StatusCode::INTERNAL_SERVER_ERROR,
                    "INTERNAL_ERROR",
                    &rest_error_failed("get vault state", e),
                    request_id,
                );
            }
        };

        // Parse deposit amount from body
        let amount = body
            .and_then(|v| v.get("amount").and_then(|a| a.as_u64()))
            .unwrap_or(0);

        if amount == 0 {
            return error_response(
                StatusCode::BAD_REQUEST,
                "BAD_REQUEST",
                "Deposit amount must be greater than 0",
                request_id,
            );
        }

        return success_response(
            json!({
                "vault_id": vault_id,
                "amount": amount,
                "current_balance": vault_state.deposit_amount,
                "message": "Deposit request received (full implementation pending)"
            }),
            request_id,
        );
    }
}

/// Withdraw from vault
async fn withdraw_from_vault(
    state_machine: Arc<PaymentStateMachine>,
    body: Option<Value>,
    vault_id: &str,
    request_id: String,
) -> Response<Full<Bytes>> {
    #[cfg(not(feature = "ctv"))]
    {
        return error_response(
            StatusCode::NOT_IMPLEMENTED,
            "NOT_IMPLEMENTED",
            "Vaults require CTV feature",
            request_id,
        );
    }

    #[cfg(feature = "ctv")]
    {
        use serde_json::json;

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

        // Get vault state from storage
        let vault_state = match vault_engine.get_vault(vault_id) {
            Ok(Some(state)) => state,
            Ok(None) => {
                return error_response(
                    StatusCode::NOT_FOUND,
                    "NOT_FOUND",
                    &format!("Vault {} not found", vault_id),
                    request_id,
                );
            }
            Err(e) => {
                return error_response(
                    StatusCode::INTERNAL_SERVER_ERROR,
                    "INTERNAL_ERROR",
                    &rest_error_failed("get vault state", e),
                    request_id,
                );
            }
        };

        // Parse withdrawal amount from body
        let amount = body
            .and_then(|v| v.get("amount").and_then(|a| a.as_u64()))
            .unwrap_or(0);

        if amount == 0 {
            return error_response(
                StatusCode::BAD_REQUEST,
                "BAD_REQUEST",
                "Withdrawal amount must be greater than 0",
                request_id,
            );
        }

        let available = vault_state.deposit_amount;
        if amount > available {
            return error_response(
                StatusCode::BAD_REQUEST,
                "BAD_REQUEST",
                &format!("Insufficient balance: {} > {}", amount, available),
                request_id,
            );
        }

        return success_response(
            json!({
                "vault_id": vault_id,
                "amount": amount,
                "remaining_balance": available.saturating_sub(amount),
                "message": "Withdrawal request received (full implementation pending)"
            }),
            request_id,
        );
    }
}

/// Get vault state
async fn get_vault_state(
    state_machine: Arc<PaymentStateMachine>,
    vault_id: &str,
    request_id: String,
) -> Response<Full<Bytes>> {
    #[cfg(not(feature = "ctv"))]
    {
        return error_response(
            StatusCode::NOT_IMPLEMENTED,
            "NOT_IMPLEMENTED",
            "Vaults require CTV feature",
            request_id,
        );
    }

    #[cfg(feature = "ctv")]
    {
        match state_machine.vault_engine() {
            Some(vault_engine) => match vault_engine.get_vault(vault_id) {
                Ok(Some(vault_state)) => {
                    let response_data = json!({
                        "vault_id": vault_state.vault_id,
                        "vault_state": serde_json::to_value(&vault_state)
                            .unwrap_or_else(|_| json!(null)),
                    });
                    success_response(response_data, request_id)
                }
                Ok(None) => error_response(
                    StatusCode::NOT_FOUND,
                    "NOT_FOUND",
                    &format!("Vault {} not found", vault_id),
                    request_id,
                ),
                Err(e) => error_response(
                    StatusCode::INTERNAL_SERVER_ERROR,
                    "VAULT_LOAD_FAILED",
                    &rest_error_failed("load vault", e),
                    request_id,
                ),
            },
            None => error_response(
                StatusCode::SERVICE_UNAVAILABLE,
                "SERVICE_UNAVAILABLE",
                "Vault engine not available",
                request_id,
            ),
        }
    }
}